guys what code should i put ... i need a code that the delete key is always presing. I used this code . Code (Text): KeyDown(46); Sleep(10000) KeyUp(46); But it wont work. It just delete 1 letter.." i want to keep it deleting until i put a seconds till it stops." Help pls.
i dont know much scar but would Code (Text): for i:= 1 to 10000 do begin KeyDown(46); Sleep(10000) KeyUp(46); End; adjust i:= to suit?
well i don't understand some of what you are saying but the code to get it to delete lots use this code Code (Text): repeat keydown(46); wait(1); keyup(46); until(false) this will press delete until you stop the script
if you want to stop the script well what is the code for stoping mass delete.? what will you add in Code (Text): repeat keydown(46); wait(1); keyup(46); until(false)
just looked at it a bit and came up with this Code (Text): program New; var i:integer; const times=10;//number of times to delete begin i:= 1 repeat wait(100); KeyDown(46); wait(1); KeyUp(46); i:=i+1 until(i=times) end.
thx ... but i better change it to Code (Text): KeyDown(65); KeyUp(65); wait(2000) KeyDown(46); KeyUp(46); pretty simple and delete all letters.