A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: mp3 player and picture

  1. #1
    Junior Member
    Join Date
    Nov 2005
    Posts
    4

    mp3 player and picture

    I have several sermons on a remote server.
    I want to select a sermon, play it, and pop up the minister's picture while it is playing.
    There are several ministers as well as sermons to choose from.
    Can I download one of the players and incorporate the picture?
    Thanx,
    coach

  2. #2
    Banned NTD's Avatar
    Join Date
    Feb 2004
    Posts
    3,438
    Hi,

    I havn't seen many MP3 players that incorporate images. I have one but it is geared more for bands to demo original music and display thier own custom album covers. It would not be difficult to achieve on a smaller scale. In the same manner you load the external MP3 files, load corresponding images. It would probably be easiest to organize using arrays. Maybe something like...
    code:

    mySounds=["Sound1","Sound2","Sound3"];

    myImages=["Image1","Image2","Image3"];

    mySound=new Sound(this);
    mySound.loadSound(mySounds[0]+".mp3",true);

    myImageHolderMC.loadMovie(myImages[0]);



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