A Flash Developer Resource Site

Search:

Type: Posts; User: RobbieC

Page 1 of 10 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    4,244

    I was thinking along this line: track1.text...

    I was thinking along this line:


    track1.text = myXML.my_songs[i].@TITLE;
    track2.text = myXML.my_songs[i].@TITLE;
    track3.text = myXML.my_songs[i].@TITLE;
    track4.text = myXML.my_songs[i].@TITLE;...
  2. Replies
    2
    Views
    4,244

    multiple dynamic texts from XML

    Hi there, I'm making a little music player which runs from XML. I've got it completely working, but I want to populate 4 lines of dynamic text with the 4 song titles from the XML... and I can't get...
  3. Replies
    3
    Views
    1,504

    Of course... Thank you my friend - my brain must...

    Of course... Thank you my friend - my brain must have been asleep yesterday!!! doh!
  4. Replies
    3
    Views
    1,504

    if statement from flashVars...

    Hi, this is probably ridiculously simple, but I can't fathom it out...

    I have a line of dynamic text called 'locationVar' which is populated as uk, usa, etc from flashVars. This works fine.

    I...
  5. Replies
    1
    Views
    2,598

    members login authentication...

    Hi there, I've got a members area which uses php authentication connectiong to MySQL. Inside, I have a series of flash movies (AS2) which I need to protect in the same manner as the members area...
  6. loading and unloading multiple external swf's

    Hi there, I'm making a flash file for a website that has multiple pages (20 pages).

    Along the timeline (1-20) I have the following code:


    stop();

    var request:URLRequest = new...
  7. Replies
    1
    Views
    1,470

    Ok, I can get the soundclip to play on the...

    Ok, I can get the soundclip to play on the timeline by using the 'linkage' feature in properties and using this code on the timeline:
    var mySound:Sound = new intro_music();
    mySound.play();Just...
  8. Replies
    1
    Views
    1,470

    fading out an embedded mp3...

    Hi, I have an mp3 on the timeline (which is 30secs long), but I'm looking to fade it out using actionscript as the timeline moves along... I was able to do this with AS2 using:
    s = new Sound( );...
  9. converting a couple of lines of AS2 to AS3...

    Hi, I'm having to revisit an 'old' movie I made in AS2 back in the stoneage, and I'm re-writing it in AS3, but I have a couple of bits of code that I'm struggling with...

    Firstly, It's a...
  10. Great stuff, thanks mate - I will have a play...

    Great stuff, thanks mate - I will have a play with that today :)

    Rob
  11. loading movies from library into movieclip...

    hi there, I have a series of movies in my library (called page1, page2, page3... page87) and I'm looking to load the first one into a blank movie (called pageHolder).

    Using 'next' and 'previous'...
  12. brilliant MultiHunter :) to the rescue again! ...

    brilliant MultiHunter :) to the rescue again!

    Thanks for your help buddy
  13. Replies
    3
    Views
    706

    that's wicked mate - I was pretty close with my...

    that's wicked mate - I was pretty close with my first attempt, but my syntax was not quite there...

    Thanks very much again!

    Rob
  14. Just one more thing on this topic.... Is it...

    Just one more thing on this topic....

    Is it possible using Math.random() to set the start number between 0 and 'numberOfImages' randomly?

    ie. randomize the first image that is shown, then...
  15. Replies
    3
    Views
    706

    I've found I can get round the problem with a...

    I've found I can get round the problem with a whole lot of 'if' statements:


    function LinkFunction(e:Event)
    {
    var linkButtonVar:URLRequest=new URLRequest();

    if (linkNumber.text == 0) { ...
  16. Replies
    3
    Views
    706

    'dynamically' retrieving xml data...

    Hi there, I'm experimenting with data retrieval from xml spreadsheets. I have 5 links in the xml labelled:

    <link0>index.html</link0>
    <link1>about.html</link1>
    <link2>portfolio.html</link2>...
  17. Awesome stuff chaps, got it all working now :) ...

    Awesome stuff chaps, got it all working now :)

    Thanks for all your help and enlightenment

    Rob
  18. thanks Multihunter, I was thinking along that...

    thanks Multihunter, I was thinking along that line earlier, but it comes up with an error:

    1176: Comparison between a value with static type uint and a possibly unrelated type String.
  19. [RESOLVED] checking dynamic numbers in a loop...

    Hi there, I'm having a bit of trouble with a script to check a 'dynamic number'...

    Basically, I've got a movie which plays in a loop and each time it goes around, it clicks up a number, which I...
  20. Replies
    3
    Views
    4,026

    Thanks dawonk - I've never really got my head...

    Thanks dawonk - I've never really got my head 'round these firstChilds & nodes... :S
  21. Replies
    3
    Views
    4,026

    The crazy thing is, is that I can suss out how...

    The crazy thing is, is that I can suss out how this works in AS3...

    var my_req:URLRequest=new URLRequest("externalXML.xml");
    var my_loader:URLLoader = new URLLoader();
    var my_xml:XML;
    ...
  22. Replies
    3
    Views
    4,026

    AS2 xml to dynamic text...

    Hi, I'm trying to import some xml data and display it as dynamic text...

    This is my simple xml:
    <?xml version="1.0" encoding="utf-8"?>
    <boardContent>
    <boardTitle>Whats On This...
  23. Replies
    8
    Views
    10,018

    Awesome stuff Prof, thanks very much!!!

    Awesome stuff Prof, thanks very much!!!
  24. Brilliant, thanks dawsonk. I was so close, but as...

    Brilliant, thanks dawsonk. I was so close, but as always with these things, so far away...
  25. populating multiple text boxes from xml...

    hi there, I'm stuck on a xml/dynamic text box issue... I can get a single dynamic text box to populate using this actionscript:
    var my_req:URLRequest=new URLRequest("info.xml");
    var...
Results 1 to 25 of 242
Page 1 of 10 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center