setInterval: been there, done that

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

  1. #1

    Default 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 movie clip) actions i have written:
    on (rollOver)
    {
    qwer=setInterval(scrollF,1000);
    }

    and in its frame i have written:
    function scrollF(){
    {
    correctpath.sometextbox.scroll++;
    }

    but it DOESN'T WORK. Please point to a working example.

    Thanks and sorry to bother you

    geut Guest

  2. Similar Questions and Discussions

    1. 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....
    2. 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...
    3. SSA setInterval issue
      I'm currently having problem's even with a freshly installed flashcom pro + patch 2 to bring it to--> 1.5.2 r138 on a VHost. The interval dies...
    4. problems with setInterval()
      i try doing something like this: on (press) { var intervalID; intervalID=setInterval(asdf(), 100); } function asdf() { //something; }
    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: setInterval: been there, done that

    here you go.
    kglad 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