Make a random swf play on my html website

I am looking for a way to have a random swf play on the index
page of my website. I have five products I want to showcase and
have built five different swf files, one for each. I would now like
some code that would randomly load one of the 5 files into the
page, so anyime some one visits the site there will most likely be
a different swf playing. Also, is there a better way to do this.
Thanks

I found this tutorial on Google. If you use Flash, maybe this
will help
you.
http://www.kirupa.com/developer/actionscript/loading_random_movie.htm
Or, you could use an array and a random rotator JavaScript.
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"Dreameager" <[email protected]> wrote in
message
news:fg4u2r$ejm$[email protected]..
> I am looking for a way to have a random swf play on the
index page of my
> website. I have five products I want to showcase and
have built five
different
> swf files, one for each. I would now like some code that
would randomly
load
> one of the 5 files into the page, so anyime some one
visits the site there
will
> most likely be a different swf playing. Also, is there a
better way to do
this.
>
> Thanks
>
>

Similar Messages

  • Video Recording Slide - SWF Playing Randomly

    Hi We are making a training containing just video recorded slides. The training is for users who are new visitors to a website. SO all slides are video recorded and separate audio files are embedded on each slide.
    However, when we publish a SWF + HTML (our standard publishing practice) - we get three playable files in the folder i.e. one SWF and two firefox HTML files (XYZ firefox HTML document and the other XYZ_fs Firefox HTML document).
    However, on playing these files the published video is playing randomly.  Sometimes, the video would get stuck at the first slide with the audio continuing normally.  In some cases, the scrolling doesnt happen (has been done in the recording)
    What could be the problem?

    Ok great - I'll check the preferences.
    I actually found a sort of semi-solution to my orginal problem. I found that if I insert a recording slide (as opposed to recording a demo and then inserting the mp4) that this forces the progress bar to reflect the length of the slide (which is also the length of the video) so this is a pretty good workaround.
    The only problem now is that if someone clicks a slide title in the table of contents, it goes to that slide, plays through but then automatically jumps to the next slide and that video starts. I found that if I choose "Pause" on the "On enter" action then that will work, however it means that they have to manually click the play button when they get to the slide they want to go to.
    So just as a final question, is there a way to pause the slide at the end of the video?

  • Loading random .swf's in html page

    Desired scenario: I have a site which I want random .swf
    files to load into index page each time a user refreshes or visits
    the site.
    Solution: I used a Javascript array solution in the .html
    page. Note: it works perfectly in Firefox and Safari.
    The javascript code for that is listed below.
    Problem: In IE, the page which is supposed to load the
    random .swfs in blank. I tried to solve the problem by using an IE
    conditional statement with a single .swf embedded (so at least
    visitor could have interactive experience).
    <!--[if IE]>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="800" height="600">
    <param name="movie" value="drinks.swf" />
    <param name="quality" value="high" />
    <embed src="drinks.swf" quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="800"
    height="600"></embed>
    </object>
    <script type="text/javascript"
    src="fixit.js"></script>
    <![endif]-->
    Any help would be appreciated. The link to the site in
    question is:
    http://www.jayminnickinteractive.com

    Thank you for checking. Yes right now they are all working.
    But many times I visit the flv's don't load - i wonder if it is a
    flash thing or more connected to my web host.
    Gary

  • AS3 array used to load and play random swfs?

    Hi, I'm trying to use an array adapted from AS2 script to load random swfs called "koan_1.swf" or "koan_2.swf" etc into a "koan_loader_mc" on the stage.  Each "koan_#.swf" has code in its last frame to both advance the "shuffle" array in the action script in the first frame of the stage and to load the next koan swf.  The code below -- almost -- works, but....?
    Frame on main stage:
    // creates function called at the end of koan_#.swfs
    function shuffle(a:Array) {
    for (var ivar = a.length-1; ivar>=0; ivar--) {
    var p = Math.floor(Math.random())(ivar+1);
    var t = a[ivar];
    a[ivar] = a[p];
    a[p] = t;
    // loads koans into koan_loader_mc
    var index:uint = 0;
    var koan_loader:Loader = new Loader();
    var koan:Array =["swfs/koans/koan_1.swf","swfs/koans/koan_2.swf", "swfs/koans/koan_3.swf", "swfs/koans/koan_4.swf", "swfs/koans/koan_5.swf", "swfs/koans/koan_6.swf", "swfs/koans/koan_7.swf", "swfs/koans/koan_8.swf", "swfs/koans/koan_9.swf", "swfs/koans/koan_10.swf", "swfs/koans/koan_11.swf", "swfs/koans/koan_12.swf"];
    koan.shuffle();
    koan_loader.load(new URLRequest(koan[index]));
    MovieClip(this).koan_loader_mc.addChild(koan_loader);
    MovieClip(this).stop();
    Code is on the last frame of the loaded koan swfs:
    MovieClip(stage).index++
    if(MovieClip(stage).index>MovieClip(stage).koan.length-1){
    MovieClip(stage).index=0;
    MovieClip(stage).koan.shuffle();
    MovieClip(stage).koan_loader.load(new URLRequest(koan[MovieClip(stage).index]));
    MovieClip(stage).koan_loader_mc.addChild(koan_loader);
    Thanks for -- any -- guidance and suggestions...at my wit's end...

    Thank you for taking the time to help, but......unfortunately it still isn't working.  When the "koan.shuffle():" segment of code on the first frame of the stage timeline, below, is commented out, everything else in the movie (except randomizing of swfs) works fine.
    This code loads swfs (but they are not randomized/shuffled):
    // loads koans into koan_loader_mc
    var index:uint = 0;
    var koan_loader:Loader = new Loader();
    var koan:Array =["swfs/koans/koan_1.swf","swfs/koans/koan_2.swf", "swfs/koans/koan_3.swf", "swfs/koans/koan_4.swf", "swfs/koans/koan_5.swf", "swfs/koans/koan_6.swf", "swfs/koans/koan_7.swf", "swfs/koans/koan_8.swf", "swfs/koans/koan_9.swf", "swfs/koans/koan_10.swf", "swfs/koans/koan_11.swf", "swfs/koans/koan_12.swf"];
    //koan.shuffle(); 
    koan_loader.load(new URLRequest(koan[index]));
    MovieClip(this).koan_loader_mc.addChild(koan_loader);
    Thanks again for your help....

  • ITunes randomly stops playing purchases that have previously viewed on the same hardware. It has an error message about HD. How can this issue be resolved?  What information is available besides the "learn more" option that does not deal with the problem?

    iTunes randomly stops playing purchases that have previously viewed on the same hardware. It has an error message about HD. How can this issue be resolved?  What information is available besides the "learn more" option that does not deal with the problem?
    Many people have the same problem. However, there is little or nothing readily available to users. This problem has existed for two or more years. Does anyone have anything to offer about this disturbing problem?

    Thanks for the suggestion kcell. I've tried both versions
    9.0.115 and 9.0.124 and both fail with the policy permission error.
    I also tried with and without your crossdomain.xml file but
    with the same result. It looks like this file is intended for URL
    policy, instead of socket policy. Recently Adobe separated the two.
    When I run with the files installed on my dev PC, it does
    work, which makes sense because the flash player isn't loaded from
    an unknown domain.
    I did get one step closer. If a crossdomain.xml in the server
    root exists and the socketpolicy file is loaded from the app folder
    then the first two warnings disappear. The logs now show:
    OK: Root-level SWF loaded:
    https://192.168.2.5/trunk/myapp.swf
    OK: Policy file accepted: https://192.168.2.5/crossdomain.xml
    OK: Policy file accepted:
    https://192.168.2.5/trunk/socketpolicy.xml
    Warning: Timeout on xmlsocket://192.168.2.5:843 (at 3
    seconds) while waiting for socket policy file. This should not
    cause any problems, but see
    http://www.adobe.com/go/strict_policy_files
    for an explanation.
    Warning: [strict] Ignoring policy file with incorrect syntax:
    xmlsocket://192.168.2.5:993
    Error: Request for resource at xmlsocket://192.168.2.5:993 by
    requestor from https://192.168.2.5/trunk/myapp.swf is denied due to
    lack of policy file permissions.
    Which basically says, everything is okay, but you stay out
    anyway.
    PS: I found the XML schema files here:
    http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_02.html
    and the socket policy schema:
    http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd.
    UPDATE: When serving up the policy file on port 843 using the
    example perl script then the socket connection seems to be accepted
    and the connect succeeds. After that flex hangs trying to logon to
    the IMAP server.

  • Simple AS3 external swf playing code?

    Hi
    I'm after some REALLY simple code, and am happy to pay someone via Paypal to do this for me.
    I want to have a one frame piece of AS3 code that loads in external swfs from an array.
    I want external swf 1 to play, and when it's finished, swf 1 unloads from memory, and then external swf 2 starts playing and so on through the array.
    When the end of the array is met, it loops back to the first swf and starts again.
    I don't need transition effects or anything like that.
    This is to be used for an offline project, so it's not connected to the web.
    I've been playing with it for a while myself, but can't get this to work.  It should be a simple and quick job for someone out there.  Just load a new swf into the child holder and play.  When that swf's finished playing, dump it, and load in and play the next one.
    Thanks for your help.
    Shaun

    Nothing at this stage - I'm still experimenting to figure out the best way to do it.  I found something like what I want at http://www.flashandmath.com/intermediate/externalclips/ext_clip2.html (without button control though - there's a code addition at the bottom to add in to make the swfs play by themselves).
    The problem with the above example is I can't get any external swfs besides the example ones to play.  I even tried renaming my as3 swfs to clip0 etc, but still nothing.
    If someone can make it for me, and it means I have to add some code to the end of each external swf, if they can include the code to add, I can incorporate it no probs.
    Cheers
    Shaun

  • Load random swf but not same

    someone here helped with the code to load random SWF files
    into a movie clip...however, i need to make sure it doesnt load the
    one that's already playing, that it goes on to a new one
    everytime..

    i dont think saying thank you really does it, but really,
    thank you.. you've helped me countless number of times, and it's
    only made me better at what I do, so I really am great full .
    Thanks again

  • Problem in embedding 2 swfs in a single html

    hi,
    i am currently embedding 2 different swfs in a single html file,but i'm having problems.
    i am trying to embed the other swf programatically using js, but i'm getting a script error..
    i am also having problems in running it in other browsers because it's only working good in ie and firefox..
    i know that we need to embed it, using object,embed tags and embed it in the active content area.
    how do i embed it properly?
    here is my code.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
        <head>
            <title>DWP Test Page</title>
            <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
            <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
                <script language="JavaScript" type="text/javascript">
        //Declare all global variables
                var mediaDivId="m1";
                var imageDivId = "m2";
                var imageNode;
                var mediaNode;
                var propertyStyle;
                //Function to access the Flash movie
                function getFlashMovie(FlashMovie)
                            var isIE = navigator.appName.indexOf("Microsoft") != -1;
                            return (isIE) ? window[FlashMovie] : document[FlashMovie];
                //function to play media in Main Page
                function OpenMedia(type,url)
                        //Declare local variable and pass the div ID of Image and Media node
                        //and set a value for property style
                        var content;
                        var activeContent;
                        imageNode = document.getElementById(imageDivId);
                        mediaNode = document.getElementById(mediaDivId);
                        propertyStyle = "hidden";
                        //Set Image property to hidden and Clear media
                        imageNode.style.visibility = propertyStyle;
                        mediaNode.innerHTML = "";
                        //Embed Media Skin in Main Page
                        content='<noscript><object id="FlashMovie"  classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="500" height="500" id="dwpPlayer" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="dwpPlayer.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed name= "FlashMovie" src="dwpPlayer.swf" quality="high" bgcolor="#ffffff" width="500" height="500" name="dwpPlayer" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" /></object>';
                        activeContent = '<script language= "JavaScript" type="text/javascript">' + "AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0','wid th', '500','height', '500','src', 'dwpPlayer','quality', 'high','pluginspage', 'http://www.adobe.com/go/getflashplayer','align', 'middle','play', 'true','loop', 'true','scale', 'showall','wmode', 'window','devicefont', 'false','id', 'dwpPlayer','bgcolor', '#ffffff','name','dwpPlayer','menu','true','allowFullScreen','false','allowScriptAccess', 'always','movie', 'dwpPlayer','salign', '');" + "</script>";
                        mediaNode.innerHTML = activeContent + content;
                        //Calls action Script and Pass Media type and URL
                        switch(type)
                            case (type == 'video'):
                            getFlashMovie("dwpPlayer").sendVideoURLToFlash(url);
                //function InsertActiveContent()
                //    var active = '<script language= "JavaScript" type="text/javascript">' + "AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0','wid th', '500','height', '500','src', 'dwpPlayer','quality', 'high','pluginspage', 'http://www.adobe.com/go/getflashplayer','align', 'middle','play', 'true','loop', 'true','scale', 'showall','wmode', 'window','devicefont', 'false','id', 'dwpPlayer','bgcolor', '#ffffff','name','dwpPlayer','menu','true','allowFullScreen','false','allowScriptAccess', 'always','movie', 'dwpPlayer','salign', '');", "</script>");
                //Function to close the Media and show image
                function RemoveMedia()
                        alert("Hoy!");
                        //Set value for local variable
                        mediaNode = document.getElementById(mediaDivId);
                        imageNode = document.getElementById(imageDivId)
                        propertyStyle = "visible";
                        //Clear InnerHTML of division for media
                        mediaNode.innerHTML="";   
                        //Set Image property to visible
                        imageNode.style.visibility = propertyStyle;
                            // -->
                </script>
        </head>
        <body>
            <object id="FlashMovie1"  classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="600" height="600" id="dwp_CarouselBackUp" align="middle">
            <param name="allowScriptAccess" value="always" />
            <param name="allowFullScreen" value="false" />
            <param name="movie" value="Carousel.swf" />
               <param name="quality" value="high" />
               <param name="bgcolor" value="#ffffff" />
            <param name="flashvars" value="xmlFile=Carousel.xml" />   
            <embed name= "FlashMovie1" src="Carousel.swf" flashvars="xmlFile=Carousel.xml" quality="high" bgcolor="#ffffff" width="500" height="500" name="dwp_CarouselBackUp" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
            </object>
            <input type=button value="Send" onClick="javaScript:OpenMedia('video', 'Call_to_action.flv')"/>
            <table style="TABLE-LAYOUT: fixed; OVERFLOW-X: hidden; WIDTH: 808px; HEIGHT: 706px">
                <tr>
                    <td>       
                    </td>
                    <td>
                    <div id ="m1"></div>
                    <div id = "m2"></div>
                    </td>
                </tr>
                <tr>
                    <td>
                    </td>
                    <td>
                    </td>
                </tr>
            </table>
        </body>
    </html>

    the thing thats now working is the part where the js embedded the dwpPlayer.swf.
         //Embed Media Skin in Main Page
                        content='<noscript><object id="FlashMovie"  classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0 ,0,0" width="500" height="500" id="dwpPlayer" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="dwpPlayer.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed name= "FlashMovie" src="dwpPlayer.swf" quality="high" bgcolor="#ffffff" width="500" height="500" name="dwpPlayer" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" /></object>';
                        activeContent = '<script language= "JavaScript" type="text/javascript">' + "AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0 ,0,0','width', '500','height', '500','src', 'dwpPlayer','quality', 'high','pluginspage', 'http://www.adobe.com/go/getflashplayer','align', 'middle','play', 'true','loop', 'true','scale', 'showall','wmode', 'window','devicefont', 'false','id', 'dwpPlayer','bgcolor', '#ffffff','name','dwpPlayer','menu','true','allowFullScreen','false','allowScri ptAccess','always','movie', 'dwpPlayer','salign', '');" + "</script>";
    the player is showing but it doesnt retrieve any values. unlike when it was embedded normally.
    If i may ask,
    normally how will we embed 2 swfs? coz, i normally embed them by creating separate instances of the 2 swfs.
    Like this:
    Note: this embedding works manually if js doesnt need to create the embed itself.but when we translate it by embedding it programmatically. the player shows upon click but theres a script error that an object needs to be embedded.
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
            'width', '800',
            'height', '600',
            'src', 'dwp_Player',
            'quality', 'high',
            'pluginspage', 'http://www.adobe.com/go/getflashplayer',
            'align', 'middle',
            'play', 'true',
            'loop', 'true',
            'scale', 'showall',
            'wmode', 'window',
            'devicefont', 'false',
            'id', 'dwp_Player',
            'bgcolor', '#ffffff',
            'name', 'dwp_Player',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','always',
            'movie', 'dwp_Player',
                'flashvars','xmlFile=3DCarouselSettings.xml',
            'salign', ''
            ); //end AC code
    </script>
    and like this..
    <noscript>
        <object id="FlashMovie"  classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="800" height="600" id="dwp_Player" align="middle">
        <param name="allowScriptAccess" value="always" />
        <param name="allowFullScreen" value="false" />
        <param name="movie" value="dwp_Player.swf" />
        <param name="quality" value="high" />
        <param name="bgcolor" value="#ffffff" />
        <param name="flashvars" value="xmlFile=3DCarouselSettings.xml" />   
        <embed name= "FlashMovie" flashvars="xmlFile=3DCarouselSettings.xml"  src="dwp_Player.swf" quality="high" bgcolor="#ffffff" width="800" height="600" name="dwp_Player" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
        </object>
    </noscript>
        <object id="FlashMovie1"  classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="800" height="600" id="Carousel" align="middle">
        <param name="allowScriptAccess" value="always" />
        <param name="allowFullScreen" value="false" />
        <param name="movie" value="Carousel.swf" />
        <param name="quality" value="high" />
        <param name="bgcolor" value="#ffffff" />
        <param name="flashvars" value="xmlFile=3DCarouselSettings.xml" />   
        <embed name= "FlashMovie1" src="Carousel.swf" flashvars="xmlFile=3DCarouselSettings.xml" quality="high" bgcolor="#ffffff" width="800" height="600" name="Carousel" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
        </object>

  • HTML website, SWF do a load animation only once. Same file used on all pages?

    Hey all,
    Just going through some thinking here. My HTML website is
    going to using a flash header and navigation. Now I will be using
    the same swf's on all of the pages across the site. I would like to
    play a loading animation only on the first time the swfs are
    loaded. Is there a way to do this? Or because I am using the same
    swf's will it be okay to just tell my mc to go sit on a specific
    frame and because it is in the cache each page will be using the
    same file so the mc will still be at that frame or???
    And help would be nice...

    While Breqent is right that server side includes are the best way of doing this if you aren't up on
    server side coding then you can use Dreamweaver to manage you menu.
    You do this by simply ensuring you never edit the menu area on any individual page.
    It should therefore be identical on all page and as such you can just use find and replace across the entire site or folder to edit all occurances of your menu.
    I hope this helps.
    Andy
    Best Reception

  • How to make the notification sounds play through EarPods

    The notification sounds/ringer on my iPod touch keeps playing through the external speakers even though I have EarPods plugged in. If I turn on a video of game tho, it will play through the earpods. Is it possible to make the notification sounds play through the EarPods as well?

    Hi Everyone,
    Just in case anyone else runs into this problem here is the solution that i've managed to piece together,
    I have a movie clip twice the size of the stage, the movie clip is called bg_mc, here is my actionscript...
    bg_mc.addEventListener(Event.ENTER_FRAME, mouseMoveHandler);
    function mouseMoveHandler(event):void
    var cursorX = stage.stageWidth - mouseX;
    bg_mc.x -= dx / 5;
    this action script tells the movieclip to move left and right depending on where the users mouse pointer moves. (it also adds a slight delay to make it look like tweening)
    I then published this in Flash using the publish settings shown in the reply above.
    Then i went into dreamweaver and removed the margins in the html file
    Now the flash file will resize to any screen resolution and will allow the user to move the MC left / right across the screen depending on where the mouse pointer is,
    I hope this is helpful,
    Ben

  • How to embed a swf video into an html page?

    I am haing trouble embedding my swf video into my html page. Here is my code:
    <embed height="340" width="549" src="flashvideos/test.swf" allowscriptaccess="always" allowfullscreen="true" flashvars="&amp;MM_ComponentVersion=1&amp;skinName=C:/Users/RogerPa1/Documents/Visual Studio 2008/WebSites/WebSite1/Products/Create/flashvideos&amp;streamName=C:\Users\RogerPa1\Docum ents\Visual Studio 2008\WebSites\WebSite1\Products\Create\flashvideos\Robotics&amp;autoPlay=true&amp;autoRew ind=false"></embed> 
    When I run the page the place where the flash player should be is blank. But if I right click I can select settings so the flash player is there. I'm using absolute urls for the flashvars because I read in a forum that that's what you're supposed to do. Anyway I am a little frustrated that the video won't play. I tried creating a video with no skin and the same problem occurs.
    Thank You
    idesofdecember

    Answered

  • Cant Make Flash Video Stop Playing

    I am using an HTMLLoader to display a web page in a
    NativeWindow. The web page I am displaying has an embedded flash
    video that plays in it. That all works fine. The problem I have is
    that when they close the window, the flash video keeps playing. The
    only way to stop it is to close the entire app.
    Is there a way to somehow make the HTMLLoader stop playing
    the content?

    I figured it out. I found a reply that fixed this problem for
    someone with a SWFLoader and it works for the HTMLLoader.
    Here is the answer if you need it, where html is the name of
    the HTMLLoader.
    html.load(null);
    html.reload();

  • Music randomly stops playing (same problem in multiple apps)

    Since a few days, my Z1C will randomly stop playing sound, while I'm listening music. It will do this up to multiple times per minute, seems somewhat like a online game lagging really badly, after which it will just pause.
    It does this on multiple apps (I tried it on the following
    - Spotify
    - Walkman (or whatever the music app is called now)
    - Audible (audiobooks)
    The issue happens both when I listen through my bluetooth headphones (Jaybird bluebuds x) as well as on speaker.
    I have had the phone for somewhat more than a year now, I recon. The headphone jack is broken because of my own rough handling, but that wasn't a big deal so far because I use bluetooth anyway.
    Anyone know what to do about this? 

    Hi Bmot,
    Welcome to the community.
    You could try booting the device in to safemode, at least this way you can find out if software is the suspect or if it is more likely hardware.
    Safemode instructions
    let us know how you get on.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • How do i make it so iTunes plays the music files from where i have chosen to store them?

    how do i make it so iTunes plays the music files from where i have chosen to store them as opposed to it scattering copies of my files into a myriad different folders based on the albums they came from when i'm not even interested in keeping whole albums?
    I recently converted myself to mac after having been a windows formatted person since the beginning of time. I use last.fm and the client scrobbler only supports iTunes on the mac (scobbling since Nov 06 and i'm now heavily dependant upon it as a means of discovering new music) - if you don't know what that means then take it for granted i have no option other than to use iTunes as my media player whn using the mac. And almost immediately upon using iTunes i was filled with horror.
    My tale of woe as follows: I copy all my mp3 files to folder X on my new mac. I copy my simple playlist in to that same folder X. The simple playlist simply lists all the files in folder X in the order i want to hear them in... simple right? And what happens the moment i start playing my simple list? Well you probably all ready know; itunes throws copies of all those files in to the air, scatters them to the four winds so each of them fall into a little folder of their own representing the album they might once have come from. I don't keep whole albums. For me the 'album experience' is a ruse to trick one into listening to weaker material. I only keep the concentrated goodness. I only put up with albums in a previous lifetime because in the days of vinyl i had no other choice apart from spending hours compiling mix tapes. Now i am liberated from these restrictions and have been for the 15 or so years i've been using a computer to listen to music. Until along comes iTunes forcing me backwards in time, frog marching me back into the past.
    That simple list i mentioned is my one and only playlist. This single playlist has been evolving for 15 years as tracks are added and removed and their position in the list changes because that song sounds amazing when heard after that other song whereas hearing this song after that song would be like pouring custard over your sausages (for me shuffling is an abomination). And so here is how i've managed this list and managed synchronization of said list and listed files with my mp3 player (currently a Zen).
    Adding a new file: After deciding that song is a keeper i will copy it into that simple folder that holds all my music and drop it in to a position on the list i deem most suited for it. Incidentally over this entire 15 year (i'm pretty sure it's been around that long) my media player has been winamp but for the reason previously mentioned i am unable to use winamp in mac world.
    Removing a file: fortunately winamp has an option to simultaneously remove a file from the list and the hard drive. And naturally so because after all if i no longer like a song then i want it expunged completely from life or at least from my hard drive and playlist. In the brave new world of iTunes i have to remove from the list there then delete the file from where iTunes copied it from and then the place iTunes copied it to.
    Editing the list: drag an item in the list to it's preferred location and select to save it as i would for any other file using any other application... well desktop type application as opposed to one that uses a database as its primary means of storage.
    Syncing with the mp3 player: copy drag drop playlist file from the simple folder on the hard drive to the simple folder on the mp3 player as i would for any other file. And then also copy drag drop the most recently created files from simple folder on hard drive to simple folder on player after having ordered them by creation date so as to make it easier to select the most recently created. After a while the mp3 player will fill up with the files no longer on the list so i will delete all files from player then re-copy all flies from simple folder on hard drive to simple folder on mp3 player.
    I do not make changes to the list on the mp3 player so synchronization needs only to go one way: from laptop to player.
    So all very simple. Apart from editing the positions of files in the list everything is managed by copy drag dropping and deleting files using windows explorer.
    But i'm in a mac and circumstances have forced me in to the corner of using iTunes. And this whole iTunes situation is terrifying for me as over the years i've heard horror stories about it deleting all of someone's music files. Perhaps this may have been by using the software incorrectly but even so, the very fact that it appears possible for this to happen simply by using the software incorrectly and the fact that it happens with some degree of frequency given the number of reports of this happening that i have heard of over the years on music discussion forums fills me with dread that i have to now use this software. And given the software's blatant disregard for the user's choice as to where to store his/her files it's no surprise that this happens. The software is pointlessly doing dangerous things with my data. Please make it stop.
    Please can i just at the very least make iTunes play the music from the folder i have chosen to put my files in and not copy those files here there and everywhere without my say so? Thankyou.

    option discovered in preferences. Really this and any feature that moves deletes or edits a users data should as far as possible be OFF BY DEFAULT. It shouldn't by default and without the users specific say do this dangerous and unnecessary thing without even letting the user know what it's doing!!! And then cause me a few hours (as i'm new to mac) searching for the option so as to switch it off. If i hadn't noticed the status cage declaring that it was copying files then i might never have twigged that this insane thing was occurring. And if i hadn't of noticed i would have been left maintaining the contents of the folder i copied the files to, the folder which as far as i was informed and so believed was also the location of the music files i was playing. How does Apple justify this 'genius' piece of software non-design? Surely it will hurt no one if this was off by default for new users - overall at least i dare say it would cause a lot less distress in the future for the unsuspecting public at large. Thanks for the support.

  • I need to play a song on a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through the whole presentation ? Thanks.

    I need to play a song in a row in a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through out the presentation ?
    Thanks.

    Drag the file into the audio window in the Document inspector...

Maybe you are looking for

  • The average energy impact column disappeared--how do I get it back?

    In activity monitor, as the title says. The Average Energy Impact column disappeared. It isn't something you can "right" click and add. The only thing I can think I did was pick "all processes" in view.

  • FB70 Function Exit or user exit

    Hello! I have a requirement in which I need to assign customer invoice smartform in FB70 transaction. When the user will press save button then the data should go to spool request. Is it possible by using any Function Exit or BADIs. If yes please tel

  • Adobe Acrobat freezes on Thinapp 5.1

    Hi. Thinapped Adobe Acrobat X (XI) freezes on listing pdf file. This happens only with ver. 5.1. Acrobat thinapped with ver. 5.0 and 5.0.1 works fine. Pdf file has 400 pages (~20 Mb). Maybe someone else faced a similar problem?

  • Upgrade path from 1.1.2

    I have just upgraded my Dual 2.3 GHz Power PC G5 Mac from OSX 10.4.11 to OSX 10.5.8. I now wish to upgrade my iWeb from Version 1.1.2 to as high as I can go on the Power PC Mac. Is there a single download available, or some other way, with out having

  • Cannot get LR4 to read xmp files from a Nikon D4, Reads the D3S xmp files fine.

    I am doing some editing work for a magazine. The lead editor had issues with adobe camera raw viewing some of my edits. The xmp files are there but for some reason they are not loading. We narrowed it down to just the Nikon D4 files. I just had her d