A Flash Developer Resource Site

Search:

Type: Posts; User: boltUpright

Page 1 of 3 1 2 3

Search: Search took 0.06 seconds.

  1. Replies
    0
    Views
    393

    Flash MX Advanced Calendar Component

    I would like to integrate a tooltip style popup to display the cell data on the Advanced Calendar Component. Can anyone advise on how to set up an additional change handler or some other type of...
  2. Efficiently Managing Large Amounts of Undetermined Data

    I am in the process of building a site framework that is going to be home to a large amount of data. This information is going to reside in a database and provided to flash via ASP. The information...
  3. Replies
    5
    Views
    433

    Thanks for that... Just got time to look through...

    Thanks for that... Just got time to look through it and I can definitely apply it to my situation. Thanks again.
  4. Replies
    5
    Views
    433

    I see your example, and can see that it...

    I see your example, and can see that it eliminates the problem, but I am not exactly sure how you are accomplishing it. I understand the LocalConnection going on there, but I really don't understand...
  5. Replies
    5
    Views
    433

    I am experiencing the same problem and came here...

    I am experiencing the same problem and came here looking for answers. I tried your example and it exhibits the same problems as you listed. If I click 4, then 2 and use the back button repeatedly,...
  6. Replies
    2
    Views
    386

    Thanks for that... I'll check it out.

    Thanks for that... I'll check it out.
  7. Replies
    2
    Views
    386

    Fuzzy Memories -- Math Class

    Once apon a time, many years ago on a Thursday afternoon, I was sitting in math class and daydreaming... thinking 'when in the hell am I going to need to know this?' ... Surprise... now.

    Anyway,...
  8. Replies
    16
    Views
    865

    I use html text all the time, in almost every...

    I use html text all the time, in almost every flash project I've done... The secret is...

    Don't embed the font outlines in the dynamic textbox!!!

    Embedding the font outlines locks the textbox...
  9. Replies
    11
    Views
    425

    I've noticed what you're talking about. MX...

    I've noticed what you're talking about. MX doesn't seem to treat a loading image the same way it treats a loading movieclip. The getBytesLoaded() vs. getBytesTotal() test doesn't seem to work right...
  10. Replies
    16
    Views
    622

    Ok... Here's an updated version. I created a...

    Ok... Here's an updated version. I created a function called answer that each of the buttons needs to call. The syntax is:



    on(release){
    _root.answer(1);
    }

    for a correct answer and
  11. Replies
    16
    Views
    622

    Ok, think it is ok now... I've been testing it...

    Ok, think it is ok now... I've been testing it some and it looks like it is working right... The problem was that the timers weren't getting reset properly sometimes. I'm re-attaching your file, but...
  12. Replies
    16
    Views
    622

    Here ya go. Glad it works for you.

    Here ya go. Glad it works for you.
  13. Replies
    16
    Views
    622

    yeah, that's definitely do-able... I'm not at my...

    yeah, that's definitely do-able... I'm not at my computer right now, but I'll add that in as soon as I get there. How long do you want to prompt box to display before it goes back to start?
  14. Replies
    16
    Views
    622

    This is basically what Cyanide is talking...

    This is basically what Cyanide is talking about... it is pointless to check the mouse movement every single frame to see if it is stopped. I used setInterval to call a function every 10 seconds. If...
  15. Replies
    3
    Views
    362

    Evidently I'm not missing anything. I know how...

    Evidently I'm not missing anything.

    I know how attachMovie works and I know how duplicateMovieClip works.

    If you look at the syntax for those functions, you will see:
    ...
  16. Replies
    3
    Views
    362

    Passing an object to a movieclip

    Maybe I'm missing something here, but is there a way to send an Object into a MX movieclip that was created at design time? I know you can do it with attachMovie and duplicateMovieClip, but I can't...
  17. Replies
    7
    Views
    432

    Not a problem... That's what this place is here...

    Not a problem... That's what this place is here for. I've done that a few times... I'm always too quick to blame Flash when the problem lies elsewhere but what can you do... 90% of the time, it IS...
  18. Replies
    7
    Views
    432

    I just took a look at your link, and it looks...

    I just took a look at your link, and it looks like it works if you edit the passed values directly in the URL, so I think your Flash is ok. View source on the html page after you submit the form once...
  19. Replies
    7
    Views
    432

    I'm not exactly what you're trying to...

    I'm not exactly what you're trying to accomplish... this looks good syntax wise, but you are setting left.fill._alpha in either case... don't know if that's what you're intending, but if direction is...
  20. Replies
    7
    Views
    432

    Variables on the query string are sent into flash...

    Variables on the query string are sent into flash as strings, so the == operator won't compare them properly as it only works with numbers.

    Try using



    if (alphaprop eq "1") {...
  21. Replies
    2
    Views
    436

    Just do: loadMovie(tag01+".swf"); or add...

    Just do:

    loadMovie(tag01+".swf");

    or add the swf extension to the tag01 variable like

    tag01 = "homepage.swf";

    loadMovie(tag01);
  22. Replies
    19
    Views
    557

    Yes, I tried it... I'm attaching your original...

    Yes, I tried it... I'm attaching your original set of files modified with the changes. There were two, actually... One is changing

    _root.loadMovie("MC-Clip.swf","MCimport");

    to just...
  23. Poll: Variables can't be numbers.... use btn001,...

    Variables can't be numbers....

    use btn001, btn002, etc.
  24. Replies
    1
    Views
    394

    One way would be to set a cookie using...

    One way would be to set a cookie using javascript, either at the end of the flash banner's timeline (which would require that the visitor stay on the page long enough for the animation to finish) or...
  25. Replies
    19
    Views
    557

    Did you get something working?? The problem with...

    Did you get something working??
    The problem with your example is that you are loading MC-Clip.swf into MCimport. It is loading it fine when the button is pressed. MC-Clip.swf is loading the...
Results 1 to 25 of 73
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center