A Flash Developer Resource Site

Search:

Type: Posts; User: podenphant

Page 1 of 20 1 2 3 4

Search: Search took 0.26 seconds.

  1. Replies
    1
    Views
    931

    Hi, No, it's not possible since you have to...

    Hi,

    No, it's not possible since you have to have them on the stage before you can access any variables inside them.

    //pf
  2. Hi, Instead of a timeline animation you could...

    Hi,

    Instead of a timeline animation you could do this.

    If your movieclip instance name is mill

    mill.rotSpeed = 2;
    mill.onEnterFrame = function(){
    this._rotation+=this.rotSpeed
    }
  3. Unexpected file format after network breakdown

    Hi,

    I was working on a flash 8 file placed on a network drive.
    The network broke down and now I get an "Unexpected File format" error.

    I can open other .fla files.
    I can't open the file in...
  4. so, you've got it covered? //inaphlash

    so, you've got it covered?

    //inaphlash
  5. Replies
    4
    Views
    417

    eval is so last decade :smoov:

    eval is so last decade :smoov:
  6. Sounds like a solution! I guess we're not...

    Sounds like a solution!
    I guess we're not supposed to blindly spray functions all around the place ...

    If your push the interval name into an array you can loop through the array clearing the...
  7. Replies
    4
    Views
    417

    Looks like you're way off ... You cannot...

    Looks like you're way off ...

    You cannot concatenate actions

    To load a variable swf ...
    var url = "http://www.blah.com/movie.swf"
    _root.stageMC.slide1.loadMovie(url)

    To load a variable...
  8. Nope! I usually clear an Interval just before...

    Nope!

    I usually clear an Interval just before it is set!

    function startTimer(){
    clearInterval( intervalID );
    var intervalID:Number = setInterval(callback, 1000);
    }

    //poden
  9. Replies
    2
    Views
    354

    Hey, If you're loading external swf's you can...

    Hey,

    If you're loading external swf's you can use
    _mc.loadMovie("mov.swf?"+Random(999999))

    you can prevent caching in your embed code by inserting a javascript random in a variable in the...
  10. Replies
    4
    Views
    392

    Hi, A lot of different stuff could be wrong....

    Hi,

    A lot of different stuff could be wrong.
    You'll need to post some of your code or your .fla

    //poden
  11. Replies
    2
    Views
    1,375

    Hi jimmyobob, Like I wrote Values for...

    Hi jimmyobob,

    Like I wrote [QUOTE]Values for length, depth and height stored in a product array./QUOTE]

    Anyroad ... I found a .fla at Senoculars place (http://www.senocular.com/) from an...
  12. Hey, onClipEvent (enterFrame) { if...

    Hey,


    onClipEvent (enterFrame) {
    if (this.hitTest(_root.blue_car) && once != 1) {
    _root.laps++;
    once = 1;
    trace(_root.laps);
    if (_root.laps==3){
    this._parent.gotoAndStop(2);
  13. Hi, Check out the loadVars class in your help...

    Hi,

    Check out the loadVars class in your help file or search the forum for loadVars

    //poden
  14. Replies
    3
    Views
    1,847

    Hey, Reuse the movieClip that has the numbers...

    Hey,
    Reuse the movieClip that has the numbers from 0-9 and line them up next to each other.

    |digit4_mc|digit3_mc|digit2_mc|digit1_mc|

    myNum = 2345

    var IntDigit1 =...
  15. Replies
    2
    Views
    505

    post your fla and perhaps someone will give it a...

    post your fla and perhaps someone will give it a go!
    //poden
  16. anyone??? please??? :P

    anyone??? please??? :P
  17. 3B box trigonometry question ... experts?

    Hey

    I just checked out an excellent 3D tut here
    http://www.codylindley.com/Tutorials/trigonometry/

    I'm trying to point out the 8 x and y postitions in a box ...
    Perspective depth is not...
  18. Replies
    1
    Views
    2,223

    3D Box trigonometry question

    Hey

    I just checked out an excellent 3D tut here
    http://www.codylindley.com/Tutorials/trigonometry/

    I'm trying to point out the 8 x and y postitions in a box ...
    Perspective depth is not...
  19. Replies
    2
    Views
    1,375

    3D trigonometry question - Experts??

    Hi,

    I have a bunch of products that are attached from the library. All are exported from 3D models and are placed in 0,0 in their respective MC's and cropped as tightly as possible.
    Values for...
  20. Hi ... If you have tried all that and it stille...

    Hi ... If you have tried all that and it stille doesn't work ... please attech the files to let us nose around.

    //poden
  21. Replies
    1
    Views
    512

    hi ... You can't download an image from a...

    hi ...
    You can't download an image from a swf-file. Nor can you place an image in the users clipboard.
    You could use a getURL to link to the file.

    //poden
  22. Hi, I use SWF studio from...

    Hi,

    I use SWF studio from http://www.northcode.com/
    SWF studio can do this and a kazillion other stuff ... check it!

    //poden
  23. Replies
    5
    Views
    1,162

    I split the values into an array ......

    I split the values into an array ...
    528;585;306;337;569;851;1015;964;912;692;918;635

    In a loop the values are converted to numbers
    arrValues[i] = Number(arrValues[i])

    Do you think this could...
  24. Replies
    5
    Views
    1,162

    note the decimal sign in the BAD version. It...

    note the decimal sign in the BAD version.
    It only fails on some PC's that in a way percieves 1015 as 1.015 ... so it seems to be a system issue!
  25. Replies
    5
    Views
    1,162

    Decimals, Digit grouping

    Hi,

    Working with dynamic drawing af graphs I'm experiencing some problems with.
    Decimals.

    Basicly text-files are loaded into an app that draw a chart

    the text file looks like this ...
    ...
Results 1 to 25 of 482
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center