A Flash Developer Resource Site

Results 1 to 8 of 8

Thread: MP3 Player 3DFA STYLE!!!

  1. #1
    Member
    Join Date
    Jul 2006
    Location
    Virginia
    Posts
    35

    MP3 Player 3DFA STYLE!!!

    Does anyone know the breakdown to creatin' an MP3 player on 3DFA... I created an awesome player UI, just not too clear on how to script the functions... Any help would be GREATLY appreciated...

  2. #2
    3DFA hobby scripter LewxX²'s Avatar
    Join Date
    Jul 2006
    Location
    Germany, Karlsruhe
    Posts
    198
    I have tryed to create one:
    LewxX's mp3 player BETA
    (the music is made by me => it's crap ^^)
    Last edited by LewxX²; 07-19-2006 at 12:33 PM.
    sorry for my bad school English
    btw. visit my Page: projects.lewxx.de
    or lewxx.de (<= German)

  3. #3
    Senior Member sadako232's Avatar
    Join Date
    Mar 2006
    Posts
    153
    Quote Originally Posted by LewxX²
    I have tryed to create one:
    LewxX's mp3 player BETA
    (the music is made by me => it's crap ^^)



    Once again LewxX² Impressive work and those beats are frikken sweet better than what i could do. what program do you use to edit them with? adobe audition? goldwave? or something totally different?


    -sada-

  4. #4
    Member
    Join Date
    Jul 2006
    Location
    Virginia
    Posts
    35
    Sweet beats LewxX²!!! Listen, I just need some help on the basic scripts so that I can apply them to my player... I mean, I'm sure there pretty simple, but I'm still new to the 3DFA & FLASH game all together.

  5. #5
    3DFA hobby scripter LewxX²'s Avatar
    Join Date
    Jul 2006
    Location
    Germany, Karlsruhe
    Posts
    198
    ^^ thx.
    @sadako232: I had used "MAGIX music maker 2005" for that

    @freakan_rican:
    My mp3 player is very old and has a bad Code. I think a will make a better one with improved Code, but untill that the bad sript:

    Starting Script:
    Code:
    song = new Sound;
    song.loadSound ("www.domain.com/songs/title.mp3", streaming);
    load==0;
    Script that runs every Frame:
    Code:
    if (song.getBytesLoaded()/song.getBytesTotal() == 1 && load==0){
    load =1;
    song.stop();
    song.start(0);
    }
    Button Break:
    Code:
    pos = song.position;
    song.stop();
    Button Play:
    Code:
    song.start(pos/1000);
    Button Stop:
    Code:
    pos = 0;
    song.stop();
    Spool Code (klick on progressbar):
    Code:
    song.stop()
    pos = (song.duration*(mouseX()-'progessbar beginning point'))/'progessbar length'
    song.start(pos/1000)
    change volume:
    Code:
    song.setVolume ('value') // value 1-100
    I hope this helps
    Last edited by LewxX²; 07-19-2006 at 12:32 PM.
    sorry for my bad school English
    btw. visit my Page: projects.lewxx.de
    or lewxx.de (<= German)

  6. #6
    Game Master ConnELITE's Avatar
    Join Date
    Apr 2005
    Location
    United States, DC
    Posts
    474
    ha, I use magix music maker too.
    BC

  7. #7
    Senior Member
    Join Date
    May 2005
    Posts
    163
    There is an Audio Player with source in the Lopez sticky at the top of the forum.

  8. #8
    Member
    Join Date
    Jul 2006
    Location
    Virginia
    Posts
    35
    Wow, I actually use "Fruity Loops 6 XXL (Producer edition), Acid Pro, Sound Forge" & for additional effects, I use "Audition". I've used Magix, it's a cool tool... Thanks for the heads up on the codes LewxX²... Much RESPECT!!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center