[svn:osmf:] 14765: Put gate around autoRewind code, to prevent possibility of an infinite loop ( which could happen if you create a SerialElement with the last child a DurationElement of duration zero ).

Revision: 14765
Revision: 14765
Author:   [email protected]
Date:     2010-03-15 13:48:04 -0700 (Mon, 15 Mar 2010)
Log Message:
Put gate around autoRewind code, to prevent possibility of an infinite loop (which could happen if you create a SerialElement with the last child a DurationElement of duration zero).
Modified Paths:
    osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as

Step by step, how did you arrive at seeing this agreement?

Similar Messages

  • I put guided access on and stretched the whole thing put a passcode, and now i cant exit it because it doesnt work and says that you need to triple tap the home button, i cant put the passcode as it is disabled

    i put guided access on and stretched the whole thing put a passcode, and now i cant exit it because it doesnt work and says that you need to triple tap the home button, i cant put the passcode as it is disabled

    If you can't enter the passcode then you have to place the iPod in recovery mode and then restore the iPod via iTunes. For ecovery mode see:
    iPhone and iPod touch: Unable to update or restore
    Note that this requires using the sleep/wake button.  If you are not successful then there is nothing else that I know you can do.

  • I believe there's an option to the bookmark bar 'wrapping' around with the last bookmarks hidden from view.

    Before Firefox crashed last nite, I had them in 'two layers', but I can't remember how I did that to put them back.
    By that I mean the bookmarks wrapped around to a 2nd strip (instead of the last ones being hidden under the little >> sign at the right of the strip.)
    I want them back where I can see all of them at once.... TKU.

    The "restore disk" is built into the Mac. See About Recovery.
    Need more specifics about what error messages you got while installing Adobe Flash.
    However, you can almost avoid Flash altogether by setting YouTube to play the HTML5 version instead.
    Click the Try something new! link at the bottom of the YouTube page.
    I don't know about the sound issue. Might be hardware as you think. Try other headphones to check.

  • How do I create a session with the datasource set in code not sessions.xml

    I want to create a session where I specify the J2EE datasource name dynamically in code. Normally, I would hard-code a J2EE datasource name in sessions.xml e.g.
    <login>
    <datasource>jdbc/MyApplicationDS</datasource>
    <platform-class>oracle.toplink.platform.database.oracle.Oracle10Platform</platform-class>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    <uses-external-transaction-controller>true</uses-external-transaction-controller>
    </login>
    However, we don't want to use a hard-coded string "jdbc/MyApplicationDS". We want to be able to set this at runtime.
    I found this in the App Developer's Guide:
    Configuring an External Connection Pool in Java
    To configure the use of an external connection pool in Java:
    1. Configure the DataSource on the server.
    2. Configure the Login to specify a DataSource and the use of an external connection pool:
    login.setConnector(
    new JNDIConnector(new InitialContext(), "jdbc/MyApplicationDS"));
    login.setUsesExternalConnectionPooling(true);
    and this:
    Configuring Sessions with the sessions.xml File
    OracleAS TopLink provides two ways to preconfigure your sessions: you can export and compile Java source code from the OracleAS TopLink Mapping Workbench, or use the OracleAS TopLink Sessions Editor to build a session configuration file, the sessions.xml file.
    It seems like I should export and compile Java code that calls login.setConnector(), but I can't find out any information on how to do this. I looked at the MW user guide and I didn't see anything on this.
    I also found this by searching this discussion forum:
    To create a server session completely from code given a project you can use,
    project.getLogin().setConnector(new JNDIConnector(new InitialContext(), "your-datasource-url"));
    project.getLogin().setUserName("");
    project.getLogin().setPassword("");
    Server server = project.createServerSession();
    server.login();
    However, I don't know how to get the project.
    Thanks,
    Vicki

    If you are using a sessions.xml file, you can get your project from your session. Ensure that when you access your session from the SessionManager, that you do not have it login.
    Session session = SessionManager.getManager().getSession("my-session", false);
    session.getProject().setConnector(...);
    session.login();
    If not using a sessions.xml, you can either read your Project from the XMLProjectReader, or instantiate your Project class directly.

  • Having mail 4.5 issues- open mail and get a new features message so I must import messages first in order to use mail 4.5.  Just recently put in MAC OSX 10.6.7.  Once it imports click done to start using mail, but end up with the rainbow wheel? Now What?

    Having mail 4.5 issues- open mail and get a new features message that says in order to use the new features, I must import existing messages into the new version first in order to use mail 4.5.  Just recently put in MAC OSX 10.6.7.  Once it imports I am to click done to start using mail, but end up with the rainbow wheel of death and it also says you cannot use mail until the import is finished? Now What?

    Is Mail still "spinning"?  If it's been doing that for a while, I'd kill it, using either Activity Monitor or the OS X application picker.  Then relaunch Mail and see what happens.
    Two "by the ways":
    1) Your system details mention an PPC iMac.  Since a non-Intel Mac can't run OS X 10.6, you seem to have another Mac.  You might want to consider updating your system details.
    2) You seem to have been misled by the poor labeling of the message composition fields on this forum into trying to enter your entire post into the "subject" field.  In the future, just enter a summary of your post there and the main text into the field below it.

  • [svn:osmf:] 13401: PARB changes: removing nesting capabilities from MediaContainer, and introducing a separate MediaContainerGroup class ( that is not a MediaContainer) that now holds the functionality.

    Revision: 13401
    Revision: 13401
    Author:   [email protected]
    Date:     2010-01-09 07:37:48 -0800 (Sat, 09 Jan 2010)
    Log Message:
    PARB changes: removing nesting capabilities from MediaContainer, and introducing a separate MediaContainerGroup class (that is not a MediaContainer) that now holds the functionality.
    Modified Paths:
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaContainersSample .as
        osmf/trunk/framework/MediaFramework/.actionScriptProperties
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/containers/HTMLMediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/containers/IMediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/containers/MediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/display/MediaPlayerSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/containers/TestMediaContainer.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/display/MediaContainerGroup.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/display/TestMediaContainerGroup.as

    Hi,
    these concepts are used and implemented in jGuard(www.jguard.net) which enable easy JAAS integration into j2ee webapps across application servers.
    cheers,
    Charles(jGuard team).

  • HT1212 While setting up using my home Wi-Fi I followed the direction on the screen, put in my Apple ID and password,& pass code that would lock my phone, now that it's activated I can't unlock it with the pass code! What do I do now?

    I  contacted my service provider and they told me to codec my iPhone to iTines on a computer, and follow the direction to set my hone back to the factory settings, I have nothing on it yet so I tried this,  the iTunes Icon comes up with a lock under it. The phone vibrates part way through the process and still won't unlock. Now what do I do?

    Sorry I didn't mean to hit the other button!   But I did that suggestion three different times yesterday and it didn't seem to work!  Still locked out of my phone! And when I turned it on just now it did the same thing, ( vibrated and wouldn't unlock)!  Only this time it told me to connect to iTunes!  But last night when I did this iTunes had a lock on it! 

  • My ipod touch is stolen with code, can he unlock my code? I thought it could only be done if it was plugged in with the last used computer

    Someone stole mu ipod touch, but can the thief unlock my code? Some people say it can be done by resetting it on a computer, please answer

    hosert,
    They can reset it by restoring your device to factory settings via iTunes on his or her computer, but when they do that they erase all YOUR content and settings in the process.  Either way, I would change the passwords to the all the accounts you were using or had set up on that iPod.
    B-rock

  • I keep getting input/output error put when trying to make a complet copy of my hard drive, which also has vista using fusion.i have did the permissions and repaired, disk verify.

    error input/output

    Yes. Formatted correctly. It' s new ext HD and I made a the first back up on it a few days ago using time machine while my computer was in safe mode. When I was able to restart my computer normally I quickly set up a time machine backup to my larger 5 TB ext drive. Also new and formatted for my mac. I was in a rush to get it going before I left for work so maybe I did something wrong. IDK. I can't remember but it did ask me about switching drives vs setting up. Although I don't see why the computer wouldn't see the drive.
    I did try another firewire cable and no change. Checked connections again.  The HD turns on and the blue light comes on  (it's a La Cie d2 quadra deskdrive)
    Is the SMC reset where you detach devices and restart?  My printer, keyboard and mouse are all wireless and right now I don't have anything else connected.
    I'll try another PRAM reset too.
    *  Question:
    When I connect the 3 TB drive it starts up but I don't see it on my desktop, finder sidebar or in disk utility. If a hard drive starts up but doesn't show up on your computer how do you safely shut it down before disconnecting?  I've been clicking on the desktop and then pressing the eject button on my keyboard just in case.

  • HP Remote Control. Who gave you permition to put it on my computer with the last unasked for update

    Yesturday my computer informs me that it will restart in four minutes to update and when it restared my user account shows HP remote control as a user. Like hell! I paid for it, it;s my computer the only person who has a right to control it is me! And if I want an update I'll ask for it.

    Well said.

  • With the new 'PODCAST' app how do I put podcasts in playlist

    With the new 'PODCAST' app how do I put podcasts in playlist so they play consecutively?

    I found that if I play the podcasts starting with the last one when it ends it will play the previous one automatically.

  • HTTP response contains status code 503 with the description

    <SAP:ApplicationFaultMessage namespace="" />
    <SAP:Stack>HTTP response contains status code 503 with the description
    Service Unavailable Error when sending by HTTP (error code: 503, error
    text: Service Unavailable)</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    Please advice. Initially we thought the J2EE services were unavailable . But now even when the services are running we still have the same issue when there is a http call from an external application to XI . The message get posted but there is an error on the response back to the external application.
    Even the contract which was supposed to be created in ERP from the external application did not get created.
    Please advice.
    Thanks,
    Nivedita

    Hi Nivedita,
    503 means Service Unavailable
    just check whether you cn ping the  HTTP server host and port is open.
    if not then consult the vedor and make both open first.
    Also if you want to restart the java engine
    then run T-code SMICM
    Then go to administration then JAVA restart soft.
    it will help you.
    Regards,
    Sumit Gupta

  • [svn:osmf:] 10248: Fix a few bugs related to the interaction between IPlayable, IPausable, and ITemporal within a SerialElement, specifically around ensuring that the transition from child to child happens in the various permutations of these traits .

    Revision: 10248
    Author:   [email protected]
    Date:     2009-09-14 16:45:00 -0700 (Mon, 14 Sep 2009)
    Log Message:
    Fix a few bugs related to the interaction between IPlayable, IPausable, and ITemporal within a SerialElement, specifically around ensuring that the transition from child to child happens in the various permutations of these traits.  Introduce a helper class for managing this logic, as it can happen in both CompositePlayableTrait and CompositeTemporalTrait.  This lays the groundwork for a MediaElement which only implements IPlayable (e.g. to ping a tracking server) working within a serial composition.  Beef up unit tests so that these cases don't get broken in the future.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/composition/CompositePlayableTrai t.as
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/composition/CompositeTemporalTrai t.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/composition/TestSerialEle ment.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/composition/SerialElementTransiti onManager.as

    Hi,
    Found a note explaining the significance of these errors.
    It says:
    "NZE-28862: SSL connection failed
    Cause: This error occurred because the peer closed the connection.
    Action: Enable Oracle Net tracing on both sides and examine the trace output. Contact Oracle Customer support with the trace output."
    For further details you may refer the Note: 244527.1 - Explanation of "SSL call to NZ function nzos_Handshake failed" error codes
    Thanks & Regards,
    Sindhiya V.

  • [svn:osmf:] 13412: WebPlayer: optimizing JS code to forward all query string parameters to WebPlayer.swf .

    Revision: 13412
    Revision: 13412
    Author:   [email protected]
    Date:     2010-01-11 02:02:20 -0800 (Mon, 11 Jan 2010)
    Log Message:
    WebPlayer: optimizing JS code to forward all query string parameters to WebPlayer.swf.
    Modified Paths:
        osmf/trunk/apps/samples/framework/WebPlayer/html-template/index.template.html
        osmf/trunk/apps/samples/framework/WebPlayer/src/Configuration.as

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • [svn:osmf:] 18007: 1. Remove two unused message code from MediaErrorCodes. as

    Revision: 18007
    Revision: 18007
    Author:   [email protected]
    Date:     2010-10-04 14:29:48 -0700 (Mon, 04 Oct 2010)
    Log Message:
    1. Remove two unused message code from MediaErrorCodes.as
    2. Fix bug FM-1041, extend timeout from 15 seconds to 60 seconds for multicast.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-1041
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/F4MLoader.as
        osmf/trunk/framework/OSMF/org/osmf/events/MediaErrorCodes.as
        osmf/trunk/framework/OSMF/org/osmf/net/MulticastNetLoader.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetConnectionFactory.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetNegotiator.as
        osmf/trunk/framework/OSMF/org/osmf/utils/OSMFStrings.as

    bringrags wrote:
    We do indeed recommend replacing the osmf.swc from a Flex 4 project if you're going to use OSMF in Flex 4, but you may (will?) run into issues if you attempt to use Flex's VideoPlayer within that project.  Note also that you'll need to replace osmf.swc for each individual project (or edit your flex-config.xml file to point to the updated SWC).
    In terms of future plans, we are working closely with the Flex team to ensure that their next release ships with the latest OSMF version.  No ETA on that though.
    I have followed the recommendations and removed the old version of swc and replaced it with the release version. And so far the video and audio players work fine without errors.
    But looking at the flex-config.xml I see that it still points to the old version.
    <!-- OSMF SWC -->
        <runtime-shared-library-path>
    <path-element>libs/osmf.swc</path-element>
    <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.0.0.14159/osmf_flex.4.0.0.13495.swz</rsl-url>
    <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
    <rsl-url>osmf_flex.4.0.0.13495.swz</rsl-url>
    <policy-file-url></policy-file-url>
    </runtime-shared-library-path>
    Could you elaborate a little bit more on editing this part of flex-config.xml?
    Thanks,
    FTQuest

Maybe you are looking for