[svn:osmf:] 14413: Added a style for the playlist.

Revision: 14413
Revision: 14413
Author:   [email protected]
Date:     2010-02-24 17:58:39 -0800 (Wed, 24 Feb 2010)
Log Message:
Added a style for the playlist.
Modified Paths:
    osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.css

when you play the CD in your laptop on your home screen a Cd should pop up under the name of the album. Than when you open itunes it will probly say something like "let this CD download" or something like that. If it doesn't than automaticlly while the CD is importing to your itunes a page will pop up with a progess of the CD download.
Hope that helped.

Similar Messages

  • [svn:osmf:] 10706: Adding readme file for the MAST sample.

    Revision: 10706
    Author:   [email protected]
    Date:     2009-09-29 17:38:56 -0700 (Tue, 29 Sep 2009)
    Log Message:
    Adding readme file for the MAST sample.
    Added Paths:
        osmf/trunk/apps/samples/plugins/MASTSample/readme.txt

    Hi Jason,
    You might want to check this thread: http://forums.adobe.com/message/3254112 (or http://forums.adobe.com/thread/745538)
    As you can see there, it's possible to get the video bitmap data from the Video object directly. You don't need the content to be delivered using HTTP Streaming for this. You should be able to use 3D Papervision together a similar snippet.
    You can get the raw data from a HTTP Stream too, if you need the raw data anyway. Check this thread for details: http://forums.adobe.com/thread/709470?tstart=60
    Hope this helps,
    -Andrian

  • [svn:osmf:] 11200: Adding readme.txt for the CuePointSample app.

    Revision: 11200
    Author:   [email protected]
    Date:     2009-10-27 14:11:04 -0700 (Tue, 27 Oct 2009)
    Log Message:
    Adding readme.txt for the CuePointSample app.
    Added Paths:
        osmf/trunk/apps/samples/framework/CuePointSample/readme.txt

    Thanks to some help from another forum...here is the (simplified) code in case anyone needs it
    // create a container and add it to the Display List
    container = new MediaContainer  ;
    addChild(container);
    // create a video element and add it to the container
    mediaElement = new VideoElement(new URLResource(url)); // url --> your h.264 video
    container.addMediaElement(mediaElement);
    // create a player and add the video to it
    player = new MediaPlayer;
    // create timelinemetadata, pass the media element to it
    dynamicTimelineMetadata = new TimelineMetadata(mediaElement);
    // create a new cuepoint
    var cuePoint:CuePoint = new CuePoint(CuePointType.ACTIONSCRIPT, 1, "good point", null); // time = 1, name = "good point"
    // add the cuepoint to the timeline by using "add marker"
    dynamicTimelineMetadata.addMarker(cuePoint);
    // listen for when the cue point is reached
    dynamicTimelineMetadata.addEventListener(TimelineMetadataEvent.MARKER_TIME_REACHED, onCuePoint);
    function onCuePoint(event:TimelineMetadataEvent):void
    var cuePoint:CuePoint = event.marker as CuePoint;
    trace("Cue Point at " + cuePoint.time);

  • [svn:osmf:] 10017: Adding a style sheet, adding a backdrop to the examples list, adding icons to play and pause icons.

    Revision: 10017
    Author:   [email protected]
    Date:     2009-09-04 06:43:44 -0700 (Fri, 04 Sep 2009)
    Log Message:
    Adding a style sheet, adding a backdrop to the examples list, adding icons to play and pause icons. Setting theme color to red.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/ExamplePlayer.mxml
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/openvideoplayer/view/MainWindowLayout .mxml
    Added Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/assets/
        osmf/trunk/apps/samples/framework/ExamplePlayer/assets/ExamplePlayer.css
        osmf/trunk/apps/samples/framework/ExamplePlayer/assets/assets.swf

    Revision: 10017
    Author:   [email protected]
    Date:     2009-09-04 06:43:44 -0700 (Fri, 04 Sep 2009)
    Log Message:
    Adding a style sheet, adding a backdrop to the examples list, adding icons to play and pause icons. Setting theme color to red.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/ExamplePlayer.mxml
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/openvideoplayer/view/MainWindowLayout .mxml
    Added Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/assets/
        osmf/trunk/apps/samples/framework/ExamplePlayer/assets/ExamplePlayer.css
        osmf/trunk/apps/samples/framework/ExamplePlayer/assets/assets.swf

  • [svn:osmf:] 10440: Add parser support for the Video tag.

    Revision: 10440
    Author:   [email protected]
    Date:     2009-09-20 15:03:56 -0700 (Sun, 20 Sep 2009)
    Log Message:
    Add parser support for the Video tag.  Add unit test for an empty document.
    Modified Paths:
        osmf/trunk/libs/VAST/.flexLibProperties
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/model/VASTInlineAd.as
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/parser/VASTParser.as
        osmf/trunk/libs/VASTTest/org/openvideoplayer/vast/parser/TestVASTParser.as
    Added Paths:
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/model/VASTMediaFile.as
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/model/VASTVideo.as

    The video tag only supports a few formats and MKV (Matroska Multimedia Container) isn't one of them.<br />
    Your only option is to use the object (or embed) tag and use a player that can handle that format.<br />
    If might be better to switch to the WebM format.<br />
    * https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements

  • [svn:osmf:] 11293: Adding unit tests for ContentDownloadableTrait.

    Revision: 11293
    Author:   [email protected]
    Date:     2009-10-30 02:38:42 -0700 (Fri, 30 Oct 2009)
    Log Message:
    Adding unit tests for ContentDownloadableTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as
    Added Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/content/TestContentDownloadableTrait .as

  • [svn:osmf:] 10711: Adding missing reference to the VAST library.

    Revision: 10711
    Author:   [email protected]
    Date:     2009-09-29 21:38:56 -0700 (Tue, 29 Sep 2009)
    Log Message:
    Adding missing reference to the VAST library.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkAirTest/.actionScriptProperties

    Hi Marius,
    I think this problem could be linked to the changes in the layout API and the order of the loading of the video elements.
    Please try to add layoutmetadata with index property to parallel videos so they render in the correct order, something like:
                var layout1:LayoutMetadata = new LayoutMetadata();
                layout1.index= 10 ;
                videoElement.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout1);
                var layout2:LayoutMetadata = new LayoutMetadata();
                 layout2.index= 20 ;
                 vpaidNonLinear.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout2);
    Tell me if that worked,
    S.

  • [svn:osmf:] 12455: Adding unit test for CompositeMetadataEvent.

    Revision: 12455
    Revision: 12455
    Author:   [email protected]
    Date:     2009-12-03 09:51:47 -0800 (Thu, 03 Dec 2009)
    Log Message:
    Adding unit test for CompositeMetadataEvent.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestCompositeMetadata.as

    Revision: 12455
    Revision: 12455
    Author:   [email protected]
    Date:     2009-12-03 09:51:47 -0800 (Thu, 03 Dec 2009)
    Log Message:
    Adding unit test for CompositeMetadataEvent.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestCompositeMetadata.as

  • [svn:osmf:] 16099: Added HTML support for a Banner Region.

    Revision: 16099
    Revision: 16099
    Author:   [email protected]
    Date:     2010-05-13 13:26:58 -0700 (Thu, 13 May 2010)
    Log Message:
    Added HTML support for a Banner Region.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/html-template/index.template.html

    Hello Alex,
    I don't have an answer for you.
    But, can you try to use http://drmtest2.adobe.com:8080/Content/anonymous.f4v with locally hosted OSMF player? This content doens't require user/pass info.
    I'm wondering that Google TV's flash player doesn't support prompt dialog.
    http://drmtest2.adobe.com/AccessPlayer/player.html requires flash player 11. That's why it won't be loaded with flash player 10.x.
    Thanks,
    -- Hiroshi

  • [svn:fx-trunk] 12367: Added deprecation warning for the use of SVG.

    Revision: 12367
    Revision: 12367
    Author:   [email protected]
    Date:     2009-12-02 08:30:21 -0800 (Wed, 02 Dec 2009)
    Log Message:
    Added deprecation warning for the use of SVG.
    QE notes: None
    Doc notes: None
    Bugs: SDK-24392
    Reviewer: Paul
    Tests run: SVG test cases.
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24392
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/SVGTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler_en.properties

  • Style for the button

    Hi,
    it is possible to define style for the button on the form?
    Portal version: 3.0.6.6.5

    leinadjan wrote:
    Hello everybody,
    (I'm using APEX 3.2)
    I get a really annoying problem. I'm using report region to show the selected options in one of my application. When I'm creating or editing that content, I do it in a specialised page. To edit my content, I'm using a standard edit button link in my first column. But the button column is ALWAYS taking too much space in my report, it shouldn't be longer then 30 pixels wide. I 'm trying to use the attribute fields or table attribute fields with style="width:30px;" but it never works. I'm having a hard time following this (and I don't currently have access to 3.2). Although its a different version, suggest you create a similar example on apex.oracle.com to give a clearer idea of the situation.
    The only way I found to do that was by creating a new template and write my new style in the header option. But I was told that I can't edit those tamplate. What template? Who told you this?
    I'm thinking that some substitution strings are missing and that is why it changes nothing.What substitution strings?
    It always helps if you provide precise details of:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)

  • How do I add a playlist to iTunes Match so that it'll appear on my Apple TV?  It was appeared on it before but ever since I added some CDs to the playlist, it won't show anymore.  Please help.

    How do I add a playlist to iTunes Match so that it'll appear on my Apple TV?  It was appeared on it before but ever since I added some CDs to the playlist, it won't show anymore.  Please help.

    When new content is added to a playlist it has to be updated for it to be available across devices. If it's content that isn't matched the playlist is removed from the cloud. Did you make sure to access store - update iTunes Match? It should do it automatically after a few minutes but the odd time I have to force it.
    Other than that may want to try reboot, log out/in. 

  • [svn:osmf:] 14412: Added the Syndication. swc to the command line build config file for the AkamaiPluginSample project .

    Revision: 14412
    Revision: 14412
    Author:   [email protected]
    Date:     2010-02-24 17:48:22 -0800 (Wed, 24 Feb 2010)
    Log Message:
    Added the Syndication.swc to the command line build config file for the AkamaiPluginSample project.
    Modified Paths:
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/AkamaiPluginSample-build-config.xml

    I think it is not supported through ant script and you may have to contact Oracle Support. Please go through below thread (hisaak's reply) -
    Re: Export OSB configuration jar file using Ant
    Regards,
    Anuj

  • [svn:osmf:] 13000: Adding the missing readme file for the captioning sample app.

    Revision: 13000
    Revision: 13000
    Author:   [email protected]
    Date:     2009-12-16 10:36:36 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Adding the missing readme file for the captioning sample app.
    Added Paths:
        osmf/trunk/apps/samples/plugins/CaptioningSample/readme.txt

    Carey,
    I have tried london1a1's workaround, and it has not made any difference.
    It seems that london1a1 suggests changing the Camera.h file in this location:
              Users/london1a1/Documents/DW_NAF/PhoneGapLib/PhoneGapLib/Classes/Camera.h
    Whereas you're saying to change the Camera.h file in this location:
              /Applications/Adobe Dreamweaver CS5.5/Configuration/NativeAppFramework/DWPhoneGap/iphone/PhoneGapLib/Classes/Camera.h
    I've tried changing the Camera.h file in both locations.  Neither has made a difference.

  • [svn:osmf:] 15581: Better coding style and some comments for the previous code submission.

    Revision: 15581
    Revision: 15581
    Author:   [email protected]
    Date:     2010-04-19 17:14:00 -0700 (Mon, 19 Apr 2010)
    Log Message:
    Better coding style and some comments for the previous code submission.
    Modified Paths:
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/OSMFPlayer.as

    Revision: 15581
    Revision: 15581
    Author:   [email protected]
    Date:     2010-04-19 17:14:00 -0700 (Mon, 19 Apr 2010)
    Log Message:
    Better coding style and some comments for the previous code submission.
    Modified Paths:
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/OSMFPlayer.as

Maybe you are looking for

  • G/L Acc  Opening Balances.............

    Hi  ........   I am working on ECC 6.0 . I am developing a report which will fetch the opening balance for the starting date in given select options and closing balance for last date in given select options and need to show all the Dr , Cr  transacti

  • Disabled iPhone 5 (iOS7) / Not able to restore / Macbook not recognising it

    Hi there, I'm new to this website so please bear with me! This is my problem: One night my hilarious friends were messing around with my iPhone 5, specifically the passcode. To cut a long story short, my iPhone was disabled. I've spent the last two d

  • Waveform chart gaps

    Hi, If completed my application for data acquisition, onlyi'mnot that happywithmy waveform chart... It shows gaps, time to time? And i don't know why? Here is an example: Does anyone has a solution for this? Regards, Thijs

  • Which RAID Configuration !

    I'm just about to build a new system and a little undecided as to which hard drive configuration to use. I have bought two Samsung Spinpoint SATA II 400gb drives with the intention of running them in a RAID 1 (mirroring) configuration. The reason for

  • Risk Analysis with "ALL" systems

    Gurus,      I have a scenario where we have a rule set (not global) built on a logical system with 8 systems in it. We are trying to run the analysis with "ALL" systems instead of individual systems as we are hoping that the analysis will be performe