Search found 11 matches
- Tue Nov 22, 2016 7:15 pm
- Forum: Technical / Scripting
- Topic: Is this possible? Price Checking tool
- Replies: 1
- Views: 2590
Is this possible? Price Checking tool
Wondering if it is possible to create a macro script to search various online sites for product pricing. We have several contracted vendors, plus purchase from a couple of non-contracted vendors. I'm trying to figure out how to search across all of these at the same time to find best pricing rather ...
- Fri Aug 14, 2009 4:47 pm
- Forum: Technical / Scripting
- Topic: Simple Dialog Box Problem that I can't figure out
- Replies: 6
- Views: 6670
Quick followup question... Script is working fine...i've compiled it into an EXE for distribution. When I run the executable on my computer for testing it works perfectly. However, when I run it on another computer, it runs, but the progress bar moves much slower. The script still works, the button ...
- Fri Aug 14, 2009 3:54 pm
- Forum: Technical / Scripting
- Topic: Simple Dialog Box Problem that I can't figure out
- Replies: 6
- Views: 6670
- Fri Aug 14, 2009 2:42 pm
- Forum: Technical / Scripting
- Topic: Simple Dialog Box Problem that I can't figure out
- Replies: 6
- Views: 6670
Simple Dialog Box Problem that I can't figure out
I'me trying to write a simple script that will show a dialog box with a progress bar and a cancel button. The purpose is to reboot the computer, or cancel the reboot. For testing purposes, ive not put the reboot line in yet. Here's what I have: Dialog>Dialog1 Caption=Dialog1 Width=400 Height=168 Top...
- Tue Jan 15, 2008 9:58 pm
- Forum: Beginners
- Topic: SetFocus Questions
- Replies: 1
- Views: 3749
SetFocus Questions
I'm trying to write a script (and ultimate create an EXE) to manage an application (CompLab) that I use in a student computer lab. I thought that I had it working but have hit a dead end and don't know how to accomplish what I want. The application (CompLab) presents a full-screen window, obscuring ...
- Wed Nov 28, 2007 6:19 pm
- Forum: Technical / Scripting
- Topic: Disable/Enable Windows key on the fly w/no reboot?
- Replies: 4
- Views: 7128
I got this to work, if anyone is interested. Took out the Release LWinkey and Release RWinkey statements and reworked the focus app and kill script sections. Here's what I have now. Any streamlining suggestions would be appreciated. Run Program>c:\program files\stats\complab.exe OnEvent>KEY_DOWN,VK9...
- Wed Nov 28, 2007 5:55 pm
- Forum: Technical / Scripting
- Topic: Disable/Enable Windows key on the fly w/no reboot?
- Replies: 4
- Views: 7128
That worked!! Thanks :D I almost have this thing the way I want but it's not quite right. Here's what I have now: Run Program>c:\program files\stats\complab.exe OnEvent>KEY_DOWN,VK91,0,WinKey OnEvent>KEY_DOWN,VK92,0,WinKey SRT>WinKey Let>kk=0 Repeat>kk Add>kk,1 Release LWinKey Release LWinKey Press ...
- Mon Nov 26, 2007 7:47 pm
- Forum: Technical / Scripting
- Topic: Disable/Enable Windows key on the fly w/no reboot?
- Replies: 4
- Views: 7128
Disable/Enable Windows key on the fly w/no reboot?
Is there any way to disable the Windows/Start Menu key via Macro Scheduler? And then re-enable it? I know that there are a couple of registry tweaks that will do it, but it requires a reboot to activate. Here's what I'm trying to accomplish: After a user logs into the computer, a special application...
- Fri May 27, 2005 4:44 pm
- Forum: Beginners
- Topic: Win XP Defrag Script question
- Replies: 5
- Views: 8186
I ended up going a completely different way with this. Fortunately Defrag offers a command line utility that works nicely. Let>RP_Wait=1 Run Program>defrag c: Let>RP_Wait=1 Run Program>defrag d: This seems to work fine. I never could get the other script to properly recognize the pop up dialog, clos...
- Thu May 26, 2005 9:17 pm
- Forum: Beginners
- Topic: Win XP Defrag Script question
- Replies: 5
- Views: 8186
Use another WaitWindowOpen> command, waiting for the prompt window.and then use a PushButton> or similar command to select the button and finish it. I can't get this to work, and I think the reason is that the 2nd window that pops up has the same title as the first "Disk Defragmenter". Therefore, a...
- Wed May 25, 2005 6:13 pm
- Forum: Beginners
- Topic: Win XP Defrag Script question
- Replies: 5
- Views: 8186
Win XP Defrag Script question
Hello all, Trying to figure out how to get this script to close the Defrag program when it finishes. Here's what I have so far: ExecuteFile>C:\WINDOWS\system32\dfrg.msc WaitWindowOpen>Disk Defragmenter Press ALT Send Character/Text>ad release alt This all works fine. However, when the defrag finishe...