Stop music playing in one swf when another swf starts

Hello Flash developers please help me here.
On my main SWF Home  File i have 2 swf files are loaded into my (main home swf)  and everything is runing smooth BUT the problem is when i want to  watch the video the music is still playing i have to click on the button to stop music playing.
what i want is when i click on the video to play i want automatically the music to stop playing with out me clicking the mp3 button to stop the music playing.
NOTE
Keep in mind i have 2 SWF files that are loaded in to the main swf file ...
Home SWF is the main file
MP3 SWF   <<   Loads on Home SWF
Video SWF <<    Loads on Home SWF
All i want is when the video is playing automatically stop the music and when the video is finish the music automatically continuing from where it was left.
Thank you so
AKAoshi1

I don't know how to do this. I have 4 files. file one calls file 2 when the Next at the end of file one is clicked, file 2 calls 3, etc. The reverse is true with the first Previous for files 2 - 4. Can I get some guidance?
Thanks

Similar Messages

  • HT4527 I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help a

    I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help as such

    Then stop trying to use HomeShare and use one of the other options listed in the document from which your question was posted.

  • How do i transfer my music library from one computer to another?

    I want to transfer my itunes music library from one computer to another, how do I do this?

    sam06,
    Here are a couple of links that should be of interest:
    http://docs.info.apple.com/article.html?artnum=93366
    http://discussions.apple.com/thread.jspa?messageID=607339&#607339

  • I transfered music from my ipod to a new itunes library (new PC).  The music plays in itunes but when I sync my ipod and try to drag songs from the itunes library to the ipod it wont load.  It shows a circle with aline through it.

    I transfered music from my ipod to a new itunes library (new PC).  The music plays in itunes but when I sync my ipod and try to drag songs from the itunes library to the ipod it wont load.  It shows a circle with aline through it.

    Have you selected manually manage music?

  • HT1879 no music plays on the computer when trying to listen to 90-second previews of songs

    Why is there no music plays on my computer when trying to listen to the 90- second preview?

    I have never heard of these issues.
    Have you tried basics from the manual?
    Restart, reset, restore?

  • Trouble comunicating from flex to swf, when the swf is embedded

    i'm a newbie to flex/air so i'm hoping there is going to be a
    simple answer to this problem. it's caused a massive headache!
    i have been using a swfLoader to load a swf, then triggering
    function calls within the swf from flex by using the following in
    the script tag of my mxml
    var mc:MovieClip = MovieClip(myMP3player.content);
    mc.loadMP3Player("file:///"+path, artist, title);
    where loadMP3Player is the function in the linked swf and
    myMP3player is the id of the swfLoader.
    this works great, no problems... but when i change the code
    so that the swf is embedded, rather than loaded at runtime the code
    above gives a
    "ReferenceError:Error #1069 Property loadMP3Player not found"
    error
    when i try to trigger the function.
    i have tried many different ways of referencing and embedding
    the swf, all have the same result. i.e. swf loads fine and the flex
    project compiles without errors, but i am unable to call the
    function.
    how do i reference the function in the swf when the swf is
    embedded?
    any help will be really appreciated.
    btw: i need to embed the swf as i am distributing the
    finished article as an air app.

    Relief - well sort of.
    I uninstalled the last Flash version (10.3 latest built that I downloaded a couple of days ago) on all my browsers.
    Then I downloaded the older 10.2 and installed, and the problem was gone. I'm on MacOSX Lion, by the way.
    So this must be a bug in the last flashplayer.
    Cost me five hours and a bucket of sweat.
    And from now on, I'll be pretty scared to give the flashplayer an update, that's a fact.
    ottie

  • Stopping external SWF when new SWF is loaded

    Ok.... hmmmmm. I am currently working on a flash site that
    loads external SWFs for each page. one of the SWFs contains a
    sitepal movie. the sitepal has been coded to stop playing and
    unload on a frame change but it keeps playing when a link in the
    index is clicked and another SWF comes in. (in other words there is
    no frame change. the new SWF loads but the old one keeps playing)
    make sense?
    I just need the site pal to stop playing when the next SWF
    loads!
    each link on the bottom is part of the main.swf
    (index.swf)...
    I need the links on the bottom to "turn off" the SWF when a
    new page is choosen. the External SWFs are labled 1-5....
    attached is a simple diagram in .jpg format explaining the
    functionality of the site!
    any insight is appreciated...
    PS
    IM NO CODE MONKEY.... more of a point-click, copy-paste type
    o dude..

    HI,
    My files loads an external swf (containing the video) into a
    container on my stage. The loaded swf contains the embedded wmv
    movie file, which is quite large I might add. Do I need to cut file
    size or change to flv?
    thanks again.

  • Error when opening swf from another swf

    Hi all,
    I'll try to explain this as good as possible.... I made a maze game that works perfectly when I run it by clicking on it's own .swf file, but when I try to access it from another .swf file which is a menu for the games I created, it does not work.
    I have absolutely no idea where to look for the error, so my question is: can it be that the main.swf (which is the menu for games) could be the problem, or the problem must be in the maze.swf?
    Thanx in advance!

    no, all code is in the first frame of actions layer:
    stop();
        var rightArrow:Boolean = false;   
        var leftArrow:Boolean = false;
        var upArrow:Boolean = false;
        var downArrow:Boolean = false;
        var speed:int = 5;
        stage.addEventListener(KeyboardEvent.KEY_DOWN, stage_onKeyDown);
        stage.addEventListener(KeyboardEvent.KEY_UP, stage_onKeyUp);
        stage.addEventListener(Event.ENTER_FRAME, stage_onEnterFrame);
        function stage_onKeyDown(event:KeyboardEvent):void {
            if(event.keyCode == Keyboard.RIGHT) rightArrow = true;
            if(event.keyCode == Keyboard.LEFT) leftArrow = true;
            if(event.keyCode == Keyboard.UP) upArrow = true;
            if(event.keyCode == Keyboard.DOWN) downArrow = true;
        function stage_onKeyUp(event:KeyboardEvent):void {
            if(event.keyCode == Keyboard.RIGHT) rightArrow = false;
            if(event.keyCode == Keyboard.LEFT) leftArrow = false;
            if(event.keyCode == Keyboard.UP) upArrow = false;
            if(event.keyCode == Keyboard.DOWN) downArrow = false;
        function stage_onEnterFrame(event:Event):void {
            var rect:Rectangle = player.getBounds(this);
            var i:int = 0;
            var xBump:int = 0;
            var yBump:int = 0;
            if(rightArrow) {
                xBump = speed;
                for(i = 0; i < speed; i++) {
                    if(maze.hitTestPoint(rect.right + i, player.y, true)) {
                        xBump = i - 1;
                        break;
            if(leftArrow) {
                xBump = -speed;
                for(i = 0; i < speed; i++) {
                    if(maze.hitTestPoint(rect.left - i, player.y, true)) {
                        xBump = -i + 1;
                        break;
            if(upArrow) {
                yBump = -speed;
                for(i = 0; i < speed; i++) {
                    if(maze.hitTestPoint(player.x, rect.top - i, true)) {
                        yBump = -i + 1;
                        break;
            if(downArrow) {
                yBump = speed;
                for(i = 0; i < speed; i++) {
                    if(maze.hitTestPoint(player.x, rect.bottom + i, true)) {
                        yBump = i - 1;
                        break;
            player.x += xBump;
            player.y += yBump;
            if(rightArrow) {
                xBump = speed;
                for(i = 0; i < speed; i++) {
                    if(cilj.hitTestPoint(rect.right + i, player.y, true)) {
                        xBump = i - 1;
                        nextScene();

  • DVD Plays on one iMac/Not another

    I've got 2 iMacs running 10.5.6.
    I've created a DVD on a Sony RDR-VXD655 digital DVD/VHS recorder/player.
    DVDs created on the Sony will play on one iMac and not the other. On the one it won't play on the recorded DVD shows up as a blank DVD. The problem iMac plays commercial DVDs just fine.
    I've tried to see what video utilities I have on the iMac that works and transfer them to the one that doesn't, but no luck. The only thing I haven't installed is Final Cut Express.
    Any suggestions?
    Thanks... DHK

    Contrary to popular belief, burning at the highest speed(s) are not recommended.
    Burn at the slowest speeds that the discs can use.
    When I would burn video dvd's. The newer drives had no problems, but the older drives wold complian, and spit out the discs.
    I burn at the slowest speeds, now all of my dvd players are happier.
    Just my $0.02 worth

  • Moving music files from one PC to another

    Can anyone help here?
    I moved my music library from one PC to a new one (using the iPod in the regular flash disk mode).
    I don't know what settings I pressed, consolidate library or something, but now I have phantom duplicates of every tune in my iTunes library, i.e. I have double the songs but one of each copy has an exclamation mark by the left hand side and when you click on it, it tells me "the song could not be used because the original file cannot be found ... " I want to delete these phantom songs but cannot sort them so would need to delete them one by one.
    What on earth has gone wrong here? What can I do to remove all the phantom songs without deletely one by one (I have 2,000 songs).
    Thanks,
    Dan

    Hi Dan,
    Firstly, see if this helps: View -> Show Duplicates.
    Hope this helps!
    !http://signatures.mylivesignature.com/54486/122/A57996D55BE7ABB4A67DE686D381A27 4.png!

  • Stop music play.

    I own an iPod 4th generation.  I want to stop playing music (not just pause).  I have read previous discussions but they are old and perhaps not applicable to the newer models.  Pressing the stop button on top of the iPod doesn't work because if I go back into music, it's still running.  I'm sure that I was able to stop before but can't remember what I did.

    To stop music just either go to the Music app and tap Pause or double click the Home button and swipe the bottom row to the Music control and tap the Pause button

  • How do I stop music playing on my iPod touch?

    Everytime I put my iPod on the docking station it plays music! I cannot stop music. There is only a pause button no stop button! How can I stop music coming on like this? :(

    Maybe the dock is not fully compatible with the dock.
    Did it work OK in the past?
    You can try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • How do i transfer my music lib from one computer to another

    hello,
    Can someone suggest how I transfer my music lib from one computer?

    anything you have PURCHASED with itunes you will be able to move simply by plugging your phone/ipad/ipod into the new computer, and selecting "transfer purchases" with itunes.
    Everything else, you will need a thumb drive or SD card for.

  • Exporting music list from one computer to another

    Trying to move my music stored in one computer to a new laptop.  Does anyone know who to do this?

    Back it all up with this User Tip, restore it to the new computer.
    tt2

  • Possible to make embedded swf (in another swf) fill browser?

    I have an .swf which is set at 100x100 percent and fills the
    browser window. I have an embedded .swf within this .swf, and I
    would like to be able to have the embedded .swf fill the browser
    window and remain fluid (for different screen resolutions). This
    has to be done from the embedded .swf.
    I thought if I could retrieve the stage details of the parent
    .swf from within the embedded .swf, then I could use these to
    resize the embedded .swf - but I haven't been able to do this.
    I'm plum out of ideas. Can anybody give me any pointers?
    Many thanks.

    I may have my terminology mixed up. I have a pre-compiled
    .swf that allows embedding of .swf's from a seperate .xml file via
    a LocalConnection API.

Maybe you are looking for

  • IP Job in BW finished, but how can I check the IDoc receive status in BW ?

    Hi,experts After I execute a Infopackage with loading more than 200000 records data, the infopackage monitor show me yellow light, 186020 from 200000 records. this infomation still show me till now, seaval hours,it looks pause here. And I check the r

  • Problem in account payment program

    Hi guru's after giving rundate and idetification paramenter , after selecting schedule proposal the msg is comming like dis payment proposal could not be carried out.... give me solution

  • I have iPhoto 11, can I easily find and delete duplicate photos?

    Is there an easy way (without going through thousands of photos and deleting them manually) to find and delete duplicate photos that are in my iPhoto library?

  • Dynamic report issue

    Dears, I'm back again I have and issue with my dynamic report: My source: DECLARE vTABLE VARCHAR2(100); vCOLUMN VARCHAR2(100); vVALUE varchar2(100); vSQL VARCHAR2(1000); BEGIN vTABLE := :P46_TABLELIST; vCOLUMN:=:P46_COLUMNLIST; vVALUE:=:P46_COLVALUE;

  • Why are the songs in my iphone playlists grey and I can't move them.

    Why are the songs in my iPhone playlists grayed out.  I am unable to move and organize them.  I just downloaded some audio books from Audible and I cannot moved them to a playlist on my iPhone either.  What step am I missing?