Search found 20 matches

by NewYears1978
20 Aug 2021, 15:20
Forum: Pulovers Macro Creator
Topic: Crashing Macro (out of memory)
Replies: 2
Views: 2192

Re: Crashing Macro (out of memory)

Yeah sorry for multiple posts, I was trying to post only in Pulover area and at first I thought my macros were wrong but it only crashes if I am in Pulover. Exporting them and running separately causes no crash but some macros don't work properly. These crashes happen even when I don't run a macro, ...
by NewYears1978
08 Jul 2021, 13:33
Forum: Ask for Help (v1)
Topic: Crashing Macro (out of memory)
Replies: 2
Views: 569

Re: Crashing Macro (out of memory)

and how exactly do u figure it runs out of memory "because eventually it crashes"? the script that u posted, at best would exit(since theres nothing preventing that) after a certain number of loop iterations(however many u typed in at the start) and at worst run indefinitely(cause it cant find one ...
by NewYears1978
08 Jul 2021, 13:29
Forum: Pulovers Macro Creator
Topic: Crashing Macro (out of memory)
Replies: 2
Views: 2192

Crashing Macro (out of memory)

I think I posted this before but in the wrong place. For some reason my Pulover crashes constantly. I thought it was something in my macro that is running continously or something but sometimes it crashes before I even run a macro. I open Pulover and just leave it there before even activating macros...
by NewYears1978
02 Jul 2021, 12:20
Forum: Ask for Help (v1)
Topic: Crashing Macro (out of memory)
Replies: 2
Views: 569

Crashing Macro (out of memory)

This macro works but it seems like it continuously run because eventually it crashes. Do I need to exit or clear variables or something else? I have a separate macro that stores the variables and I use them through the loop..but I feel like I am missing something? InputBox, ECvar_loopcount, My Input...
by NewYears1978
03 Jun 2021, 13:57
Forum: Ask for Help (v1)
Topic: Loop Help (doens't loop)
Replies: 12
Views: 387

Re: Loop Help (doens't loop)

The pixel was definitely being found - because I was doing a specific test to see... But not sure why it was still hanging up, but CPU use was going up and causing some crashing sooo. New code I posted above works. Thanks again. Loop { CoordMode, Pixel, Client PixelSearch, FoundX, FoundY, 0, 0, 2048...
by NewYears1978
03 Jun 2021, 13:47
Forum: Ask for Help (v1)
Topic: Loop Help (doens't loop)
Replies: 12
Views: 387

Re: Loop Help (doens't loop)

Okay I took out the image searches and just put a MsgBox with OK there, and it indeed will loop now. Sooooo what is going on with the image searches? I probably set it up wrong, never used those before :) Okay I got it now :) I changed my image loops to this Loop { CoordMode, Pixel, Client PixelSear...
by NewYears1978
03 Jun 2021, 13:45
Forum: Ask for Help (v1)
Topic: Loop Help (doens't loop)
Replies: 12
Views: 387

Re: Loop Help (doens't loop)

I did that in edited post above..but I am not sure why this matters? Unless I am misunderstanding how those ErrorLevels work. I thought ErrorLevel was just a true false flag (0 or 1) and so it the image is there it does the else, if not it does the If..which is working fine. My whole macro is playin...
by NewYears1978
03 Jun 2021, 13:41
Forum: Ask for Help (v1)
Topic: Loop Help (doens't loop)
Replies: 12
Views: 387

Re: Loop Help (doens't loop)

I don't know what the value of errorlevel is, I thought that was just a true false flag (I am a newb) that you use with Ifs Loops, etc) The %loopcount% is set by the input box at the start. However I changed that loop to just a number 2 or 3 or whatever and it still didn't loop (to eliminate variabl...
by NewYears1978
03 Jun 2021, 13:34
Forum: Ask for Help (v1)
Topic: Loop Help (doens't loop)
Replies: 12
Views: 387

Re: Loop Help (doens't loop)

I know it reaches the end, the end has a CTRL-F4 which closes browser tab..which happens..and that's where it stops where it should loop back to the start. The loop is the whole macro (except the input boxes at the start) In other words if I put a msg box at the very end before the loop, it pops up ...
by NewYears1978
03 Jun 2021, 13:24
Forum: Ask for Help (v1)
Topic: Loop Help (doens't loop)
Replies: 12
Views: 387

Re: Loop Help (doens't loop)

Well, the msg box does appear the first time, all the code runs and works fine, and then at the very end it just doesn't loop back to the start. If I use a Label and a Goto instead it will keep going forever until I stop it just fine. So the overall code should be fine? Those imageloops are just sup...
by NewYears1978
03 Jun 2021, 12:42
Forum: Ask for Help (v1)
Topic: Loop Help (doens't loop)
Replies: 12
Views: 387

Loop Help (doens't loop)

I have this elaborate macro (well to me it is) that does a bunch of crap, then loops for set number of times. The macro works fine, but when it hits the loop end it just stops. (referring to the main loop at Loop, %loopcount% (I have tried a variable and regular number here with same result) Any ide...
by NewYears1978
28 May 2021, 10:09
Forum: Pulovers Macro Creator
Topic: Variables
Replies: 2
Views: 1049

Re: Variables

I was trying to find that, I see it now. Just have to figure out how to use the stored variables in other parts of my code. I'll research it. Thanks

Edit:
It's working, thanks!
by NewYears1978
27 May 2021, 21:23
Forum: Pulovers Macro Creator
Topic: Variables
Replies: 2
Views: 1049

Variables

Is there built in function for user input variables that can then be used in scripts? eg: I have a script does some stuff then inputs a text string, is there a built in way to have a message box pop up that stores the variable, then on the text sendraw it sends the variable value instead? or would t...
by NewYears1978
27 May 2021, 15:18
Forum: Ask for Help (v1)
Topic: Detect Chrome page loaded
Replies: 8
Views: 459

Re: Detect Chrome page loaded

I finally got it, this is what worked - I just need to change it to activate the window now because if I move the mouse to another screen then it messes it up. Escape:: ExitApp Return !2:: Macro2: MsgBox, % FileExist("C:\Users\jpyle\Downloads\CustomerAssignments\CustomerAssignments.csv") Return !1::...
by NewYears1978
27 May 2021, 15:00
Forum: Ask for Help (v1)
Topic: Detect Chrome page loaded
Replies: 8
Views: 459

Re: Detect Chrome page loaded

That should work. After the file is there, see what this one-line script shows just to make sure there's nothing wrong with the path: MsgBox, % FileExist("C:\Users\jpyle\Downloads\CustomerAssignments.csv") I think I may have triple posted due to the mod regulartions right now, I apologize. So I DID...
by NewYears1978
27 May 2021, 14:55
Forum: Ask for Help (v1)
Topic: Detect Chrome page loaded
Replies: 8
Views: 459

Re: Detect Chrome page loaded

That should work. After the file is there, see what this one-line script shows just to make sure there's nothing wrong with the path: MsgBox, % FileExist("C:\Users\jpyle\Downloads\CustomerAssignments.csv") Wow I am dumb, forgot a folder. Lol. I swear I looked at it 100 times but missed it because t...
by NewYears1978
27 May 2021, 14:15
Forum: Ask for Help (v1)
Topic: Detect Chrome page loaded
Replies: 8
Views: 459

Re: Detect Chrome page loaded

I think an easier way I have disconvered is to use FileExist, because each little run of the script creates a file and they are inclemently named Filename Filename(1) Filename(2) Etc. I tried this but it doesn't seem to continue once the file is created. Did I do it wrong? !1:: Macro1: Click, 225, 2...
by NewYears1978
27 May 2021, 13:02
Forum: Ask for Help (v1)
Topic: Detect Chrome page loaded
Replies: 8
Views: 459

Detect Chrome page loaded

I've got a script I use to automate some clicking for pulling reports on my website, after each run it takes 10-30 seconds for the report to run and I want to wait until the loading is done in Chrome before moving on to the next loop. I tried the below but the cursor doesn't always show a "wait" cur...
by NewYears1978
25 Mar 2018, 21:01
Forum: Pulovers Macro Creator
Topic: Pulover's Macro Creator v5.4.1 - The Complete Automation Tool
Replies: 1255
Views: 996323

Re: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool

Is it possible to use Mouse for hotkey? I know you can in AHK itself but not able to in the app itself..unless I export to AHK then just change it in there.
by NewYears1978
09 Jun 2016, 08:08
Forum: Pulovers Macro Creator
Topic: Pulover's Macro Creator v5.4.1 - The Complete Automation Tool
Replies: 1255
Views: 996323

Re: Pulover's Macro Creator v5.0.2 - The Complete Automation Tool

The post above was me, sorry about the double post and thanks for removing it (and sorry about this double post, I hadn't registered yet so I can't edit the above post) I remade all the macros and the problem went away..but I am still curious as to why? Because it may happen again. Any ideas? Also t...

Go to advanced search