Using Next/Prev on Track with stories causes player to stop

I have a Track (125 mins long) with four clips in it.
I'm using chapter marks, a dual layer break mark and stories to either play all or each clips separately (with return to button selected.
Now, the navigation works fine, as long as you do not start to use the remote buttons Next or Previous. I want the user to being able to do this when the "Play all button" is selected. But eventually I end up playing my First Play or the player simply stops.
My current workaround is to disable UOP Next and Previous for my Stories.
I know that some DVD players "cheat" and allow the user to jump between clips and Tracks even if the navigation is properly set up.
Am I missing something here? Any tips are gratefully appreciated.

I figured this is what I have to do... too bad I didn't realised this when the project was still in develop... :-/
And sure, all the Tracks have their End jump set, and a Menu call set, too. The Title button is also set for the project (jumping to the title menu, accoring to which language choosen after First play).
And why the heck are the manufacturers making DVD players that does not follow the DVD standard???

Similar Messages

  • Prevent player to jump to unwanted places using Next/Prev in Track

    Just got into quite a big issue on a finished project ready for duplication.
    The project is HUGE, about 90+ Tracks, and a number of menus that are far near the limit. But it's working fine.
    No Track is meant to have a link to another, you choose and play a Track from a menu (English or Swedish, adding subtitles and stuff).
    However, if I try Next/Prev in Apple DVD player, WinDVD or PowerDVD it works fine, ie nothing happens.
    If I try the disc in some stand-alone players, it works fine too (either nothing happens, or I see a symbol that the user action is prohibited).
    But, on one of the office players (a Toshiba SD-350E or something like that), I get very weird things. Pressing Next starts playing another Track in the project. If I then try Next/Prev I end up in a black screen and the player stops. That's no good.
    Now, is there any work-around for this that is quick and dirty? The project is closed, no money left, except for the duplication.
    It feels hard to leave to duplication, knowing a user could hang the player...

    I figured this is what I have to do... too bad I didn't realised this when the project was still in develop... :-/
    And sure, all the Tracks have their End jump set, and a Menu call set, too. The Title button is also set for the project (jumping to the title menu, accoring to which language choosen after First play).
    And why the heck are the manufacturers making DVD players that does not follow the DVD standard???

  • Stories Limitation? - Unable to use Next/Prev Jump with individual Stories.

    I have tried to use Stories on a recent DVD project to save scripting a 'Play All' button. From reading many people have advised using Stories for this particular reason. However I have run into one issue which I can't get around:
    When selecting an individual story to play I can't find a way to allow the user to 'Next Jump' or 'Prev Jump'. This only seems possible if the whole track is selected as if the user presses 'Play All' - then the user can Next Jump / Prev Jump to the following or previous track.
    What I want to do is allow the user the option to simply Next / Prev Jump when playing an individual story so they can return to the menu instead of pressing the menu button. Is this a limitation with Stories? I have read other people having a similar problem but would like confirmation if anyone knows. Thank you.

    hangmanstudios wrote:
    What I want to do is allow the user the option to simply Next / Prev Jump when playing an individual story so they can return to the menu instead of pressing the menu button.
    Argh.... sorry when I read these parts of the original post I thought you were referring to the next/previous in a story that would not work and you had to wait for the story to end or break out with the menu command. The link you later referred to, well then I got it. You want to jump between stories.
    There are various ways to try to do things but there is no way to assign the story to end jump two different ways (sort of) based on whether the prev/next command is pressed. In other words if you have a menu that has a story to play Scene 2 of a movie, you can arrange things so that when Scene 2 is over you can either go back to the Menu OR go to another story. If you want to point people into an entire movie and start at a Scene you can point to a "Play All" story and the Chapter Marker in the Play All story and it will prev/next. If the story jumps to a story on another track, you can try to script previous next to work, but then again it is only in the context of having some decisions made as to how you want it to navigate, but it may not be perfect...not sure if that makes sense(?)

  • Using next/back button along with thumbnails

    Please Help! I cannot figure out how to get the back/next buttons to work with the thumbnails. For instance if I click on the 4th thumbnail then hit next/back it skips and goes to the 2nd or 12th image. I know my scripting is wrong but I just can't figure it out. I also want the next/back buttons to loop.
    Can anyone please help me.
    Thank you for your time,
    stop();
    next_btn.addEventListener(MouseEvent.CLICK, nextimage);
    var imageNumber:Number = 1;
    function checkNumber():void{
    next_btn.visible = true;
    back_btn.visible = true;
    //If the imageNumber is = 12, then do something...
    if(imageNumber==12){
      trace(imageNumber);
    //if the imageNumber is = 1, then don't show the back button
    if(imageNumber==1){
      trace(imageNumber);
    checkNumber();
    function nextimage(evtObj:MouseEvent):void {
    //Adding number to the current value +1
    imageNumber++;
    UILoader_courand.source="portfolio/large/Courand/Courand_"+imageNumber+".jpg";
    checkNumber();
    back_btn.addEventListener(MouseEvent.CLICK, backimage);
    function backimage(evtObj:MouseEvent):void {
    //Subract 1 from the current value
    imageNumber--;
    UILoader_courand.source="portfolio/large/Courand/Courand_"+imageNumber+".jpg";
    checkNumber();
    aboutProject_btn.addEventListener(MouseEvent.CLICK, aboutclick);
    function aboutclick(evtObj:MouseEvent) {
    trace("Courand Desc was clicked");
    gotoAndStop("Courand Desc");
    var thumbLoader:Loader = new Loader();
    thumbLoader.load(new URLRequest("portfolio/thumbs/Courand/courandThumb1.jpg"));
    thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
    function thumbLoaded(event:Event):void {
    allThumbnails.addChild(thumbLoader);
    thumbLoader.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_1.jpg";
    var thumbLoader2:Loader = new Loader();
    thumbLoader2.load(new URLRequest("portfolio/thumbs/Courand/courandThumb2.jpg"));
    thumbLoader2.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded2);
    function thumbLoaded2(event:Event):void {
    allThumbnails.addChild(thumbLoader2);
    thumbLoader2.x=70;
    allThumbnails.buttonMode=true;
    thumbLoader2.addEventListener(MouseEvent.CLICK, loadMainImage2);
    function loadMainImage2(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_2.jpg";
    var thumbLoader3:Loader = new Loader();
    thumbLoader3.load(new URLRequest("portfolio/thumbs/Courand/courandThumb3.jpg"));
    thumbLoader3.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded3);
    function thumbLoaded3(event:Event):void {
    allThumbnails.addChild(thumbLoader3);
    thumbLoader3.x=140;
    allThumbnails.buttonMode=true;
    thumbLoader3.addEventListener(MouseEvent.CLICK, loadMainImage3);
    function loadMainImage3(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_3.jpg";
    var thumbLoader4:Loader = new Loader();
    thumbLoader4.load(new URLRequest("portfolio/thumbs/Courand/courandThumb4.jpg"));
    thumbLoader4.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded4);
    function thumbLoaded4(event:Event):void {
    allThumbnails.addChild(thumbLoader4);
    thumbLoader4.x=210;
    allThumbnails.buttonMode=true;
    thumbLoader4.addEventListener(MouseEvent.CLICK, loadMainImage4);
    function loadMainImage4(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_4.jpg";
    var thumbLoader5:Loader = new Loader();
    thumbLoader5.load(new URLRequest("portfolio/thumbs/Courand/courandThumb5.jpg"));
    thumbLoader5.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded5);
    function thumbLoaded5(event:Event):void {
    allThumbnails.addChild(thumbLoader5);
    thumbLoader5.x=280;
    allThumbnails.buttonMode=true;
    thumbLoader5.addEventListener(MouseEvent.CLICK, loadMainImage5);
    function loadMainImage5(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_5.jpg";
    var thumbLoader6:Loader = new Loader();
    thumbLoader6.load(new URLRequest("portfolio/thumbs/Courand/courandThumb6.jpg"));
    thumbLoader6.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded6);
    function thumbLoaded6(event:Event):void {
    allThumbnails.addChild(thumbLoader6);
    thumbLoader6.x=350;
    allThumbnails.buttonMode=true;
    thumbLoader6.addEventListener(MouseEvent.CLICK, loadMainImage6);
    function loadMainImage6(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_6.jpg";
    var thumbLoader7:Loader = new Loader();
    thumbLoader7.load(new URLRequest("portfolio/thumbs/Courand/courandThumb7.jpg"));
    thumbLoader7.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded7);
    function thumbLoaded7(event:Event):void {
    allThumbnails.addChild(thumbLoader7);
    thumbLoader7.x=420;
    allThumbnails.buttonMode=true;
    thumbLoader7.addEventListener(MouseEvent.CLICK, loadMainImage7);
    function loadMainImage7(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_7.jpg";
    var thumbLoader8:Loader = new Loader();
    thumbLoader8.load(new URLRequest("portfolio/thumbs/Courand/courandThumb8.jpg"));
    thumbLoader8.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded8);
    function thumbLoaded8(event:Event):void {
    allThumbnails.addChild(thumbLoader8);
    thumbLoader8.x=490;
    allThumbnails.buttonMode=true;
    thumbLoader8.addEventListener(MouseEvent.CLICK, loadMainImage8);
    function loadMainImage8(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_8.jpg";
    var thumbLoader9:Loader = new Loader();
    thumbLoader9.load(new URLRequest("portfolio/thumbs/Courand/courandThumb9.jpg"));
    thumbLoader9.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded9);
    function thumbLoaded9(event:Event):void {
    allThumbnails.addChild(thumbLoader9);
    thumbLoader9.x=560;
    allThumbnails.buttonMode=true;
    thumbLoader9.addEventListener(MouseEvent.CLICK, loadMainImage9);
    function loadMainImage9(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_9.jpg";
    var thumbLoader10:Loader = new Loader();
    thumbLoader10.load(new URLRequest("portfolio/thumbs/Courand/courandThumb10.jpg"));
    thumbLoader10.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded10);
    function thumbLoaded10(event:Event):void {
    allThumbnails.addChild(thumbLoader10);
    thumbLoader10.y=70;
    allThumbnails.buttonMode=true;
    thumbLoader10.addEventListener(MouseEvent.CLICK, loadMainImage10);
    function loadMainImage10(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_10.jpg";
    var thumbLoader11:Loader = new Loader();
    thumbLoader11.load(new URLRequest("portfolio/thumbs/Courand/courandThumb11.jpg"));
    thumbLoader11.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded11);
    function thumbLoaded11(event:Event):void {
    allThumbnails.addChild(thumbLoader11);
    thumbLoader11.x=70;
    thumbLoader11.y=70;
    allThumbnails.buttonMode=true;
    thumbLoader11.addEventListener(MouseEvent.CLICK, loadMainImage11);
    function loadMainImage11(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_11.jpg";
    var thumbLoader12:Loader = new Loader();
    thumbLoader12.load(new URLRequest("portfolio/thumbs/Courand/courandThumb12.jpg"));
    thumbLoader12.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded12);
    function thumbLoaded12(event:Event):void {
    allThumbnails.addChild(thumbLoader12);
    thumbLoader12.x=140;
    thumbLoader12.y=70;
    allThumbnails.buttonMode=true;
    thumbLoader12.addEventListener(MouseEvent.CLICK, loadMainImage12);
    function loadMainImage12(event:MouseEvent):void {
      UILoader_courand.source="portfolio/large/Courand/Courand_12.jpg";

    Hi Tapash,
    You are probably right. However - I have been reading the User Guide back button chapter twice now - and still not sure what the problem is.
    I think, that for this purpose, you can consider my page as a very simple application - a search page with a search result table. Admit that I am not an OAF back button expert yet, but I wonder - this must be a very common problem to all OAF pages with a search / result table, not a problem specific to my application.
    My page is almost built out-of-the-box, except that I have a SingleSelection added to the result table. I have very little custom code in my processRequest, it looks like this:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OATableBean table = (OATableBean)webBean.findIndexedChildRecursive("ResultsRN");
    table.setTableSelectionText("Set Item number, then Select Equipment and...");
    table.setSelectionDisabledBindingAttr("DisableApproval");
    The page works fine after navigating back from the home page - except for the standard Next/Previous links in the results table. If I click the search button - for instance - a new search is being done ok.
    Appreciate if you can share an example what is needed to support back button in such a simple page.
    Thanks,
    Søren Moss

  • Exception thrown when using SDK 4.5.1 with debug flash player

    My setup:
    Windows 7
    Flash Builder 4 Premium, Version 4.0 (build 272416), volume license
    SDK 4.5.1
    RIATest 4.3, RIATestAgent4.swc
    I compiled our application using SDK 4.5.1 with these compiler setting:
    -locale en_US -use-network=false  -theme=Halo/halo.swc --keep-as3-metadata Test -define CONFIG::WITH_DEMS  true -define CONFIG::LP_MODULE true -includes  com.mycompany.automationDelegates.MyContainerAutomationImpl  com.mycompany.automationDelegates.MyFirstComponentAutomationImpl  com.mycompany.automationDelegates.MySecondComponentAutomationImpl  com.mycompany.automationDelegates.MyThirdComponentAutomationImpl  -include-libraries "C:\Program Files (x86)\RIATest  4\agent\RIATestAgent4.swc" "C:\Program Files (x86)\Adobe\Adobe Flash  Builder 4\sdks\4.5.1\frameworks\libs\automation\automation.swc"  "C:\Program Files (x86)\Adobe\Adobe Flash Builder  4\sdks\4.5.1\frameworks\libs\automation\automation_dmv.swc" "C:\Program  Files (x86)\Adobe\Adobe Flash Builder  4\sdks\4.5.1\frameworks\libs\automation\automation_agent.swc"
    When I run our application using  the debug 10.2 Flash Player, the following exception is thrown:
    ReferenceError: Error #1065: Variable Scroller is not defined.
    at flash.system::ApplicationDomain/getDefinition()
    at  mx.automation.delegates.containers::ApplicationAutomationImpl/getAutomationChildren()[E:\ dev\4.5.1\frameworks\projects\automation\src\mx\automation\delegates\containers\Applicatio nAutomationImpl.as:266]
    at mx.core::UIComponent/getAutomationChildren()[E:\dev\4.5.1\frameworks\projects\framework\s rc\mx\core\UIComponent.as:12919]
    at  mx.automation::AutomationManager/getAutomationChildrenArray()[C:\work\flex\dmv_automation \projects\automation_agent\src\mx\automation\AutomationManager.as:4895]
    at  com.riatest::CachedAutomationManager2/getAutomationChildrenArray()[C:\WORK\RIATest\Source \agent4\com\riatest\CachedAutomationManager2.as:46]
    at  mx.automation::AutomationManager/getChildrenRecursively()[C:\work\flex\dmv_automation\pro jects\automation_agent\src\mx\automation\AutomationManager.as:1252]
    at  mx.automation::AutomationManager/getChildren()[C:\work\flex\dmv_automation\projects\autom ation_agent\src\mx\automation\AutomationManager.as:1225]
    at com.riatest::CachedAutomationManager/getChildren()[C:\WORK\RIATest\Source\agent4\com\riat est\CachedAutomationManager.as:55]
    at  com.riatest.toolbar::DisplayListTreeDataDescriptor/getChildren()[C:\WORK\RIATest\Source\a gent4\com\riatest\toolbar\DisplayListTreeDataDescriptor.as:74]
    at  com.riatest.toolbar::DisplayListTreeDataDescriptor/hasChildren()[C:\WORK\RIATest\Source\a gent4\com\riatest\toolbar\DisplayListTreeDataDescriptor.as:112]
    at  com.riatest.toolbar::DisplayListTreeDataDescriptor/isBranch()[C:\WORK\RIATest\Source\agen t4\com\riatest\toolbar\DisplayListTreeDataDescriptor.as:117]
    at mx.controls::Tree/isBranch()[E:\dev\4.5.1\frameworks\projects\mx\src\mx\controls\Tree.as: 1552]
    at mx.controls::Tree/initListData()[E:\dev\4.5.1\frameworks\projects\mx\src\mx\controls\Tree .as:2858]
    at mx.controls::Tree/makeListData()[E:\dev\4.5.1\frameworks\projects\mx\src\mx\controls\Tree .as:1330]
    at mx.controls::List/www.adobe.com/2006/flex/mx/internal::setupRendererFromData()[E:\dev\4.5.1\frameworks\projects\mx\src\mx\controls\List.as:1699]
    at mx.controls::List/commitProperties()[E:\dev\4.5.1\frameworks\projects\mx\src\mx\controls\ List.as:896]
    at mx.controls::Tree/commitProperties()[E:\dev\4.5.1\frameworks\projects\mx\src\mx\controls\ Tree.as:1191]
    at mx.core::UIComponent/validateProperties()[E:\dev\4.5.1\frameworks\projects\framework\src\ mx\core\UIComponent.as:8209]
    at  mx.managers::LayoutManager/validateProperties()[E:\dev\4.5.1\frameworks\projects\framewor k\src\mx\managers\LayoutManager.as:597]
    at  mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.5.1\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:783]
    at  mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.5.1\frameworks\projec ts\framework\src\mx\managers\LayoutManager.as:1180]
    I contacted the folks who make RIATest, and they did their best to debug the problem. Their conclusion is:
    "The stack trace that you posted shows that  ApplicationAutomationImpl/getAutomationChildren calls  ApplicationDomain/getDefinition on line 266 and the call fails with an  error. This most likely indicates a bug in ApplicationAutomationImpl."
    This problem never occurred when we were compiling our code using SDK 3.4.1. What can I do to work around this and continue performing automated tests of our Flash applications?

    Try linking a Scroller into your app.

  • Issues with Zune music player pausing/stopping

    So the main reason I got this was for the Zune music player.  Has anyone else had issues with the music player pausing automatically?  I was using it on a run and it worked fine for a while, then the songs would keep pausing automatically after about 10 seconds.  I gave up after unpausing it like 20 times and finished my run in silence.  Then today I was listening to the radio, everything was fine for 30 minutes or so, then it shut off.  I took it out of my pocket and brought up the radio tuner, and it wouldn't let me change the station, it would just exit out of the screen automatically.  Now, several hours later, it seems to be working fine.
    Has anyone else had a similar issue?  Is there a firmware upgrade or something I can run?  Or do I just have a defective unit?

    This is not a common problem, from what I've read. So if it were my device, I would get a warranty exchange. The Zune player is the best feature, so I wouldn't put up with the pauses you're describing.

  • Problems using M Audio Fast Track with Garageband

    According to the blurb, the M Audio Fast Track (USB) 'is class compliant in Mac OSX offering true plug-and-play operation. Just plug in, and you're ready to start recording'. This is why I bought it, but I am experiencing no end of problems actually getting it to register with Garageband '08.
    The problems are (a) I cannot hear any sound coming 'through' the Fast Track and Garageband (b) I can hear the guitar if I plug the headphones into the Fast Track, but nothing is recorded in Garageband (c) my mic, which is plugged into the line socket intended for guitars because I don't have the larger connection, reports no sound at all.
    Any ideas, or tips to how others have managed to set up this 'plug-and-play' device would be greatly welcomed.

    Did you ever get this to work? I just today bought a Fast Track Pro. I have it hooked to my MBP via USB. I can see in control Panel two inputs:
    M-Audio Fast Track Pro UDB: Line Input
    M-Audio Fast Track Pro UDB: S/PDIF
    Problem is, there is no sound registering on the Input Level on either choose.
    I have the Power On and have tried both Input 1 & 2, bith in stereo and mono mode.
    (Just to be clear, I connect the electric guitar directly to the Fast track pro, correct?)
    I have read the owners manual but it is worthless. I thought this would be easy to set up.
    Also note that GarageBand preferences the Audio Output and Input are selected to Fast Track Pro.
    What am I doing wrong?

  • Using Old Map functionality "Tracking" with firmwa...

    Hi,
    We have lost the above functionality with latest firmware. Has anybody find any work around to restore above functionality?

    26-Dec-2007 10:53 PM
    maid wrote:
    I agree,
    How do I remove the Nokia Maps?
    I am going to install Route66.
    You can't uninstall Nokia Maps, it's part of the ROM. Just install whatever new app you want to use (tom tom, route66, google maps, etc.) and use it instead.

  • ITUNES downloads from store causing BSOD windows stop error- Please Help!

    Hi everyone,
    maybe someone can help me out or knows how to fix this problem.
    Problem in detail:
    This problem started since I updated to the latest version of itunes 7 to download video for my ipod video 30gb. Itunes worked perfect on my computer before updating as I used it with an ipod mini.
    I was able to use my new IPOD 30gb fine and transfer all my music to it correctly.
    The main problem occurrs when downloading anything from itunes store...1st noticed this when my podcasts were updating and downloading and then the system suddenly crashed with the windows blue screen error message and had to reboot. This happened multiple times so I disabled the automatic downloads of podcasts. Itunes then works fine when not downloading anything.
    I then tried purchasing a TV show, whole series, and when it began downloading, the Exact same Error and Blue screen will occur--Very Frustrating.
    I uninstalled ITUNES and Quicktime, and then reinstalled them via the latest download from itunes. The same errors still occur.
    When windows reboots and sends error report to Microsoft, it states the error is due to a Driver error of which the specific driver is not known.
    I have called apple/itunes support and spoke with them and they could not figure out the problem and said I should check with my computers cust service and/or microsoft as it was probably something on this end...I did this and they stated the problem must be something with itunes and especially since all other programs run fine on my system.
    SO basically I am going in circles trying to figure this out so I am hoping someone here may know how to fix this problem.
    Not only that, but I tried the same on my desktop as I figured I could at least download my podcasts and purchases to my desktop and then transfer to my ipod from there(as I am mainly using my labtop for my ipod) and updated my desktop to itunes 7 latest version,, and figured it would work on my desktop with same operating system----but it Caused the SAME error BSOD as my labtop and in same fashion....only when downloading from itunes.
    ANy help is much appreciated as I got the ipod video mainly because of ITUNES video content and podcasts and if I cannot use these major functions on ITUNES than This Was a Complete Waste for me to get the Video IPOD.
    Hope there is a way to fix
    Thanks

    I afraid can’t help much with this, but no one else
    has answered. It does seem very odd that two
    different computers have the same problem. It makes
    you wonder about the content you were trying to
    download. As a matter of interest was the
    installation for both computers done from the same
    download file?
    When your computer dies, can you read the stop
    message or does it disappear, if it does, go to
    Control Panel>System>Advanced
    Click Settings in Start Up and Recovery and make sure
    that Automatically Restart is no checked.
    You should be able to get a stop number from the blue
    screen and you may also be able to identify the
    filename of a driver, which could give a clue to the
    problem.
    The Microsoft Website has a certain amount of help on
    specific stop messages, you can search for the number
    of the stop message which will be something like
    0x0000000A.
    There is also some help on troubleshooting stop
    messages here:
    http://aumha.org/win5/kbestop.htm
    Thanks for your reply.
    As far as the content being downloaded from itunes---consisted of different podcasts and also on a separate occasion-the tv show Heroes complete season on ITUNES..So I would guess the error has nothing to do with the content being downloaded.
    The ITUNES installation for both computers was from the same itunes download file on this website on apples itunes free download.
    I did not write down the most recent stop numbers and no drivers seemed to be named on the blue screen from what I could tell, but I guess I could be missing something...
    From a previous crash with the BSOD- the error message listed was this: STOP: 0x00000050 (0xbad0b158, 0x00000000, 0x8056ea22, 00000002)
    not sure if this helps maybe figure out the cause of this or not.
    Maybe this will help get to the bottom of this.
    Thanks

  • Next/Prev in Report row counter

    How do you have the Next/Prev selectors appear with the row counter section at the bottom of reports.
    I created an SQL report, and although I selected use report pagination, the Next/Prev selectors are missing at the bottom of the report with the row counter.
    If I manually create an Next/Prev process, this build buttons outside the report row counter in the report region. Since all my other reports have the selectors inside the report with the counters, it looks goofy to sudddenly have Next/Prev buttons outside the report.
    Thanks

    Kevin,
    Edit the report's attributes and verify that pagination is indeed turned on. Also, are you using HTML DB 1.6?
    Sergio

  • Can quicktime play an video track with multiple alternate audio tracks?

    Hi,
    If I have a video track with multiple alternate audio tracks (say different languages), can a user select the audio track of his choice and play in Quick time?
    Thanks,
    Apurva

    Does quick time/ safari have this capability?
    QT (i.e., the QT structure embeded in current Mac OS/device IOS versions) has the ability to switch between alternative audio tracks assuming the file is properly encoded and the compression format is supported. QT 7, QT X, iTunes, and similar app player GUIs can switch between such tracks during playback but the QT plug-in cannot. In a similar manner, devices like TV can switch between such tracks but an iPhone cannot just as an iPhone can select "Chapters" but the QT browser plug-in cannot but an iPhone file programmed with both chapters and alternate audio tracks can be played back through a TV device and access both chapters and alternative audio tracks.
    What I want to use is one video track with alternate audio tracks in a set level manifest and play this using HTTP Live streaming. I'm using the manifest mentioned here :
    http://tools.ietf.org/html/draft-pantos-http-live-streaming-07#section-8.7
    Since I do not use playlists, I am not familiar with the approach in your example. If I want alternate audio and/or video tracks, I create standalone video files with these features built in. Nor do I use RTSP if that is what you mean by "live streaming" of content. If I want to "stream" the content, I use "Fast Start" files programmed to open in the QT player app which supports these features or create reference or QT Media Link files that do the same thing.
    As you mentioned, Safari on my iPhone is playing the default/first alternate audio track mentioned but not giving an option to switch tracks.
    Neither Safari nor the Video app GUIs on your iPhone have a built in switching option. The only way to switch to alternate audio tracks is to do so with QT 7 Pro or possibly iTunes before loading or streaming the video file. (Am still speaking about a standalone file here and not a programmed playlist/RTSP switch.)
    However Quick time on my Mac machine only plays the audio with the the video stream and not the alternate audio track.
    The QT player app GUI only switches between tracks that are stored as part of the standalone file. Basically, QT files may contain up to 99 individual data tracks. In alternative audio videos, multiple audio tracks are added to the file by an editor like QT 7 Pro but only one track is designated as "active." All other tracks are designated as "inactive." The QT player GUI allows the viewer to select which audio track he or she wants to hear and then turns off the current audio track and turns on the selected audio track. Otherwise all active tracks would play simultaneously.
    Is there a way to switch tracks on my iPhone on Safari?
    As previously noted, the default track can be manually changed by QT 7 Pro or, I believe, iTunes (used to have this capability) before actually loading or streaming content.
    Does quicktime have this capability?
    As far as I know, only with regard to stand alone files programmed with multiple alternate tracks. I am not a HTML, HTML5, or Java programmer so I assume there may be web alternatives here but they would be beyond the scope of my expertise.
    Do you know any free player that can do this?
    Again, I don't use either playlists or RTSP so I've never had a need to look for/use alternative players that might meet your needs. I simply find it easier to build files that work correctly in current player app/device GUIs already having these capabilities.
    Or the very last option, can I build a player to do this? If yes can you suggest where/how I start?
    Once again, I assume this might be possible but not part of my experience since, for my part, easier work flows are available.

  • Is there a (relatively simple) way to skip tracks with an iPod touch 5th gen using a physical button? I'm aware songs can be skipped on-screen without unlocking the iPod, but I'm looking for a method that doesn't require taking my eyes off the road.

    Is there a (relatively simple) way to skip tracks with an iPod touch 5th gen using a physical button? I'm aware songs can be skipped on-screen without unlocking the iPod, but I'm looking for a method that doesn't require taking my eyes off the road while driving. For that reason, I'm also not interested in adding in headphones or additional devices that have the desired button functions. Going both forward and back would be great but I would be pleased just to have a "sight-free" way to go forward.
    I've seen some mention here and there about ways to maybe change it so the volume buttons change tracks and holding the volume buttons changes the volume... but I don't know what's involved in that or if its even possible/recommended for a new 5th gen iPod. I think its a great device but its sadly lacking in music oriented functions and features... which is disappointing since music is why most people would bother getting one instead of some other "iDevice" :/

    Given that you cannot do what you have asked for, perhaps you simply need to find another solution to your root problem.
    Presumably, you want to skip to the next track because you don't want to hear the current one, and that is because...
    You don't like it.
    You've heard it recently and don't want to hear it now.
    Simply don't want to hear it at this time.
    For problem number 1. Don't put it on the iPod in the first place. (I know, obvious answer!)
    For problem number 2. How about playing from a Smart Playlist (initially created in your iTunes Library) which has only songs you've not played recently?
    For problem number 3. Hhhmmm! Create alternative Playlists for use in the car.
    As for going back to the start of the "now playing" track.... Well, if your Playlist has only songs that you really, really want to hear, then you'll be looking forward to that rather go back to the beginning of the current song.
    I'm not trying to be prescriptive, just giving you food for thought.
    (They are all cheaper options than buying a car which can control the iPod from the steering wheel.)

  • HT1595 Trying to connect my new apple tv to the wireless network. When I try to use the remote, the Apple TV doesn't respond (doesn't go to the next screen). Could this be caused by a weak wireless signal?

    Trying to connect my new Apple TV to the wireless network. When I try to use the remote the Apple Tv doesn't respond ( doesn't go to the next screen). Could this be caused by a weak wireless signal?

    It is not properly connected to the network.
    Make sure location is set correctly
    DNS should be on auto (settings - general - network)
    Try ethernet
    Signal strength on device won't account for issues, you would need a network report from istumbler, netstumbler or similar. This will show accurate signal strength along with noise and nearby networks

  • How can I use the old Apple TV with new iTunes?  It tells me to input a code in iTunes but iTunes no longer has a spot to input this code to allow sync.  I can access the iTunes Store fine, just none of my Library

    How can I use the old Apple TV with new iTunes?  It tells me to input a code in iTunes but iTunes no longer has a spot to input this code to allow sync.  I can access the iTunes Store fine, just none of my Library

    read this
    https://discussions.apple.com/message/20429789#20429789

  • When streaming a movie with the new Apple TV, and using a DSL Internet connection, all audio sound works, e.g., the music track, but the audio track with the actor's voices, does not work. What can I do?

    When streaming a movie with the new Apple TV, and using a DSL Internet connection, all audio sound works, e.g., the music track, but the audio track with the actor's voices, does not work. What can I do?

    Hi Brian,
    Thanks restoring and restarting didn't fix my problem - i have started it fresh and still it doesn't work. Basically I press ONCE on the remote, after the machine has not had any commands for 10 minutes, and the cursor skips from one end of the menu to the other - so I can't choose network or update software etc - I sometimes manage to stop it randomly in the middle of the menu if I press on a command in the middle of the cursor skipping all the menu steps...not sure what the problem is but I have basically not used my brand new apple tv since I bought it for that reason! I should call Apple support I suppose! grrrr hate wasting time with stuff like this!
    Thanks for your help though!
    Pernille

Maybe you are looking for

  • Portal Site Locks up Computer

    Hello, I posted the following to the Portal Metalink Forum and haven't had a reply as of yet. I was just wondering if anybody here has any ideas as to what to look for with this issue? Thanks, Joe <<<Posted to Metalink last week>>> Hi, we have our co

  • Apple mobile device service not started please help

    Each time i try to sync my iphone to itunes it keeps on saying "apple mobile device service not started" I know how to start it and everything its that when i start it it says "Windows could nt start the Aplle Mobile Device service on local computer"

  • 2 External Monitors from Thunderbolt

    Is there a way for me to drive 2 external DVI displays from the combo Thunderbolt/MiniDisplay Port on the 2011 MBP's? As nice as Apple's Thunderbolt Cinema displays are, they are a bit out of my price range.

  • Password doesn't work on iPhone

    Hello, I have a problem with my password in Appstore on my iPhone. It says that the password isn't correct and I have changed the password a few times without any success. I can login on Apple.com with my password so apperently it works there, but no

  • Macbook crashes when on battery power

    Laterly my macbook, which is uses very often, suddenly crashes every now and then when it's on battery power. Even when it's is (almost) full. It's 18 month's old. With the ac lead in everything is fine. Could there be something wrong with the batter