Search found 6 matches
- Wed Jan 27, 2010 1:21 am
- Forum: Beginners
- Topic: Macro Scheduler is looking in the wrong directory
- Replies: 2
- Views: 3714
Macro Scheduler is looking in the wrong directory
I need some assistance. I just got a new system. It is a Amd 8650 with 4 GB of ram and half a terabyte of hard drive space and vista 64 bit. When I open Macro Scheduler it lists all the macros like it should. However if I try to run or edit any macro, it comes up wih an error saying it can't find th...
- Sun Oct 25, 2009 10:36 pm
- Forum: Beginners
- Topic: newbie needs help with testing for user activity
- Replies: 3
- Views: 24317
newbie needs help with testing for user activity
I am trying to create a script (later a program) to run a program if there is no activity for an hour. i know that you could use WaitKeyDown and test for any input, however that would be an extremely long code.
Is there a simpler way of doing this.
Thanks for any suggestions,
Joejr
Is there a simpler way of doing this.
Thanks for any suggestions,
Joejr
- Mon Aug 31, 2009 4:08 am
- Forum: Beginners
- Topic: Default Browser
- Replies: 3
- Views: 4915
RE:Default Browser
Another way is to use the FindExecutable function which returns the executable associated with a file type. We can ask it to tell us what is associated with .htm files: WriteLn>%TEMP_DIR%\temp.htm,r,nothing LibFunc>shell32,FindExecutableA,fexeResult,%TEMP_DIR%\temp.htm,0,res Position>NULLCHAR,fexeR...
- Sun Aug 30, 2009 8:20 am
- Forum: Beginners
- Topic: Default Browser
- Replies: 3
- Views: 4915
Re: Default Browser
Never MindJoejr wrote:Can anyone tell me, if there is some script to find out what is the default browser?
For those who are interested
Code: Select all
RegistryReadKey>HKEY_CURRENT_USER,Software\Classes\http\shell\open\ddeexec\Application,,strValue
- Sun Aug 30, 2009 5:26 am
- Forum: Beginners
- Topic: Default Browser
- Replies: 3
- Views: 4915
Default Browser
Can anyone tell me, if there is some script to find out what is the default browser?
- Fri Aug 28, 2009 10:32 am
- Forum: Beginners
- Topic: Newbie needs help-How to use SSL with HTTPRequest
- Replies: 1
- Views: 3184
Newbie needs help-How to use SSL with HTTPRequest
The Manual says you first need to install the OpenSSL libraries but it doesn't go any further. I am trying to use HTTPRequest to post but I need to use https. I know this much Let>HTTP_SSL=1 Let>PostData=email=myemail@home.com&name=Joe Bloggs HTTPRequest>https://www.someplace.com/someform.html,,POST...