Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var SpamInterval = setInterval(SpamFunc,txtSpeed.text);
- clearInterval(SpamInterval);
- function SpamFunc() {
- txtLingoBox.text;
- }
- function SpamFuncStart() {
- SpamInterval = setInterval(SpamFunc,txtSpeed.text);
- }
- function SpamFuncStop() {
- clearInterval(SpamInterval);
- }
- function DoOnce() {
- txtLingoBox.text;
- }
- btnSpamStart.onRelease = function() {
- SpamFuncStart();
- }
- btnSpamStop.onRelease = function() {
- SpamFuncStop();
- }
- btnSendOnce.onRelease = function() {
- DoOnce();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement