Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Simple music player

  • 27-08-2005 04:34PM
    #1
    Closed Accounts Posts: 2,639 ✭✭✭


    Hi there, I'm in the process of designing a new website and want to include a simple flashed basic music player for the corner of the screen, nothing fancy, just one background song with a flash button for stop/start. Now I am familiar with Flash as I've had it on my computer since I've had it, I'm very familar with programming as I know a few languages. The thing is, I find taking the initial plunge with Flash & ActionScript impossible! Anyone know how I can learn a basic amount of Flash to help myself make a simple music player? (I've already got books in Flash, Flash for dummies, Flash MX accelerated guide - both absolutely **** and no help at all)


Comments

  • Registered Users, Registered Users 2 Posts: 3,514 ✭✭✭Rollo Tamasi


    Laguna wrote:
    Hi there, I'm in the process of designing a new website and want to include a simple flashed basic music player for the corner of the screen, nothing fancy, just one background song with a flash button for stop/start. Now I am familiar with Flash as I've had it on my computer since I've had it, I'm very familar with programming as I know a few languages. The thing is, I find taking the initial plunge with Flash & ActionScript impossible! Anyone know how I can learn a basic amount of Flash to help myself make a simple music player? (I've already got books in Flash, Flash for dummies, Flash MX accelerated guide - both absolutely **** and no help at all)

    Hi laguna, to make a flash media player like the one you require is not as hard as it seems. Create two buttons, stop and play.

    The actionscript on the stop button would be:

    on (release){
    unloadmovienum("target_audio");
    }

    The actionscript on the play button would be:

    on (release){
    loadmovienum("soundfile.swf", "target_audio");
    }

    Now create a movie clip and drag it onto the main stage, give it an instance name of "target_audio" and thats it in a nutshell.


Advertisement