Linking My Music Player To My Website
Hi, i am having some problems linking my mp3 player swf file to my website. It looks like it loads fine, and the buttons work and change the track of the song, but there is no sound heard or played. Here is the code i used to do this: action script: var sound_obj = new Sound();sound_obj.onSoundComplete = playSong;sound_obj.setVolume(75);var artist_array = new Array();var track_array = new Array();var url_array = new Array();var current_song = -1;var pos;// ----------------------------------------------------------- XMLvar xml_obj = new XML();xml_obj.ignoreWhite = true;xml_obj.onLoad = function() { var nodes = this.firstChild.childNodes; for (var i=0;i<nodes.length;i++) { artist_array[i] = nodes[i].attributes.artist; //here we need separate arrays for each attribute, and we're relying on the assumption that if track_array[i] = nodes[i].attributes.track; //they all share the same index number then we don't need to keep track of their position url_array[i] = nodes[i].attributes.url; //the credits.js example from Assignment 2 worked like this } playSong();}xml_obj.load("audio/songs.xml");// ----------------------------------------------------------- playSong()function playSong() { sound_obj = new Sound(); sound_obj.onSoundComplete = playSong; if (current_song == url_array.length - 1) { current_song = 0; sound_obj.loadSound(url_array[current_song], true); } else { current_song = current_song + 1; sound_obj.loadSound(url_array[current_song], true); } trackInfo.text = artist_array[current_song] + " - " + track_array[current_song]; playPause.gotoAndStop("pause");}// ----------------------------------------------------------- prevSong()function prevSong() { sound_obj = new Sound(); sound_obj.onSoundComplete = prevSong; if (current_song == 0) { current_song = url_array.length - 1; sound_obj.loadSound(url_array[current_song], true); } else { current_song = current_song - 1; sound_obj.loadSound(url_array[current_song], true); } trackInfo.text = artist_array[current_song] + " - " + track_array[current_song]; playPause.gotoAndStop("pause");}// ----------------------------------------------------------- stopSong()function stopSong() { sound_obj = new Sound(); sound_obj.onSoundComplete = prevSong; if (current_song == 0) { stop(); } else { stop(); } trackInfo.text = artist_array[current_song] + " - " + track_array[current_song]; playPause.gotoAndStop("pause");}// ----------------------------------------------------------- Pause Functionsfunction pauseIt() { pos = sound_obj.position; sound_obj.stop();}function unPauseIt() { sound_obj.start(pos/1000);}// ----------------------------------------------------------- Play/Pause ButtonplayPause.onRollOver = function() { if(this._currentframe == 1) { this.gotoAndStop("pauseOver"); } else { this.gotoAndStop("playOver"); }}playPause.onRollOut = function() { if(this._currentframe == 10) { this.gotoAndStop("pause"); } else { this.gotoAndStop("play"); }}playPause.onRelease = function() { if(this._currentframe == 10) { this.gotoAndStop("playOver"); _root.pauseIt(); } else { this.gotoAndStop("pauseOver"); _root.unPauseIt(); }} // ----------------------------------------------------------- Next Buttonnext.onRollOver = function() { this.gotoAndStop("nextOver");}next.onRollOut = function() { this.gotoAndStop("next");}next.onRelease = function() { _root.playSong();} // ----------------------------------------------------------- Prev Buttonprev.onRollOver = function() { this.gotoAndStop("prevOver");}prev.onRollOut = function() { this.gotoAndStop("prev");}prev.onRelease = function() { _root.prevSong();}// ----------------------------------------------------------- Prev Buttonstop_now.onRollOver = function() { this.gotoAndStop("prevOver");}stop_now.onRollOut = function() { this.gotoAndStop("prev");}stop_now.onRelease = function() { _root.stopSong();} html: <object data="flash/player.swf" type="application/x-shockwave-flash" width="500px" height="500px"> <param name="player" value="flash/player" /> <param name="wmode" value="transparent" /> </object> As i said before, the player loads up and shows up on the website with no errorsand the buttons work (going to next or previous song as well as the pause and play buttons pausing and playing the music properly), but no sound can be heard. (this is being test on the latest version of firefox).
KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 07-25-2008, 12:28 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Music Player For A Website
Does anybody have a good and efficient juke box example or tutorial that plays entire songs. 56K users concern me when it comes to playing more than one full song. Comments or suggestions regarding this are also appreciated.
thanks in advance
Music Player Like Website
I would like to make a flash music player like this one on my website: http://www.headmagazine.co.uk/home.htm (click on the gallery to see it). I don't understand how they made one button have two actions. I currently downloaded a mp3 player from here that i modified to my needs but you have to have on button that plays and one button that stops the music. How do you make one button that plays and stops the music like at this site? Code would be helpful.
Currently my action scripts looks like this:
Code:
i=0;
sonando="false";
listaCanciones= new Array("songs/1.mp3","songs/2.mp3","songs/3.mp3","songs/4.mp3","songs/5.mp3","songs/6.mp3");
sonarCancion();
equal_mc.gotoAndPlay("play");
equal1_mc.gotoAndPlay("play");
equal2_mc.gotoAndPlay("play");
function sonarCancion(){
if (sonando=="false"){
song.stop();
song=new Sound();
song.loadSound (listaCanciones[i],true);
song.setVolume(30);
song.onSoundComplete=function(){
song.loadSound (listaCanciones[i],true);
song.setVolume(30);
}
equal_mc.gotoAndPlay("play");
equal1_mc.gotoAndPlay("play");
equal2_mc.gotoAndPlay("play");
sonando="true";
} else {
song.stop();
sonando="false";
}
}
function pararCancion(){
song.stop();
sonando="false";
equal_mc.gotoAndPlay("stop");
equal1_mc.gotoAndPlay("stop");
equal2_mc.gotoAndPlay("stop");
}
function siguienteCancion(){
if (i<(listaCanciones.length-1)){
i++;
}else {
i=0;
}
sonando="false";
sonarCancion();
}
function anteriorCancion(){
if (i>0){
i--;
}else{
i=listaCanciones.length-1;
}
sonando="false";
sonarCancion();
}
I have named the stop object stop_bnt with the :
Code:
on (release) {
pararCancion();
}
action script attached to it
and the play object is named as play_btn:
Code:
on (release) {
sonarCancion();
}
with this action script attached.
Thanks for the help
tobiko
Trying To Set Up Music Player For Website
Hi All.
I'm looking to include a flash music player on my website ut have no idea how. I basically intend for either a standalone player (in a pop-up window), or a player that stays on the top/bottom of the website irregardless of if the user changes pages or not.
All i (think i) know is i need a flash player and need to embed it in the website page. If anyone can help me on where to get such a player, and how to embed it in the website html, I will be extremely grateful.
Many thanks
Martin
How Do I Add Music To My Website Without Having A Player There?
Ok, so I want to add music to my website, but I don't want to have a player on there. I've seen a lot of flash sites that have what I want, like this one here: http://www.idigitalemotion.com/main.html
Now, I know NOTHING about Flash, but I'm assuming that I'll need to use it in order to do what I want. I want the music to play right when the page loads, and then to be able to turn it off by clicking on a button. I have "on" and "off" buttons on my website at www.noahneiman.com but will I have to change them?
T.I.A.!
Linking Music Player 2 A Wav File
i got the cleo player and i dont want to use a sound loop, i can convert wav's into 0.5 mb files, if the cleo player was in the same directory as for exmple the wav file named fight.wav is it possible to link it this wav file and allow the flahs player 2 control it , including stop, play , etc can anyone please help? my email is moreph@hotmail.com and ill check here 2
http://www.angelfire.com/d20/moreph0/cleoplayer.fla
thats the link 4 the open source fla its 0.5 mb 2 .
tx
Flash Music Player For Website
Hi,
How do you add a Flash music loop player to a website?
Here is an example of a site w/a loop player:
Website with a Flash music loop player
What kind of code is involved? I am moderately versed in HTML, CSS, and a tiny bit of Javascript.
Thanks!
Music Player For Flash Website...
HI!
I like the mp3 player on this website:
http://iso50.com/iso50.html
Does any one know where i can get somethign similar or create one with a tutorial? I like its simplicity and the buy CD option, and the cycling through to other tracks.
Any helpful comments will be very highly appreciated!
JD
How To Put Music Player On My Flash Website.
Hi,
Can anyone help me put this music player on my flash website.
Like the one found on the premiumbeat website
premiumbeat.com under free music player.
Im using Flash CS3 actionscript 3.0. I have build the website I just want to put the music player
on my home page. The explanation on the website doesn't really help.
All help greatly appreciated.
Incorporating Flash Music Player Into Website
I am interested in putting a little flash music player (jukebox) on my website - I've already made the player which works fine but...
I'm wondering the best way of incorporating the player into my website so that it will load and play (without reloading) across different pages.
Is the only way to achieve this by using frames - i.e. the flash player is in a frame which doesn't change, and the content is another frame?
Personally, i'm not a big fan of frames, so if there is an alternative to getting the flash to carry on without reloading, that'd be great to hear
thanks
How To Change Buttons On Music Player Depending On Whether Music Is Playing Or Stoppe
When my music is playing, I want my play button to be blackened in. When the music is stopped, I want my stop button to be blackened but my play button to go back to it's original state.
Right now, when my cursor is over the button, it will change the rollover state. That's easy to do.
How can this be accomplished...do i need multiple layers?
Kallok Music Player V.1.0 (stand Alone Flash Mp3 Player)
Hello! Ive been working on a flash music player that will be able to play music on a website or you can use it as a stand alone player.It is expected to come out late July.It will be a free player,possibly a ultra version for about 5.00 sometime after v.1 comes out.Hopefully people will like this I already got a lot of work into it. If you wanna see a preview of what it loks like (non working) go to http://www.k-player.cjb.net .If anyone is interested in adding or helping out email me at webmaster@sei-inc.com !My webdesign site is being rebuilt but it will be kallok.com.More info about that some other time.
Music For A Website
I want my visitors of my website to be able to pick from 3 songs and a mute button to choose which music to play in the backround, i already made the buttons, and what they do when i click them but i need to know how to add the actions, if somenoe could send me a link to a tutorial or if u could tell me.
Thnx
-Stoned Raiders Will Over Flow-
Website Music
how can i put diffrant tunes on a website in flash mx so that the user can siply choose what track they want toplay or turn it of???
Music For A Website
I searched for Royalty Free music on google...man, THE worst stuff came up. Does anyone know where I can get some music (the style would be like 'Moby') for free or with a fee. Just need good music that would loop every couple of minutes
Music For Website...
Hey all, I was wondering if there's any site out there that offers music to be used on websites? I don't mean the loops on flashkit, I'd like some higher quality music that has lyrics to it. I'd be more than willing to pay for the music's use or get in touch with the artist and discuss payment options, but I can't seem to find any site out there that offers this feature. Please let me know if there is anything out there that covers this function :, I'm running out of time and ideas. Thanks.
-Stephen
P.S. it would help greatly if they had rap/hip-hop music on the site. Thanks again.
Music For My Website
Hi everybody,
I do not know if this is the right forum for my question, but I will give it a try.
Can anyone suggest me where to look for cool music for a flash website. I see samples here all the time that use so cool music, and I wonder if there is any place where i could get some of that.
Thank you for your help!
Website Music
I've done some searching on the internet, and haven't found anything yet. Thought I'd post something here aswell.
I'm creating a website in flash, and I want to have some sort of background music on my site. Where visitors can control the volume and mute the music. Maybe also switch to another song.
Simple! As seen on many sites.
But my problem is, I don't know how to do this!?
If anyone's got a nice tutorial and or would help me otherwise, I would be very thankfull
Music For A Website
I searched for Royalty Free music on google...man, THE worst stuff came up. Does anyone know where I can get some music (the style would be like 'Moby') for free or with a fee. Just need good music that would loop every couple of minutes
Music For Website...
Hey all, I was wondering if there's any site out there that offers music to be used on websites? I don't mean the loops on flashkit, I'd like some higher quality music that has lyrics to it. I'd be more than willing to pay for the music's use or get in touch with the artist and discuss payment options, but I can't seem to find any site out there that offers this feature. Please let me know if there is anything out there that covers this function :, I'm running out of time and ideas. Thanks.
-Stephen
P.S. it would help greatly if they had rap/hip-hop music on the site. Thanks again.
Add Music To Website
I know this question has probably been asked a million times so don't feel bad just throwing a link at me.
Right now the webpage I have been working on is basically complete, a grand total of 1.71MB, over half of it being the song which plays on my website (via off and on button). I have no idea of that is a overly large size for a flash page, I was actually pretty pleased with that... But when i "view stream" and it simulates the download process and the preloader it takes FOREVER.
So to actually TEST it out I uploaded the site onto the internet and for some strange reason it never even began to load. The default IE bar on the bottom said it was loading something, and the icon in the top right was spinning... But no preloader, no numbers or bars.. Just the backround that I had assigned to my flash webpage.
I guess I could cut down the quality of my Mp3 but is that even the problem?
Thanks for reading that novel I just wrote, sorry it was so wordy,
Tyler Lucas
Linking Website To Cd
Please can anyone help? I wandered if anyone knew how to make a link from a flash website to the CD drive in either my own PC or any other computer. It is for an exhibition tomorrow, so it is important, and will appreciate any advice given.
Is this the best option, or do you think I should load the cd into the movie?
Website Linking
At the moment I'm trying to figure out to successfully create a web site using differnent swf files and have them link together without gaps and pauses in between.
progress so far is here
http://homepages.paradise.net.nz/johnmi/index.html
what i need to know is how you load a swf into another. Orginally I had 1 swf (using scenes) but that doesn't allow for separate downloading, so i split my pages into separate swf but i need them to load smoothly between keeping, graphics in place. Any tutorials or suggestions appreciated.
Linking Within My Website
Hi,
I've been struggling with linking different parts of my site to each other.
- I have 1 fla file with several scenes inside (homepage.swf) =1.2Mb. (after the main index page)
- Within one of these scenes I am also using loadmovie to import separate swf files as this is a photography site and it's heavy in pictures. This works ok.
My pb is that the main swf file - homepage.swf - takes too long to load and by the time the menu is up with buttons to link to the rest of the site, the browser hasn't finished loading and therefore it looses the plot and sends me to the next page available (and not the one I want).
I've inserted some preloaders which only seem to work on my computer (I'm working on that!) but even with those working, it still takes too long to load this first page...
Is there a way to tell Flash to only load one scene at a time perhaps??
I tried loading each swf separately with loadmovie on layers but there was a gap between swf's and I want the transitions to be smooth and I don't know how I can reduce the size any more as the images are now in separate files!
Sorry to be so confusing but you can look at my website if it makes more sense: www.clairetoche.com
Linking A .swf To A Website, Is It Possible?
hi everyone!
im new to flash and this site has been a great place for tutorials but i was wondering whether its possible to make a flash movie and then when it finishes playing, it links to a site. is it possible?
thanks in advance,
- theblahman -
Linking Within My Website
Hi,
I've been struggling with linking different parts of my site to each other.
- I have 1 fla file with several scenes inside (homepage.swf) =1.2Mb. (after the main index page)
- Within one of these scenes I am also using loadmovie to import separate swf files as this is a photography site and it's heavy in pictures. This works ok.
My pb is that the main swf file - homepage.swf - takes too long to load and by the time the menu is up with buttons to link to the rest of the site, the browser hasn't finished loading and therefore it looses the plot and sends me to the next page available (and not the one I want).
I've inserted some preloaders which only seem to work on my computer (I'm working on that!) but even with those working, it still takes too long to load this first page...
Is there a way to tell Flash to only load one scene at a time perhaps??
I tried loading each swf separately with loadmovie on layers but there was a gap between swf's and I want the transitions to be smooth and I don't know how I can reduce the size any more as the images are now in separate files!
Sorry to be so confusing but you can look at my website if it makes more sense: www.clairetoche.com
Linking To Website
Hello dear flash gurus,
I am new to this forum and have seen great deeds by just "browisng"
I am a complete newbie to flash, so please be patient with me.
I am currently working on an existing flash mx program and I am having trouble accomplishing 2 things:
1, I will like to know how to link the flash to my client's website?
The current process I am using is not working.
This is my current process:
I use text tool to create a name like Enter Site
I then double-click on Enter Site to go to properties.
Then I type in a website to link to like:
http://www.mysite.com/home.asp
For some reason, this is *not* going to the site.
I get page not found message.
Can someone please tell me how to do this?
Second problem is I am trying to make my movie loop infinitely.
It just plays once and stops.
Any help would be greatly appreciated.
Legal Music Linking?
So if I wanted to have music playing in the background of my company's website, is there any services or websites out there that allow for either linking to them, or playing music through them? I found a couple of free sound sites, but they say they are free for non-commericial use.
Im not really interested in "royalty free loops" that just play the same 20 second beat over and over. Id like either actual songs by either popular or unknown artists. Ideally, I wish pandora would let me put a "music player provided my pandora" music player on my site and let that stream from them, but I doubt that will happen.
Any idea?
Thanks!
Rich
Help....on Off Controls For Music In Website
Hi...I need help with being able to turn music back on when someone is in website. I have the off button working, but I cant figure out how to make the music start playing and not make the website jump back to where music was inserted to start in the first place.Just want people to be able to turn music off and an again anywhere in the website.....Any help????
Thanks!
Music Icon For Website
Does any body know where I can find an fla of small headphones rotaing in 3d to imply that music is playing on a website. Or better yet if there's a tutorial on how to do that in swift3d or something it'd be greatly appreciated.
thanks in advance
Music/Song For Website
Hi,
I need to purchase a song/music for my website. Please advise where I could purchase one. Please keep in mind this is NOT sound clips for button and clicking; I need an actual entire song.
Thank you!
Edited: 07/19/2007 at 10:09:42 AM by joesmithf1
How Do You Create Music To Your Website?
I tried to do it on one of my webpage and it worked fine but when I click to the next page, the music stops. How do i create the music flow throughout the whole website consistently without it stopping or repeating it from the beginning. Also, is it possible to create a preference button to stop the music ?
I'll appreciate any advise on this.
Thanks, everyone.
mavis
How Do You Create Music To Your Website?
I tried to do it on one of my webpage and it worked fine but when I click to the next page, the music stops. How do i create the music flow throughout the whole website consistently without it stopping or repeating it from the beginning. Also, is it possible to create a preference button to stop the music ?
I'll appreciate any advise on this.
Thanks, everyone.
mavis
Website Linking In Flash
I am a newbie & would like some major help!!! I have a general interface with menu buttons. Whenever I click on a button, I would like the content related for that button to appear on the interface. How do i do this?
THANK YOU SO MUCH!!!
Alex
Button Linking To Website
I've created an intro for my website. Everything is working perfectly however I'd like to add a feature that if any part of the intro flash file is clicked, it is skipped and the website opens. I created an invisible graphic that covers the entire area, and then converted it to a button. I'm having trouble with the scripting part of this, can anyone tell what action script I need to accomplish this? Thank you.
Linking Website To Symbols?
I'm trying to make my website so that when someone moves their mouse over certain text, the text changes colors and gets bigger.
So, I make it into a symbol, for example the word "Button".
For the up, its at size 30 font in blue, for the down it's a 50 size red, over is 50 size red and hit is thesame as up, blue 30 size. This seems to work when I test it, I don't know if thats the proper way to do it, but my problem is, whenever I try to add the http address in the properties section to each of the up, down, over and hit parts, when I test it again, the words flicker back and forth between the red 50 and the blue 30 when I put the pointer over it and it won't go to the website when I click on it. How screwed up am I by tring to do it this way? My tutorial doesn't explain very well what I'm looking to do. This is my first of many posts I'm sure, Please help. Thank you in advance.
Linking A Button To A Website.
I want to link my "forum" button to this forum link http://krimsonknights.proboards19.com/index.cgi#general on release, How might I do that? Also is there a way to get it to open the forum in a new window as not to stray people away from the homepage?? Thanks in advance.
Linking A Button To Another Website
Hi all,
this used to be the simplest thing to in flash5 with _blank etc, but i'm having problems with it in MX. I want the page to open in a separate window. this is what my button action looks like according to what someone else posted:
stop();
this.submit_btn.onRelease = function(){
if (url_txt.text == null || url_txt.text ==""){
gotoAndStop("Error");
} else {
getUrl ("http://homepage.mac.com/electrofilms45/iMovieTheater1.html"+url_txt.text);
gotoAndStop("Confirm")
}
};
---
but I get this in the output window:
**Error** Scene=Scene 1, layer=Layer 37, frame=59:Line 1: Statement must appear within on handler
stop();
**Error** Scene=Scene 1, layer=Layer 37, frame=59:Line 2: Statement must appear within on handler
this.submit_btn.onRelease = function(){
**Error** Scene=Scene 1, layer=Layer 38, frame=59:Line 1: Statement must appear within on handler
{getURL ("http://homepage.mac.com/electrofilms45/iMovieTheater1.html", _blank);}
Total ActionScript Errors: 3 Reported Errors: 3
--
i've tryed one or two other scripts to no avail, it's a little frustrating,if someone could help it'd much appreciated!
-Warner
Linking A Button To Another Website
Hi all,
this used to be the simplest thing to do in flash5 with _blank etc, but i'm having problems with it in MX. I want the linked page to open in a separate window. this is what my button action looks like according to what someone else posted:
stop();
this.submit_btn.onRelease = function(){
if (url_txt.text == null || url_txt.text ==""){
gotoAndStop("Error");
} else {
getUrl ("http://homepage.mac.com/electrofilms45/iMovieTheater1.html"+url_txt.text);
gotoAndStop("Confirm")
}
};
---
but I get this in the output window:
**Error** Scene=Scene 1, layer=Layer 37, frame=59:Line 1: Statement must appear within on handler
stop();
**Error** Scene=Scene 1, layer=Layer 37, frame=59:Line 2: Statement must appear within on handler
this.submit_btn.onRelease = function(){
**Error** Scene=Scene 1, layer=Layer 38, frame=59:Line 1: Statement must appear within on handler
{getURL ("http://homepage.mac.com/electrofilms45/iMovieTheater1.html", _blank);}
Total ActionScript Errors: 3 Reported Errors: 3
--
i've tryed one or two other scripts to no avail, it's a little frustrating,if someone could help it'd much appreciated!
-Warner
Linking To A Pdf File On My Website
Hi guys,
I have attached the following script to a button on my flash file to open up a pdf file:
Code:
on (release) {
//Goto Webpage Behavior
getURL("http://www.tarabuehner.com/writing/smokesignals.pdf","_blank");
//End Behavior
}
Instead of opening up the file location -- which is a valid URL address, it opens up if I simply copy and paste it into my browser -- it simply opens up firefox, but not the file.
What gives?
I would really appreciate your sharing some expertise.
Thanks!
Tara
Linking SWFs Together For Website...
I need help bad. I'm creating a website in Flash 8, in which I started using Scenes, but my file got too big for that, so I am trying to figure out how to link up my seperate SWFs. I currently have 5 buttons and each of them have serpate swf files. I know how to use the loadMovie but when I do that, there is a white flash in between clicks that I don't want there. Because each page has the same overrall look, I want it to look like it would as if i were using scenes. I'm just confused on how to load them so they just go on top of each other...anyone??
Linking To A Folder, Not A Website.
Hey guys,
So I'm building a drop down menu, and I'm done, almost, all I need is to link everything.
The tutorial uses action script:
on(release){
getURL("http://www.something.com",_blank)
}
so it works for me when I enter actual website (ie coldplay.com) BUT I'm trying to link everything from my computer, this to be more specific: F:ColdplayWebFinalcoldplay.html
But it DOESN't WORK and I spent so much time building everything. Is there any way to make it work? Aiuto please
And if someone wants to see the tutorial here's the link to youtube, it is done at the very end. http://www.youtube.com/watch?v=VHVYWcNitq4
Linking Flash To Another Website
hey got a problem
i need to like my site to another site through a button
this is my action
on (release) {
getURL("www.gamesworkshop.com", "_blank");
}
it keeps trying to load the GW website from inside my website..
am i missing something to get this to work
?
please help
Muggin
A Flash Jukebox For On Website To Have Music
Hello Flash Pro's and Nøøbies (as I am:þ).
I have been searching the "entire" web for a Flash Jukebox. I want to download a Flash Jukebox or some kinda link which I can use to have my own music loops on my website and people can use a Windows Music Player or Winamp effect interface. It should (of course) have a Play and Stop button but also a next and previous button in it. I tried creating one myself but I cannot even (yet) create a decent Splash screen, let alone such an interface in Flash. I'd appreciate it if I received perhaps an Email about this or perhaps a post with Link to such a Flash Jukebox or a VERY detailed tutorial to make such a thing on my own . Email me then please @ mangatq@hotmail.com. Well, that's about it.
Thanks for reading this long post, I hope someone out there knows about such a thing or might even have created it and willing to share??
Thanks thanks thanks
MangaTQ
[Edited by MangaTQ on 10-23-2001 at 07:27 AM]
Website Music And Image Gallery
Hello.
I am a new flash user but have picked it up quite quickly, however i have 2 major problems.
1). I have designed an interactive projector file to burn to CD and show to future employers about my work etc.. I would like to have a soundtrack playing in the background of the movie but dont know how to do this. The movie is split into about 15 different scenes covering all aspects of my work and i want the sountrack (probably a music mp3) to play uninterupted throughout while the users surfing round my movie. I dont want the track to restart every time a new scene loads up but i want it to continuously play no matter where you go or what order you view the movie in. Hope all that makes sense.
The second problem is that i have set up a gallery page of my work. with loads of thumbnails on it. Now what i want is that once a thumbnail is pressed a larger image to open up in a new window that is independednt of the main movie. I am completely stuck on how to do this. Please help!
Please someone help me i am desperate and i dont think that my brain will stand bieng annoyingly frustrated anymore!
Thanks
Music In A Flash Banner For Website?
Hi:
I am making a website. The top banner is all Flash, and the rest is an HTML site. The Flash banner is going to have music playing; like a jukebox.
I'm running into a stumbling block where - if the viewer stops the music - it starts again when they go to another page.
I'm wondering if there is a way to load a Flash movie that contains the jukebox over the main Flash banner and always have it stay on top, even if the viewer goes to another page. I'm trying to get it to play continuously have the music stopped without it restarting everytime the viewer goes to a new page.
Is there a way to do this?
I have navigation in the Flash banner, and in the HTML portion and they are in IFRAMES. The main content is in another IFRAME, so it isn't working properly because I don't think you can target an IFRAME within an IFRAME.
So, hence the questions about loading a Flash movie that is a constant throughout the site.
Does anyone have any input or ideas?
I'd really appreciate the help.
Thanks,
SP
Website Music: Playbutton Problem
Hi all!
On the website im creating now, I've got a play button that starts a song, a stop button to stop the song and a volume controler. It all works very well
But if I press the play button, and the song starts, I can press it again and the song will start again, over the already playing song.
So if I press the play button 5 times quick, the song will play in 5 versions over eachother. And it sounds really bad! I was wondering, if it was some kind of way to disable the play button when it has been clicked the first time, and enable it again if I press the stop button!?
Thx
Converting Mp3 To Flash 5 For Music Website
i need to convert over 570 mp3 files to flash5 format for downloading from my music website to be run with modern browsers (using built in flash5 player) on PCs for oldies fans and interested surfers (see www.opasa.org). i tried macromedia flash mx with no luck. do i need the generator 2 module??? then how do i setup a batch command? can you recommend any other website as a relevant source of info?
|