still having problems with setInterval()

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default still having problems with setInterval()

    the code is like this:
    on (rollOver)
    {
    var qwer;
    qwer=setInterval(this._parent.sometextbox.scroll+= 1,1000);
    }

    and it executes ONLY ONCE. Why???
    Please help
    geut Guest

  2. Similar Questions and Discussions

    1. setInterval in 2.0.4
      Hi I've just read the release notes for 2.0.4 and it says this: In the Flash Media Server 2 Server-Side ActionScript Language Reference...
    2. setInterval: been there, done that
      The problem is i want to scroll a text using two objects: buttonUp and butonDown. I have done as i have been told: on the buttonUp (which is a...
    3. problems with setInterval()
      i try doing something like this: on (press) { var intervalID; intervalID=setInterval(asdf(), 100); } function asdf() { //something; }
    4. SetInterval Problem
      Hello What I have is some checkboxes that call and play swfs one after the other when I check them and click on the submit button. However I need...
    5. setInterval
      can setInterval timer be a varibles??? for example: t=500; setInterval(myfunction, t); t=t+100; i have tried this, but doesnt work.....can...
  3. #2

    Default Re: still having problems with setInterval()

    the syntax on that is so poorly formed it's a wonder that it executes, at all.
    the first parameter in the setInterval() function is supposed to be a function
    name to call. attached to your button try:
    on(rollOver){
    qwer=setInterval(scrollF,1000);
    }
    and attached to a frame use:
    function scrollF(){
    correctpath.sometextbox.scroll++;
    }

    kglad Guest

  4. #3

    Default Still having problems with setInterval()

    You cannot use commas in Numbers. Try 1100 instead!
    Zanzlanz Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139