Search found 536 matches

by Rain
Thu Dec 07, 2006 11:02 pm
Forum: Technical / Scripting
Topic: Make window refuse focus
Replies: 12
Views: 12415

Do you know the names of the apps windows you don't want the user to be able to set in focus? Why not run a script that gets the active window title and if the window in focus is one of the apps you don't want the user to access reset the focus back to last active window? Something like this: label>...
by Rain
Mon Dec 04, 2006 7:08 pm
Forum: Beginners
Topic: How can I copy a file that always changes file name?
Replies: 11
Views: 15082

If the file size is always the same you could use GetFileList>c:\temp\*.wav,files to list the WAV files, then use FileSize> to find the file you're looking for. Examples are in the help file ;) GetFileList> example GetFileList>filespec,result[,delimiter] GetFileList returns a list of the files found...
by Rain
Sat Dec 02, 2006 2:47 pm
Forum: Beginners
Topic: How do you make an icon :O?
Replies: 1
Views: 4207

You need a program like ArtIcons, Icon Constructor, Easy Icon Maker. There are many programs out there to choose from. Your best bet is to search google.
by Rain
Wed Nov 29, 2006 5:19 pm
Forum: Beginners
Topic: Color picking
Replies: 23
Views: 26847

I think so too Me_Again. I figured it out though. All I had to do was add GetCursorPos>x,y after MouseMove>x,y :wink: // location of library Let>fcLib=%SCRIPT_DIR%\findcolor.dll // Find color on screen // LibFunc>findcolor.dll,FindColor,result,color,xStart,yStart,xEnd,yEnd,result_x,result_y // if fo...
by Rain
Wed Nov 29, 2006 3:14 pm
Forum: Beginners
Topic: Color picking
Replies: 23
Views: 26847

I love the DLL function. However, I am not able to display the y cords with the script below. // location of library Let>fcLib=%SCRIPT_DIR%\findcolor.dll // Find color on screen // LibFunc>findcolor.dll,FindColor,result,color,xStart,yStart,xEnd,yEnd,result_x,result_y // if found result = 1, else 0 /...
by Rain
Mon Oct 30, 2006 3:50 pm
Forum: General Discussion
Topic: Can a dialog box be larger than the desktop?
Replies: 17
Views: 19104

I just came across this topic. About a year ago or so I was able to make dialogs larger than the desktop but now when I try the same script the size of the dialog is limited to the desktop size. I think one of the many Windows security updates is causing the restriction. I’m going to try my o...
by Rain
Mon Oct 30, 2006 3:29 pm
Forum: Technical / Scripting
Topic: Dialogs
Replies: 5
Views: 7249

Very nice! Thanks for the script. I had to add gda> to the loop to get it to work. gda>Dialog1,result if>result=10,Button2 if>result=20,Button1 if>result=2,Exit Dialog>Dialog1 Caption=Test Dialog Width=445 Height=250 Top=206 Left=148 Button=Hide Button 2,56,40,75,25,10 Button=Hide Button 1,56,88,75,...
by Rain
Thu Aug 10, 2006 10:08 am
Forum: Beginners
Topic: Can Macro Scheduler detect window state?
Replies: 2
Views: 4219

Thank you for your quick reply and help, Marcus.
That's exactly what I was looking for.

~Rain
by Rain
Wed Aug 09, 2006 2:42 pm
Forum: Beginners
Topic: Can Macro Scheduler detect window state?
Replies: 2
Views: 4219

Can Macro Scheduler detect window state?

Can Macro Scheduler detect if a specific window is minimized or maximized?
by Rain
Sun Jul 30, 2006 4:59 pm
Forum: Technical / Scripting
Topic: change the gear icon in systray to custom one in compiled ex
Replies: 5
Views: 5056

Me_again wrote:What I find more useful is to use Set>APP_TITLE= to change the name that shows on the Task Bar when the compiled macro is running.
I don't mean to step on your toes but I think you mean Let>APP_TITLE=YOUR EXE TITLE HERE
by Rain
Fri Jul 28, 2006 12:01 pm
Forum: Enhancement Suggestions
Topic: Replacing or Finding Multiple Lines
Replies: 0
Views: 4582

Replacing or Finding Multiple Lines

Is it possible to add an option to replace multiple lines or search for multiple lines, kind of like Microsoft FrontPage for example?
This would save a lot of time when working on scripts with thousands of lines.

Thank you,
Rain
by Rain
Tue Jun 27, 2006 5:27 pm
Forum: Technical / Scripting
Topic: get folder list, and first file in each folder
Replies: 1
Views: 3414

Is this what you're trying to accomplish? Maybe there is an easier way but this works well for me with perfect results every time. I've tried to explain it as good as I can and I hope you can make any sense of off it all. //Get first file name and directory for 1st folder GetFileList>C:\WINDOWS\*.*,...
by Rain
Fri Jun 16, 2006 12:35 pm
Forum: Technical / Scripting
Topic: Different version of IE comes up
Replies: 2
Views: 3816

Is this what you're talking about? VBSTART Sub OpenPage(URL,Wait) Dim IE Set IE = CreateObject("InternetExplorer.Application") IE.visible = 1 IE.Left=0 IE.top=0 IE.width=800 IE.height=572 IE.toolbar=1 IE.menubar=1 IE.resizable=1 IE.statusBar=1 IE.navigate URL do while IE.Busy and Wait loop End Sub V...
by Rain
Tue Jun 13, 2006 3:03 pm
Forum: General Discussion
Topic: pressing the spacebar
Replies: 14
Views: 19558

Thank you so much for taking the time to reply and to point me in the right direction, this is exactly what I was looking for. :) FYI, I did use the forums search feature but find it kind of aggravating when every time I click the back button to go back to the search result list I get the “Pag...
by Rain
Tue Jun 13, 2006 2:50 pm
Forum: Technical / Scripting
Topic: Caret position in a dialog
Replies: 7
Views: 7323

I’m not having any luck either. I did notice when I move all your edit boxed to the far left of your dialog window and move your dialog to 0,0 the GetCaretPos command returns the correct value but only for the first edit box. I’ve modified your first script and when I hit the tab butto...
Sign up to our newsletter for free automation tips, tricks & discounts