10-03-2009, 08:57 PM
TheVig Wrote:It sounds like you would be better served to use a file created trigger that will automatically monitor changes in a directory then perform a specific action when a condition exists.
Function Move_File_when_Created
Trigger $f 0x1 "$desktop$"
function event $name [$newname]
;event: 1 added, 2 removed, 4 renamed, 8 modified
sel event
,case 1
,str AddedFileName=name
,str FileName.getfilename(AddedFileName 1)
,str FilePath.getpath(AddedFileName)
,str NewFileName.from(FilePath "NewFolder\" FileName)
,ren+ AddedFileName NewFileName
Well, actually I need it to play the movement just as I record it, as it is for educational purpose. Its a drawing program, and I need the squares to look like squares, not 1/3 circles

Isnt there a way to set the program to record EXACTLY what is happening on the screen? Works fine with clicks and such, but I really need drag and drop, mosemovements and such...
Tried opt slowkeys 1 and spe 50>200, but it still wont do the trick...
Cant it just mimick my movements? Sounds weird I gotta be a rocket scientist to record a macro of my screen
