Advertisement
dcomicboy

Debug Console

Apr 30th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var SpamInterval = setInterval(SpamFunc,txtSpeed.text);
  2. clearInterval(SpamInterval);
  3.  
  4. function SpamFunc() {
  5. txtLingoBox.text;
  6. }
  7.  
  8. function SpamFuncStart() {
  9. SpamInterval = setInterval(SpamFunc,txtSpeed.text);
  10. }
  11.  
  12. function SpamFuncStop() {
  13. clearInterval(SpamInterval);
  14. }
  15.  
  16. function DoOnce() {
  17. txtLingoBox.text;
  18. }
  19.  
  20. btnSpamStart.onRelease = function() {
  21. SpamFuncStart();
  22. }
  23.  
  24. btnSpamStop.onRelease = function() {
  25. SpamFuncStop();
  26. }
  27.  
  28. btnSendOnce.onRelease = function() {
  29. DoOnce();
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement