A Flash Developer Resource Site

Search:

Type: Posts; User: colbydev

Search: Search took 0.02 seconds.

  1. gotoAndPlay() and gotoAndStop() have an optional...

    gotoAndPlay() and gotoAndStop() have an optional parameter for scene, i.e. gotoAndPlay(scene, frame);
  2. Thread: Dynamic text

    by colbydev
    Replies
    4
    Views
    912

    Flash uses a url-encoded syntax to display...

    Flash uses a url-encoded syntax to display variables loaded from external files. within url-encoding there are some reserved characters including '%' and '&'.

    to display these characters you need...
  3. Replies
    2
    Views
    295

    try this: for(i = 1; i < 32; i++) {...

    try this:


    for(i = 1; i < 32; i++) {
    this.['day' + i] = {label: i, data: i};
    }
  4. for your second question, I think you are talking...

    for your second question, I think you are talking about scope. You can have pretty much any movieClip (or buttons) perform actions on other movieClips using the proper address. for instance if I have...
  5. to answer your first question, you can either...

    to answer your first question, you can either name the frames you want to go to, using the property inspector, or reference them by their frame numbers.

    Either way you are going to use...
  6. Replies
    2
    Views
    886

    in a function, "this" is representative of where...

    in a function, "this" is representative of where the function resides. but has some unexpected results when functions are nested. For further reading, you are talking about the Scope of variables and...
  7. Which file is referenced in the HTML? Are you...

    Which file is referenced in the HTML?

    Are you loading the assets swf into the master swf?
  8. Thread: ClickTag

    by colbydev
    Replies
    6
    Views
    636

    put this in frame 1 on the main timeline. where...

    put this in frame 1 on the main timeline. where myButton is the instance name of your button.



    myButton.onRelease {
    getURL(_root.clickTag, “_top”);
    }


    additionally, clickTag must be...
  9. Replies
    2
    Views
    457

    I ran into this bug when using IE and...

    I ran into this bug when using IE and LoadVars.load

    The best solution I came up with was to create a "throw away" loadVars then use sendAndLoad. It works consistently now.
  10. After reading the F******* post I think you may...

    After reading the F******* post I think you may have another problem. You need to add a Video object to stage given the instance name "vidPlayer", not an FLV.

    --
    how are you adding your video to...
  11. Replies
    2
    Views
    795

    for the slide show, at the end of the timeline...

    for the slide show, at the end of the timeline you could add
    _root.gotoAndPlay(1);

    and similarly for the flvs you could create a netstream event handler.



    netstream.onStatus =...
  12. I was tackling a similar problem, and you can...

    I was tackling a similar problem, and you can have the movies load in a queue, you'll just have to load them in separate netstream objects. For instance:
    figure out a way to determine the order of...
  13. Replies
    1
    Views
    352

    is your thumbnail a still or an flv or is it an...

    is your thumbnail a still or an flv or is it an animated swf? In any case, you can load these all into your main swf dynamically just like the videos. I would make a template MovieClip and load your...
  14. Replies
    0
    Views
    1,476

    www.californiaavocado.com - funny

    Shameless self plug.

    Full bleed flash with video, and it's funny to boot. Check it out.
Results 1 to 14 of 14




Click Here to Expand Forum to Full Width

HTML5 Development Center