Thanks!
Any idea why it works in devmode and not when compiled?
Search found 32 matches
- Tue Apr 14, 2020 9:10 pm
- Forum: Technical / Scripting
- Topic: CloseDialog not working when compiled
- Replies: 3
- Views: 3086
- Tue Apr 14, 2020 4:27 pm
- Forum: Technical / Scripting
- Topic: CloseDialog not working when compiled
- Replies: 3
- Views: 3086
CloseDialog not working when compiled
Hello CloseDialog doesn't seem to work in a compiled script. Example 1: CloseDialog command is Inside an subroutine Dialog>Dialog1 object Dialog1: TForm Left = 408 Top = 111 HelpContext = 5000 BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 115 ClientWidth = 263 Color = clBtnFac...
- Tue Mar 10, 2020 9:08 am
- Forum: Technical / Scripting
- Topic: Closing Dialogs With Compiled EXE
- Replies: 4
- Views: 4362
Re: Closing Dialogs With Compiled EXE
I am having this issue, but the solution presented in the end is not working for me To sum up the issue, so you don't have to read this old post: CloseDialog doesn't seem to always work in compiled scripts MadQuestion seemed to find out that it works when he puts it outside his SRT's This is my scri...
- Mon Mar 09, 2020 11:07 am
- Forum: Technical / Scripting
- Topic: Numeric strings returning with "," decimal seperator
- Replies: 2
- Views: 2429
Re: Numeric strings returning with "," decimal seperator
No i didn't know that
Might be a dumb question, but how do i do that?
Edit:
Nvm that question. Figured it out! Thanks very much for the tip!
Might be a dumb question, but how do i do that?
Edit:
Nvm that question. Figured it out! Thanks very much for the tip!
- Mon Mar 09, 2020 10:27 am
- Forum: Technical / Scripting
- Topic: Numeric strings returning with "," decimal seperator
- Replies: 2
- Views: 2429
Numeric strings returning with "," decimal seperator
I'm located in europe, and my OS language is english. When calculating strings, the result has "," as decimal separator, but Macro Scheduler can only handle "." seperators, it seems. I found out using the ROUND function. Is it intended? I know i can just replace it with the right one, but i'm just c...
- Fri Mar 06, 2020 1:42 pm
- Forum: Technical / Scripting
- Topic: How to calculate numeric strings
- Replies: 5
- Views: 4557
Re: How to calculate numeric strings
It works!
As always, thank you!
As always, thank you!
- Fri Mar 06, 2020 1:14 pm
- Forum: Technical / Scripting
- Topic: How to calculate numeric strings
- Replies: 5
- Views: 4557
Re: How to calculate numeric strings
Wow you're right. Just did this LET>A=1 LET>B=2 LET>SUM=%A%+%B% MDL SUM to confirm what you said, and it works. I wonder why mine doesn't work then? I'm trying to count the number of lines in some txt files and add them together. Here it is ReadFile>\\DSS-DK-FIL-001\Data\Common\Autoclick projekt\Sta...
- Fri Mar 06, 2020 10:40 am
- Forum: Technical / Scripting
- Topic: How to calculate numeric strings
- Replies: 5
- Views: 4557
How to calculate numeric strings
I have some numeric strings i want to add and get the final sum, but it can't calculate numeric strings.
Is there a way around it?
Is there a way around it?
- Thu Feb 27, 2020 8:24 am
- Forum: Technical / Scripting
- Topic: [solved] RenameFile randomly stopped working
- Replies: 0
- Views: 10647
[solved] RenameFile randomly stopped working
EDIT: I realized i was being an idiot :lol: Apparently i DID change something since it worked yesterday, since you need to put the full file path in the end. Just ignore my post Hi. I have a script with a very simple RenameFile line in it. The line randomly stopped working today. It just executes th...
- Wed Feb 26, 2020 1:45 pm
- Forum: Technical / Scripting
- Topic: My script thinks a window is open when it's not?
- Replies: 5
- Views: 4429
Re: My script thinks a window is open when it's not?
Works like a charm! Thank you very much!Try limiting to visible windows only by adding this at the top of your script:
Let>WF_TYPE=2
- Wed Feb 26, 2020 1:31 pm
- Forum: Technical / Scripting
- Topic: My script thinks a window is open when it's not?
- Replies: 5
- Views: 4429
Re: My script thinks a window is open when it's not?
I see. Well even if the window is closed from the beginning, the script still sees it.
I wonder how that is possible when it doesn't show up with getwindowlist.
I wonder how that is possible when it doesn't show up with getwindowlist.
- Wed Feb 26, 2020 1:05 pm
- Forum: Technical / Scripting
- Topic: No way for AddDialogHandler to go to a label?
- Replies: 2
- Views: 2428
Re: No way for AddDialogHandler to go to a label?
SkipLabel solves it! Didn't know it existed. Thanks!
- Wed Feb 26, 2020 10:20 am
- Forum: Technical / Scripting
- Topic: My script thinks a window is open when it's not?
- Replies: 5
- Views: 4429
My script thinks a window is open when it's not?
What MDL are you guys receiving when running this?
Do i have some hidden window running called Details? Doesn't show up with getwindowlist
Code: Select all
CloseWindow>Details
Wait 1
IfWindowOpen>Details
MDL>Details open
Else
MDL>Details not open
endif
exit
- Wed Feb 26, 2020 9:25 am
- Forum: Technical / Scripting
- Topic: Determining if a Macro is already running
- Replies: 10
- Views: 7520
Re: Determining if a Macro is already running
Wouldn't this one also do the trick?
Code: Select all
GetProcessIds>My macro.exe,PID_ARR
ArrayCount>PID_ARR,PIDCOUNT
If>PIDCOUNT>1
MDL MACRO ALREADY RUNNING
exit
//Or insert dialog where user can choose to kill that existing process. (Will also kill this one ofc)
endif
//Continue macro
- Wed Feb 26, 2020 8:24 am
- Forum: Technical / Scripting
- Topic: No way for AddDialogHandler to go to a label?
- Replies: 2
- Views: 2428
No way for AddDialogHandler to go to a label?
This will give an error saying: Subroutine/Label MyLabel Not Found! Label>MyLabel Dialog>Dialog1 object Dialog1: TForm Left = 776 Top = 138 HelpContext = 5000 BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 211 ClientWidth = 476 Color = clBtnFace Font.Charset = DEFAULT_CHARSET F...