[svn:osmf:] 14903: ChromeLibrary update:

Revision: 14903
Revision: 14903
Author:   [email protected]
Date:     2010-03-22 05:28:17 -0700 (Mon, 22 Mar 2010)
Log Message:
ChromeLibrary update:
Unbinding chrome font and visuals from the ChromeLibrary project,
Introducing asset loaders, that can load imagery and fonts either from file, or from embedded tags,
Introducing AssetsManager, a class that loads a set of assets, exposing loaded assets by a string identifier,
Introducing a number of 'resource' classes, used by assets loaders to determine the type of asset to load,
Introducing a number of 'asset' classes, used by assets loaders to export their loaded content to, as well as by widgets to reference an asset.
Introducing AssetsParser, a class that translates XML formatted assets definitions into a set of resource classes.
Introducing Scale9Bitmap that allows usage of a scale9 rectangle on bitmaps,
Changing all widgets to be LayoutTargetSprite derived, enabling them to be laid out using the OSMF layout APIs.
Extending Widget with child management functions, allowing any widget to have children.
Introducing WidgetsParser, a class that translates XML formatted widget definitions into a set of Widget classes.
Introducing Configuration, a class that loads an XML file that contains asset- and widget definitions, and sets up an assets manager if so desired.
Updating both OSMFPlayer and ControlBarPlugin projects to provide their own chrome visuals and fonts using the new configuration system. OSMFPlayer uses run-time asset loading (meaning that all assets are to be uploaded to server alongside the player SWF), and ControlBarPlugin uses embedded resources.
Modified Paths:
    osmf/trunk/apps/samples/framework/OSMFPlayer/.project
    osmf/trunk/apps/samples/framework/OSMFPlayer/html-template/index.template.html
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/OSMFPlayer.as
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/Preloader.as
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/eject_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/fullScreenEnter_disabled.p ng
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/fullScreenEnter_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/fullScreenEnter_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/fullScreenLeave_disabled.p ng
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/fullScreenLeave_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/fullScreenLeave_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/live_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/live_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/live_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/pinUp_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/pinUp_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/pinUp_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/play_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/qualityIncrease_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/quality_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/quality_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/quality_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/record_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/soundMore_disabled.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/src/ControlBarElement.as
    osmf/trunk/apps/samples/plugins/ControlBarPluginSample/.project
    osmf/trunk/libs/ChromeLibrary/.actionScriptProperties
    osmf/trunk/libs/ChromeLibrary/.flexLibProperties
Added Paths:
    osmf/trunk/apps/samples/framework/OSMFPlayer/assets source/
    osmf/trunk/apps/samples/framework/OSMFPlayer/assets source/assets.ai
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/PlayerConfiguration.as
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/configuration.xml
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/cancel_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/cancel_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/cancel_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/submit_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/submit_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/submit_up.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/Standard0755.swf
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/Standard0755_readme.txt
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/backDrop.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/configuration.xml
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/pause_disabled.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/pause_down.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/pause_up.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/play_disabled.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/play_down.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/play_up.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/scrubBarTrack.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/scrubber_disabled.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/scrubber_down.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/scrubber_up.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/stop_disabled.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/stop_down.png
    osmf/trunk/apps/samples/plugins/ControlBarPlugin/assets/stop_up.png
    osmf/trunk/libs/ChromeLibrary/org/
    osmf/trunk/libs/ChromeLibrary/org/osmf/
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/Asset.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/AssetLoader.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/AssetResource.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/AssetsManager.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/BitmapAsset.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/BitmapResource.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/DisplayObjectAsset.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/FontAsset.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/FontResource.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/Scale9Bitmap.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/SymbolAsset.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/assets/SymbolResource.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/configuration/
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/configuration/AssetsParser.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/configuration/Configuration.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/configuration/LayoutAttributesParser.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/configuration/WidgetsParser.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/events/
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/events/ScrubberEvent.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/metadata/
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/metadata/ChromeMetadata.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/AuthenticationDialog.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/AutoHideWidget.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/ButtonWidget.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/ContextMenuOverlay.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/EjectButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/FadingLayoutTargetSprite.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/FullScreenEnterButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/FullScreenLeaveButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/LabelWidget.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/LiveButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/PauseButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/PinDownButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/PinUpButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/PlayButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/PlayableButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/QualityDecreaseButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/QualityIncreaseButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/QualityLabel.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/QualityModeToggle.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/RecordButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/ScrubBar.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/Scrubber.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/SoundLessButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/SoundMoreButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/StopButton.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/URLInput.as
    osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/widgets/Widget.as
Removed Paths:
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/Configuration.as
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/controlBarBackdrop.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/minus_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/minus_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/minus_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/plus_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/plus_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/plus_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/qualityAuto_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/qualityAuto_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/qualityAuto_up.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/qualityManual_disabled.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/qualityManual_down.png
    osmf/trunk/apps/samples/framework/OSMFPlayer/src/assets/images/qualityManual_up.png
    osmf/trunk/libs/ChromeLibrary/assets/
    osmf/trunk/libs/ChromeLibrary/src/

Similar Messages

  • [svn:osmf:] 14521: ChromeLibrary: moving live and recording buttons to the left hand side of the control bar , and making the button backdrops a little bigger.

    Revision: 14521
    Revision: 14521
    Author:   [email protected]
    Date:     2010-03-02 12:47:27 -0800 (Tue, 02 Mar 2010)
    Log Message:
    ChromeLibrary: moving live and recording buttons to the left hand side of the control bar, and making the button backdrops a little bigger.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/assets/control bar.ai
        osmf/trunk/libs/ChromeLibrary/assets/images/eject_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/fullScreenEnter_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/fullScreenLeave_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/pause_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/play_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_up.png
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/ControlBar.as

    Revision: 14521
    Revision: 14521
    Author:   [email protected]
    Date:     2010-03-02 12:47:27 -0800 (Tue, 02 Mar 2010)
    Log Message:
    ChromeLibrary: moving live and recording buttons to the left hand side of the control bar, and making the button backdrops a little bigger.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/assets/control bar.ai
        osmf/trunk/libs/ChromeLibrary/assets/images/eject_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/fullScreenEnter_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/fullScreenLeave_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/pause_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/play_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_up.png
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/ControlBar.as

  • [svn:osmf:] 15972: ChromeLibrary: adding rudimentary support for loading plug-ins defined in XML.

    Revision: 15972
    Revision: 15972
    Author:   [email protected]
    Date:     2010-05-08 07:31:24 -0700 (Sat, 08 May 2010)
    Log Message:
    ChromeLibrary: adding rudimentary support for loading plug-ins defined in XML.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/.flexLibProperties
        osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/application/ChromeApplication.as
    Added Paths:
        osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/configuration/PluginsParser.as

    rnair wrote:
    I am trying to install Oracle 11g R2 on my windows 7, 64bit computer. After 42% of installation, it started showing some files are missing. Few of them are:
    C:\app\User\product\11.2.0\dbhome_1\owb\external\oc4j_applications\applications\WFMLRSVCApp.ear
    C:\app\User\product\11.2.0\dbhome_1\oc4j\j2ee\oc4j_applications\applications\WFMLRSVCApp.ear
    C:\app\User\product\11.2.0\dbhome_1\owb\external\oc4j_applications\applications\WFMGRApp.ear
    C:\app\User\product\11.2.0\dbhome_1\oc4j\j2ee\oc4j_applications\applications\WFMGRApp.ear
    C:\app\User\product\11.2.0\dbhome_1\owb\bin\win32\owb.tmp
    C:\app\User\product\11.2.0\dbhome_1\owb\bin\win32\setowbenv.tmp
    C:\app\User\product\11.2.0\dbhome_1\oc4j\j2ee\OC4J_DBConsole\config\system-application.xml
    And the final pop up winow says:
    Database configuration Assistant:Info
    *"Template General_Purpose.dbc does not exists. Please specify an exixting template for database creation"*
    *"[INS-20802] Oracle Database Configuration Assistant failed"*
    Details:
    Cause:- The plug-in failed in its perform method
    Action:- Refer to the logs or contact Oracle Support Services.
    Following are the last few lines of the log file. Can anyone please help me to fix this problem?<snip>
    the error has nothing to do with DBCA. DBCA was simply the last in a long string of victims.
    Go back and read the instructions where you downloaded the install media. They state that the TWO zip files you download must be unzipped into the same directory.

  • [svn:osmf:] 15867: asdocs: Update to accomodate generating OSMF for Flex 4. 0 asdocs from OSMF 1.0 source with as few changes as possible.

    Revision: 15867
    Revision: 15867
    Author:   [email protected]
    Date:     2010-05-02 19:36:51 -0700 (Sun, 02 May 2010)
    Log Message:
    asdocs: Update to accomodate generating OSMF for Flex 4.0 asdocs from OSMF 1.0 source with as few changes as possible.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/display/ScaleMode.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

  • [svn:osmf:] 10364: Latest updates to the Dynamic Streaming sample app , and a few bug fixes.

    Revision: 10364
    Author:   [email protected]
    Date:     2009-09-17 14:49:03 -0700 (Thu, 17 Sep 2009)
    Log Message:
    Latest updates to the Dynamic Streaming sample app , and a few bug fixes.
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/.project
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/composition/ParallelSwitchableTra it.as
    Property Changed:
        osmf/trunk/libs/adobe/NetMocker/
        osmf/trunk/libs/adobe/StrobeUnit/

    Thanks 
    Now we can call and game at the same time
    Life is a train. You can choose your path choice, but you can not choose when the track will end...
    Where will the track take you?
    If my post has answered your question. Please mark it as an answer.

  • [svn:osmf:] 14326: ChromeLibrary: fixing hints from appearing at the wrong vertical offset, and preventing scrub bar time remaining calculations to go negative.

    Revision: 14326
    Revision: 14326
    Author:   [email protected]
    Date:     2010-02-22 08:10:39 -0800 (Mon, 22 Feb 2010)
    Log Message:
    ChromeLibrary: fixing hints from appearing at the wrong vertical offset, and preventing scrub bar time remaining calculations to go negative.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/ScrubBar.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/hint/Hint.as

  • [svn:osmf:] 13236: Additional updates for ViewTrait API changes.

    Revision: 13236
    Revision: 13236
    Author:   [email protected]
    Date:     2009-12-30 23:19:55 -0800 (Wed, 30 Dec 2009)
    Log Message:
    Additional updates for ViewTrait API changes.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/posterframe/RTMPPosterF rameElement.as
        osmf/trunk/apps/samples/framework/HTMLGatewaySample/HTMLGatewaySample.as
        osmf/trunk/apps/samples/framework/HelloWorld/HelloWorld4.as
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeMediaTraitFactory.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/MediaFramework/org/osmf/proxies/ListenerProxyElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/swf/SWFElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/DisplayObjectTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/MediaTraitBase.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/MediaTraitType.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/OSMFStrings.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestParallelElementWithD isplayObjectTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestSerialElementWithDis playObjectTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/gateways/TestRegionGateway.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestMediaElementLayoutTarget. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamDisplayObjectTrait. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as
        osmf/trunk/framework/MediaFrameworkIntegrationTest/org/osmf/content/TestContentElementInt egration.as
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/adapter/MASTAdapter.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelDisplayObjectTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialDisplayObjectTrait.as
    Removed Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelViewTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialViewTrait.as

    In reference to this change in the Custom Reports... Better experience when exporting data - to prevent customer confusion when exporting data from Mac computers, we have removed the export to excel option and exporting in CSV format by default.
    What is the customer confusion we are trying to stop here? I've got even more confused customers at the moment because all of a sudden they can't find the export to excel option but know it exists if they log in on a PC?
    Mark

  • [svn:osmf:] 16553: Only update current time if not buffering.

    Revision: 16553
    Revision: 16553
    Author:   [email protected]
    Date:     2010-06-14 11:31:37 -0700 (Mon, 14 Jun 2010)
    Log Message:
    Only update current time if not buffering.  Addresses FM-912.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-912
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/view/MainWindow.as

    clemensg wrote:
    But the majority is still very old.
    The bash version used in Mavericks is 6 years old.
    That is a completely different issue. Bash, and a few other key pieces of open source software, switched to the GPLv3 license sometime in 2007. That license was designed specifically to keep Apple from using the software.
    The version of bash on Mavericks is all that you will ever, ever get unless you build your own. I suggest trying out zsh which is under no such licensing contraints. The lastest version of zsh is included in Mavericks.
    Do you think it helps to create a feature request to update OpenSSL, etc. at radar.apple.com ? (I am thinking about Mac OS X 10.10)
    That would be a good idea. While I understand Apple's approach, it isn't great from a marketing perspective. Apple really does need to switch to the latest OpenSSL, even if only for appearance's sake.

  • [svn:osmf:] 13494: Update build script to work with Flex 4 SDK.

    Revision: 13494
    Revision: 13494
    Author:   [email protected]
    Date:     2010-01-13 20:30:13 -0800 (Wed, 13 Jan 2010)
    Log Message:
    Update build script to work with Flex 4 SDK.
    Modified Paths:
        osmf/branches/flex4/build/build.xml

    No, you don't need Flash Builder to use the Flex SDK. If you download the SDK and unzip it, you'll find a 'bin' directory that has the mxmlc compiler in it. You can compile Actionscript or MXML files using that.
    ./mxmlc MyFlexApp.mxml
    If you are building an AIR application, you will use amxmlc
    ./amxmlc MyAIRFlexApp.mxml
    Then, launch your AIR application using adl
    ./adl.exe MyAIRFlexApp-app.xml
    Hope this helps,
    Joan

  • [svn:osmf:] 10589: Updated the readme. txt for the VASTSample based on feedback in the OSMF forum.

    Revision: 10589
    Author:   [email protected]
    Date:     2009-09-25 10:15:31 -0700 (Fri, 25 Sep 2009)
    Log Message:
    Updated the readme.txt for the VASTSample based on feedback in the OSMF forum.
    Modified Paths:
        osmf/trunk/apps/samples/libs/VASTSample/readme.txt

    A good solution. Liked it very much. Can you please make it a technet blog for others.
    [email protected]

  • [svn:osmf:] 10991: Fix bug FM-119, where the playhead time doesn' t get updated until after the seek has completed.

    Revision: 10991
    Author:   [email protected]
    Date:     2009-10-17 22:52:28 -0700 (Sat, 17 Oct 2009)
    Log Message:
    Fix bug FM-119, where the playhead time doesn't get updated until after the seek has completed.  The bug is actually in Flash Player (FP-1705), and the workaround is to wait until NetStream.time gets updated before dispatching the seek completion event.  This changelist also updates the unit tests and NetMocker to verify the fix.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-119
        http://bugs.adobe.com/jira/browse/FP-1705
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISeekable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestSeekableTrait.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStream.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetStream.as

    Revision: 10991
    Author:   [email protected]
    Date:     2009-10-17 22:52:28 -0700 (Sat, 17 Oct 2009)
    Log Message:
    Fix bug FM-119, where the playhead time doesn't get updated until after the seek has completed.  The bug is actually in Flash Player (FP-1705), and the workaround is to wait until NetStream.time gets updated before dispatching the seek completion event.  This changelist also updates the unit tests and NetMocker to verify the fix.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-119
        http://bugs.adobe.com/jira/browse/FP-1705
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISeekable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestSeekableTrait.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStream.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetStream.as

  • [svn:osmf:] 16068: Update @includeExample to add symbolic "examples" relative path (that is expanded by the build process).

    Revision: 16068
    Revision: 16068
    Author:   [email protected]
    Date:     2010-05-12 11:17:11 -0700 (Wed, 12 May 2010)
    Log Message:
    Update @includeExample to add symbolic "examples" relative path (that is expanded by the build process).
    Also added -noswf option as we are not compiling the example into a swf for the asdocs.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayerSprite.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • [svn:osmf:] 13083: Updated MASTAdapter class with new trait names and events.

    Revision: 13083
    Revision: 13083
    Author:   [email protected]
    Date:     2009-12-17 16:10:05 -0800 (Thu, 17 Dec 2009)
    Log Message:
    Updated MASTAdapter class with new trait names and events.
    Modified Paths:
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/adapter/MASTAdapter.as
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/osmf/test/mast/TestMASTPluginInfo.as
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/osmf/test/mast/adapter/TestMASTAdapt er.as

    Silviu!
    I'm really sorry, but as all the office is trying to fix the problem, someone replaced the url content with the stuff that was pointing to the local machine.
    I've fix it, and the video player is available here again: http://pp.player.webtv.flumotion.com/params/apiKey/5PzLR2ULL3z2rumJ/videoId/60
    If there are other references to the localhost, please do not bother with them, as they do not affect player functionality.
    The stream that it uses is an RTMPE, so i'm afraid it will only works with this player. Anyway, the stream url is as follows: rtmpe://87.248.205.81/a4349/e2/veo7/ondemandrtmpe/mp4/med/first-person-mario-4d8741aa.mp4
    I really appreciate your help!
    Thank you!

  • [svn:osmf:] 10481: Updated unit tests.

    Revision: 10481
    Author:   [email protected]
    Date:     2009-09-21 18:01:12 -0700 (Mon, 21 Sep 2009)
    Log Message:
    Updated unit tests.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/layout/TestDefaultLayoutR enderer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/regions/TestRegionSprite. as

  • [svn:osmf:] 13003: Update some unit tests to reflect that LayoutContextSprite now returns 0 ( not NaN) for uninitialized values to be consistent with ViewTrait.

    Revision: 13003
    Revision: 13003
    Author:   [email protected]
    Date:     2009-12-16 13:12:08 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Update some unit tests to reflect that LayoutContextSprite now returns 0 (not NaN) for uninitialized values to be consistent with ViewTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutContextSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as

    Revision: 13003
    Revision: 13003
    Author:   [email protected]
    Date:     2009-12-16 13:12:08 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Update some unit tests to reflect that LayoutContextSprite now returns 0 (not NaN) for uninitialized values to be consistent with ViewTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutContextSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as

Maybe you are looking for