topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Wednesday November 12, 2025, 4:03 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 40 41 42 43 44 [45] 46 47 48 49 50 ... 63next
1101
Thanks, also, to Perry  :up:
- but the script is way over my head. I really mean those words below my picture, "IT-anaphabetic".

Ah, sorry Curt. Nod5's script looks much more functional anyway  :D

I just found Link Shell Extension too: don't know if it's any use?
1102
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 27, 2008, 07:46 AM »
Makes sense when you realize: obvious really  :-[

Is there a reason to put some IE hacks in the page? I know that I have one on mine that's put there definitely in preference to the external CSS file. Now you've made me wonder why...
1103
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 26, 2008, 08:29 PM »
I removed it and guess what .... fixed in IE 6 and 7 .... WTF!
-Carol Haynes (June 26, 2008, 12:42 PM)

I agree: WayTooFantastic!!  :)

Problem solved, not only this time but in the future too  :Thmbsup:
1104
Everybody is here. I will place the order tonight and then report back to you all what your cost will be. You can then donate the appropriate amount of credits and I will have mouser transfer them to my PayPal account.

Couldn't we just pop them into your PayPal account directly?
1105
Thanks, Perry - but speaking of 'scripts', SnapFolders wouldn't work in my setup - some conflict of a kind, I guess, though it suggest that I get the latest script-something from MS. The problem must be something else,  for I am confident my script version is newer than the one Matts was using back in 2005.
 (see attachment in previous post)

A script that I use here at work for adding links to my favourites I've posted below. It handles multiple selected files, you'd want to edit the targetFolder for a place on your own computer:
Code: Visual Basic [Select]
  1. ' VB Script Document
  2. option explicit
  3.  
  4. Dim iCount, sSourceFilePath, ws, fso, sObjectName, sShortCutPath
  5.  
  6. Set ws = CreateObject("WScript.Shell")
  7. Set fso = CreateObject("Scripting.FileSystemObject")
  8.  
  9. Dim sTargetFolder
  10. ' Change the following to point to where you want the link to appear
  11. sTargetFolder = ws.SpecialFolders("Favorites") & "\"
  12.  
  13.   For iCount = 0 To (WScript.Arguments.Count -1)
  14.     sSourceFilePath = WScript.Arguments.Item(iCount)
  15.     sObjectName = mid(sSourceFilePath,instrrev(sSourceFilePath,"\")+1)
  16.  
  17.     sShortCutPath = sTargetFolder & sObjectName & ".lnk"
  18.  
  19.     ' Create the shortcut
  20.    With ws.CreateShortcut(sShortCutPath)
  21.       .TargetPath = sSourceFilePath
  22.       .IconLocation = sSourceFilePath
  23.       .Save
  24.     End With
  25.   Next

If you save it somewhere (C:\Scripts maybe?) then you can add a shortcut link to the script from your Send To directory (eg: C:\Documents and Settings\pmowbray\SendTo) then it'll be always available from the RMB Context Menu in Explorer.

You can easily add your own locations into the script where indicated. Multiple locations could be handled by multiple scripts (as long as the entries in your Send To menu didn't get too many).

Don't know if it's any help, but it was a script that I've had lying around for a while... If you're interested we could add other logic that could be used in determining a subFolder to put the link (MP3's for example?)
1106
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 25, 2008, 10:53 PM »
No, I was using FF3! Sorry it wasn't a compete answer  :-[ I guess that I hoped that finding the culprit was halfway to finding the problem  :huh:

Interesting - is this in IE 6? I can't see any difference (except that it screws up the spacing with the image below) in IE 7. In FF2 it does change the alignment to line up with the sidebar but it also screws up the image spacing.
-Carol Haynes (June 25, 2008, 10:31 AM)

No, it was in FF3  :-\

I have a standard single style for images in the main part of the page which doesn't add margin at the top - this is because pictures are always put at the top of paragraphs or the top of the div so I don't want it shifting down.

The other disadvantage of using span like this is that I lose control over the p style changing font face site wide. I suppose I could add a global body text style but then I would have to edit the whole site to apply it to all the text!
-Carol Haynes (June 25, 2008, 10:31 AM)

Sure: its never easy. CSS is great, but if you have lots of little breaks in the rules you get lots of styles.

I have however added a global style change for p and h3 which seems to align the columns better in FF2 (doesn't seem to do much in IE7 though - what about IE6?).
-Carol Haynes (June 25, 2008, 10:31 AM)

Here it is in IE6:
Screenshot - 26_06_2008 , 1_39_45 PM.png
1107
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 25, 2008, 10:07 AM »
Yep, I think you're doing well, the site is looking good :)

I second that!!  :Thmbsup:
1108
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 25, 2008, 09:27 AM »
You had:
Code: HTML [Select]
  1. <p align="left">Friends of GOVI has been a <a href="http://www.charity-commission.gov.uk/registeredcharities/showcharity.asp?regno=1070173" target="_top">registered UK charity</a> since 1998. We support the only School for the Blind in the Gambia working with and alongside GOVI, The Gambian Organisation for the Visually Impaired.
  2. Many of the children come from very poor families and depend upon having two meals a day at the school so this year our main priority will be to fund those meals.</p>

I changed it to:
Code: HTML [Select]
  1. <span align="left">Friends of GOVI has been a <a href="http://www.charity-commission.gov.uk/registeredcharities/showcharity.asp?regno=1070173" target="_top">registered UK charity</a> since 1998. We support the only School for the Blind in the Gambia working with and alongside GOVI, The Gambian Organisation for the Visually Impaired.
  2. Many of the children come from very poor families and depend upon having two meals a day at the school so this year our main priority will be to fund those meals.</span>

That aligned the two columns locally for me...
1109
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 25, 2008, 08:44 AM »
Carol: I've just been playing with your code locally and I think that the Paragraph tags in the body is what is mucking up the vertical alignment. Try changing them to a Span maybe?

Not sure about the other pages, I was just playing with the main page.
1110
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 25, 2008, 08:00 AM »
Also, I think you should move "A UK Charity supporting "The Gambian Organisation for the Visually Impaired"
(Registered Charity 1070173)" somewhere else and move the top banner up. I say this because it's stealing too much screen real-estate. One of the rules with web pages is to not make them long, but if the top banner and text are taking 1/3rd of the screen, this task becomes more complicated.

I'd have to agree. Can it go at the bottom of the navigation panel? Maybe behind a graphic? Or maybe a small one liner under the banner?

I really like the darker border  :Thmbsup: Really defines the content, eh?
1111
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 25, 2008, 06:18 AM »
Picture frames: if it was me I'd be keeping them simple. Though I don't mind what you've done.

Odd concerning the cache...

The new RSS logo is probably better. I think one of the struggles with all these graphics is to get them to fit within your site's style. Too many different types of icons and I think it makes the site look "disjointed" type thing.

Have you tried making the outside border a slightly lighter/darker shade? I wonder if it may help define the content of your page more strongly??
1112
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 24, 2008, 10:28 PM »
Could some kind soul check out the latest incarnation of www.friendsofgovi.org.uk in Internet Explorer 6. I don't have it on my system except in a VMWare installation of Windows 98 and I am getting bad whole page flickering from the menu.

I had to change the CSS tags on div:hover in the menu as it didn't seem to work in IE6 at all. I have instead used a:hover in the menu which works but every time I move the mouse down the menu the whole page flickers and I can't seem to work out why. Is it an ancient hangover of Windows 98 version of IE6 or have I got real problems?
-Carol Haynes (June 24, 2008, 02:03 PM)

Looks OK here Carol.

The hover over the Creadit Card doesn't highlight as the others do, and the text dims: ie the link hovers OK. Correction: Just on the News and Help pages.

Your RSS logo is antialiased for the cream background, you should probably swap the image that is antialiased to the Indian Red (???) background.

Help, Become_A_Friend & Links pages have centred titles where all the others are left aligned.

News and Help do not have the RSS logo/link.

Have you thought about adjusting the colours of your links to match the colours of the site?

What about using an image to mark the TANGO links? In fact it's not a bad idea to indicate links that access external sites.
1113
Thanks to all of you, and one extra thank you to Perry for writing Nirsofer! I have tried, though, to write him some time ago about something different, but I cannot remember getting an answer. I hope you have better luck.

We'll see  :-\

It seemed the perfect resolution for your specific situation if user defined folders was available; anyway, we'll see...

Phil or Nod's suggestion of a script (of some sort) is probably going to be the most configurable though, and not too difficult to achieve.
1114
NirExt Shortcut+ maybe?

No QuickLaunch available tho'  :huh:

I've just asked Nir if it's a possability to have user defined locations as well  ;)
1115
you would call it like this
FARR.setStrValue("launch","showhtml "+htmlString);

 :Thmbsup:
1116
OR if you are doing a takeover of the OnProcessTrigger, ecaradec just added the ability to tell farr not to close -- you return a value of 1 from that event function. BUT BUT BUT -- i don't think ecaradec has made that new version of fscript public yet (1.6) so you need that first.

What I'm wondering about doing is showing the HTML window with a page generated by the plugin: is that process documented somewhere?

Would it be something as easy as:
Code: Javascript [Select]
  1. var htmlString = "<html><body>Hello World</body></html>:;
  2. FARR.setStrValue("window.htmlmode",htmlString);
1117
FScript 1.7 is uploaded.
onProcessTrigger can now return a set of flags to tell if the result was processed and if farr window should close.

Wondefrul Ecaradec: Thanks! I'm eager to play with this...  :Thmbsup:
1118
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 23, 2008, 07:35 AM »
What about doing the integration through an RSS Feed?

Google have some neat javascript code that imbeds RSS feeds into DIV objects.
1119
Announce Your Software/Service/Product / Re: First website for a client
« Last post by Perry Mowbray on June 22, 2008, 09:40 PM »
Just done a load of new updates.
-Carol Haynes (June 22, 2008, 10:38 AM)

I reckon!!

The news section has changed completely.
-Carol Haynes (June 22, 2008, 10:38 AM)

 :Thmbsup: Much easier for finding the actual bit you want to read...

The new wall photo is better but unfortunately the wall had got dirty. We are still trying to track down the original wall photo so that I can produce a decent version but at least it is readable now.
-Carol Haynes (June 22, 2008, 10:38 AM)

You can't "clean" it?  :D

I have also added a PHP script to force the PFD membership application form (the menu 'Become a friend of GOVI') to download rather than open in a browser window. I think I may actually point this to the 'You can help page' and provide the option to download or open the PDF form. Maybe I should make it a fillable form on a webpage which can then be printed and posted. Since it involves bank details I don't want to have to get involved in secure web transfer.
-Carol Haynes (June 22, 2008, 10:38 AM)

Ummm... I just tried it now and it loads the help.html page. Which is also a little confusing because the menu, although correct, was not what I clicked on.  :huh: Maybe you removed the script?

Next things to do -

  • add RSS news feed.
  • sort out banner image.
  • sort out the links page and make it useful.
  • consider using dynamic news page generation so that others can add and comment on articles.

Not sure I want to get into the last of those as it is pretty easy to add articles now 'cos they are just dropped into a simple template. The person who is editing articles isn't really keen to make it a site where lots of people can contribute directly - and I suppose realistically at this point the contributions are from a fairly limited pool of contributors that have direct knowledge.
-Carol Haynes (June 22, 2008, 10:38 AM)

Would be nice if the links are searchable, eh? Well, I know they are now (within the browser), but if you categorised them and/or tagged them (especially if they could grow in number), returning a search result would be interesting.

As for news, you couldn't just point to a blog? A real blog would have its own RSS feed as well.

Great work Carol!!
1120
Thanks for the tip on .alias files. Wasn't aware.

What I'm trying to do is present some matches from the user entered query. The user can select one of the matches, which will be added to the EditBox (Like what happens when you are browsing the FileSystem in FARR). Then FARR reSearches on the new string and presents other options. So very similar to browsing the filesystem in FARR.
1121
I'm having some simple startup issues Vitaly:

For a quick start, you should copy one of the sample plugins, change the name and go slowly from there by deleting the parts you don't need.

OK, I think I've changed names everywhere I need to? eg: added "Test_" to your FARRAltTab.

But when building I get the following errors:
  • /OUT:FARRPluginRCW.dll directive in .EXP differs from output filename 'G:\Documents\My Development\FARR Plugins\CSharpSDK\FARR CSharp SDK\Debug\Test_FARRAltTabRCW.dll'; ignoring directive   G:\Documents\My Development\FARR Plugins\CSharpSDK\Copy of FARRAltTab\Test_FARRAltTabRCW.exp   Test_FARRAltTab
  • /DELAYLOAD:OleAcc.dll ignored; no imports found from OleAcc.dll   G:\Documents\My Development\FARR Plugins\CSharpSDK\Copy of FARRAltTab\LINK   Test_FARRAltTab
  • precompiled object not linked in; image may not run   G:\Documents\My Development\FARR Plugins\CSharpSDK\Copy of FARRAltTab\JrPlugin_GenericShell.obj   Test_FARRAltTab
  • 1 unresolved externals   G:\Documents\My Development\FARR Plugins\CSharpSDK\FARR CSharp SDK\Debug\Test_FARRAltTabRCW.dll   Test_FARRAltTab
  • The command ""G:\Documents\My Development\FARR Plugins\CSharpSDK\Copy of FARRAltTab\..\FARR CSharp SDK\FARRPluginRCW\ProjectNameChanger.exe" "G:\Documents\My Development\FARR Plugins\CSharpSDK\Copy of FARRAltTab\..\FARR CSharp SDK\FARRPluginRCW\FARRPluginRCW.vcproj" Test_FARRAltTabRCW
    %windir%\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe "G:\Documents\My Development\FARR Plugins\CSharpSDK\Copy of FARRAltTab\..\FARR CSharp SDK\FARRCSharpSDK.sln"
    xcopy /Y "G:\Documents\My Development\FARR Plugins\CSharpSDK\Copy of FARRAltTab\..\FARR CSharp SDK\debug\Test_FARRAltTabRCW.dll" "G:\Documents\My Development\FARR Plugins\CSharpSDK\Copy of FARRAltTab\"" exited with code 4.   Test_FARRAltTab

What am I doing wrong???  :huh:

1122
FARR Plugins and Aliases / Re: New Script FARR Plugin: Clock
« Last post by Perry Mowbray on June 21, 2008, 09:37 PM »
I was having an issue with RegEx's in the JavaScript though: they don't seem to be working. Is that FScript.dll or FARR?
-Perry Mowbray (June 17, 2008, 04:04 AM)

What is your issue with regexes ?
- FARR regexes are used to filter output (output many results and let farr filter and sort the results )
- You can use javascript to filter your results but you have to implement sorting and filtering

My issues were my code  :-[ or at least my understanding of some code I'd borrowed. It was neither Fscript or FARR (not surprising  ;)): I've got my RegExes working fine in JavaScript, thanks.

Did have some questions over in your Fscript thread tho...  :)
1123
1. Is it possible to stop FARR closing when a result is double-clicked?
add " /stayopen" to the end of the launch result to tell FARR to stay open after launching.

OK: pretty sure that that option is not available in this Plugin? Could onProcessTrigger return a result??

2. Can I get information from the found item into the EditBox?
there may be something i can do to improve the case of dragging and dropping into edit box or chooding jump to directory for these cases, but regardless, i think what you are wanting to, if i understand it which i might not, is to populate your results like this:
choice 1 | restartsearch tz pacific/auckland
choice 2 | restartsearch tz usa
etc

the restartsearch launch command will put the text that follows into the edit box when the item is selected, so it lets you build things like menus in FARR results.

yes, that sounds perfect: but again, I'm pretty sure that that command is not available in the Fscript plugin?

ecaradec?? I'd love to have that command  :-*
1124
Following a remark made on this site somewhere, I've occasionally called software vendors, prior to a purchase, to ask if there is a discount or promotion.  Surprisingly many either have something available or will create an on-the-spot discount.
-cranioscopical (June 20, 2008, 11:13 AM)

That's what I (we) were hoping for... I had some recent success in other areas that will be available during the fundraiser, but it's good to come back to earth again  :)

 :-[ We're already getting a discount anyway, right? It was probably a little cheeky, but exposure here is definitely a win-win situation: so there's no harm in trying...
1125
Another quick question:

I'm not sure what the effects of the PostProcessing options are:
IMMEDIATE_DISPLAY=0; ADDSCORE=1; MATCH_AGAINST_SEARCH=2
Pages: prev1 ... 40 41 42 43 44 [45] 46 47 48 49 50 ... 63next