; CCS_NOPARENTALIGN := 0x0008 - Allows positioning and moving toolbars.
; CCS_NORESIZE := 0x0004 - Allows resizing toolbars.
Search found 366 matches
- 13 Nov 2017, 10:34
- Forum: Scripts and Functions
- Topic: [Class] Toolbar - Create and modify (Updated 03/17/2016)
- Replies: 54
- Views: 16562
Re: [Class] Toolbar - Create and modify (Updated 03/17/2016)
- 15 Aug 2016, 11:27
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
You can run vb using COM. Check out Sinkfaze's tutorial https://autohotkey.com/boards/viewtopic.php?p=474#p474
Don't know how to go about copying a variable content though.
Don't know how to go about copying a variable content though.
- 13 Aug 2016, 19:36
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
You could use SetTimer for the second, or for both.
- 12 Aug 2016, 17:10
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
The crashes problem is known and listed on GitHub. I suspect it's related to SciLexer.dll or its wrapper, but I'm way too busy with other projects at the moment. They are completely random, no way to force it, and I don't have the time to keep debugging it.
- 08 Aug 2016, 07:48
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
I tried that already :) but still no "0" before I also tried DataDzien2 := "0" DataDzien DataDzien := (DataDzien < 10) ? DataDzien2 : DataDzien But also the same When i did DataDzien := (DataDzien < 10) ? 0000123 : DataDzien The result is (for DataDzien <10): 123 So AHK removes all 0 Any idea? Humm...
- 07 Aug 2016, 13:08
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Version Update: 5.0.5
Your code should work now after correcting the variable name. Ok, i see how Ternary operator works, but my code wont work as i want :) I want to: 1. Increment Day by A_index 2. place 0 before single number values. To make this: 05 06 07 08 09 10 11 This code is Assign 0 to my var if it is <10, and ...
- 07 Aug 2016, 12:08
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Version Update: 5.0.5
Released version 5.0.5 to fix the problem. Your code should work now after correcting the variable name. Version 5.0.5 Fixed bug in expressions when assigning a variable to a ternary operation. Btw, I have just bought a house and I'm very short this month... Some donations to help me pay for the dom...
- 07 Aug 2016, 11:51
- Forum: Scripts and Functions
- Topic: Eval - Evaluate Expressions in Strings Dynamically (Updated 07/08/2016)
- Replies: 22
- Views: 8726
Update v1.1.7
Update: v1.1.7
- Fixed bug when assigning a variable to a ternary operation.
- 07 Aug 2016, 11:36
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.4 - The Complete Automation Tool
Despite the typo in your variable, there is indeed a bug in the eval() function to detect the ternary in this case. It's not excluding the equal sign. I'm releasing an update.
- 07 Aug 2016, 10:00
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.4 - The Complete Automation Tool
Hey, How to add If excpression in Expression/Com Object Box? I wanna add if statement to add "0" before single number - because it is date DateDay := A_DD + A_Index DateDay := "0" DateDay so it would be like this If(DateDay<10) than DateDay := "0" DateDay You have to use ternary. E.g.: DateDay := (...
- 07 Aug 2016, 09:54
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.4 - The Complete Automation Tool
I am looking for the best solution to parsing a csv into an array for use in PMC. I haven't yet found a way to do this through the existing tools in PMC, and while I was able to find a fantastic library, specifically the ObjCSV Library - Version v0.3.0 - By Jean Lalonde. However I still cant figure...
- 27 Jul 2016, 21:09
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.4 - The Complete Automation Tool
It's very simple. Click on the Play hotkey control and press the key or combination to set the hotkey for the macro. I don't know how to make it clearer...
- 27 Jul 2016, 12:52
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.4 - The Complete Automation Tool
The hotkeys are Play, Manual, Pause and Stop. They are on the top-right corner of the main window.
- 26 Jul 2016, 13:48
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.4 - The Complete Automation Tool
To stop execution use Return. It's in the same list.
- 26 Jul 2016, 12:14
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.4 - The Complete Automation Tool
I just found out that there is one thing that is a bit anoying. I have this code inside of the Macro Creator: InputBox, VarSubject, Subject, Plase add a subject If VarAmne = { MsgBox, 16, Add Subject from line, You have to enter a subject`, Restart the script, 6 ExitApp } However when this is run a...
- 26 Jul 2016, 12:12
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.4 - The Complete Automation Tool
I have tried to do a %1% in the end of "ie.document.getElementsByName("technicianID")[0].SelectedIndex := userid_value" and also to define a variable like at the top, But Pulover removes % everytime so it don´t work. but with Edit AHK and manually compile including %1% everything works. Am i doing ...
- 19 Jul 2016, 13:31
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Version Update: 5.0.4
Version 5.0.4
- Fixed wrong options set for Message Box when editing the command.
- 19 Jul 2016, 09:21
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.3 - The Complete Automation Tool
[...] email that using PMC's inbuilt emailing macro while i'm asleep. However, occasionally i get an error message saying that the "message could not be sent to the SMTP server". [...] Is there a workaround to keep the script running in spite of the error message? Options > Settings > Playback > Do...
- 20 Jun 2016, 12:11
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.3 - The Complete Automation Tool
Much appreciated!ProductiWise wrote:Dear Pulover,
I want to say out loud for all your beautiful and generous efforts, "A BIG THANK YOU SIR".
Regards,
Ankur

- 20 Jun 2016, 12:09
- Forum: Pulovers Macro Creator
- Topic: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool
- Replies: 995
- Views: 594987
Re: Pulover's Macro Creator v5.0.3 - The Complete Automation Tool
Is this the right place for a question about using the Pulover macro tool? If not, where is? Here's my question. I want to run a macro that repeatedly opens a dialog in an application I have, does alt-print-screen to get a screen capture of the dialog, then pastes the screen cap into a word documen...