this also works with other CE hacks (not all, unfortunately, because with IHG, you can't replace a defined address, just replace values), for example this one
it worked for me
yep, that's kind of a nasty part. when i had to edit a list of like 200 addresses, i thought: why not just automize this?Target all the lines in the other box. <-- Ok, in iHaxGamez, you cant select all, so you have to go 1 by 1, which is the thing I hate on this...
so i wrote a little applescipt, just copy/paste it into a new script editor file, then click execute and immediately switch to the ihaxgamez window (didn't find a way to switch to it and was too lazy to search). replace the number in the repeat sequence with the number of addresses you want to edit
--EDIT: i think you also have to select the first address in the list --
--EDIT 2 (big one :O) you also have to copy the new value so it can paste it, VERY IMPORTANT :/
tell application "System Events"
tell process "iHaxGamez"
delay 1
repeat with bla from 1 to 100 -- replace this number
keystroke tab
keystroke "v" using command down
keystroke tab
keystroke (ASCII character 31)
end repeat
end tell
end tell
oh, and btw, i'm not that good at applescript, a pro prolly could write one with like 5 lines, but it works for me and i think it will work for you as well, HF :wave: