Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- program New;
- procedure AutoSave;
- begin
- KeyDown(VK_SHIFT);
- Wait(10);
- KeyDown(VK_CONTROL);
- Wait(10);
- KeyDown(Ord('A'));
- Wait(50);
- KeyDown(Ord('A'));
- Wait(10);
- KeyDown(VK_CONTROL);
- Wait(10);
- KeyDown(VK_SHIFT);
- end;
- begin
- Writeln('begin!');
- AutoSave;
- Writeln('end!');
- end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement