A Flash Developer Resource Site

Results 1 to 10 of 10

Thread: KoolMoves 7.3 released

  1. #1
    Super Moderator
    Join Date
    Jun 2000
    Posts
    3,512

    KoolMoves 7.3 released

    Changes can be viewed at http://www.koolmoves.com/kmwhatsnew.html

    Use Help > Update Software to get this upgrade.

  2. #2
    Junior Member
    Join Date
    Jan 2002
    Posts
    14

    i can not find YouTube and Picassa support in 7.3

    You wrote:
    Code:
    Added YouTube and Picassa support to the media player component.
    sorry, i find no information with the player component, to do this.

    i need a hint for this ???

    hjw

  3. #3
    KoolMoves Moderator blanius's Avatar
    Join Date
    Jul 2001
    Location
    Atlanta GA
    Posts
    5,244
    Did you update the libraries as well?

  4. #4
    Junior Member
    Join Date
    Jan 2002
    Posts
    14
    yes i did so, but the Library Version is 6.9.0

    i need a hint for added YouTube and Picassa support to the media player component.

    hjw

  5. #5
    up to my .as in code Chris_Seahorn's Avatar
    Join Date
    Dec 2004
    Posts
    4,389
    You recently emailed me asking about the gs packages (Tweenmax) to use my YouTube and Picassa example source code (which I've replied to). My download will show you how to implement both classes for a working example and you can also open the classes themselves to view other methods and properties they support, as you can with almost all the KM AS3 classes by Wilbert or Bob.


    All of this stuff (Koolmoves AS3 support) is new so you are unlikely to find tutorials around the net, at support sites or via wrtten documentation in the help files. There are not many Koolmoves support sites (this is the fault of the userbase, not the creators of Koolmoves) and the ones that exist are still mainly focused on pre AS3 versions of KM.

  6. #6
    Junior Member
    Join Date
    Jan 2002
    Posts
    14
    hello Chris_Seahorn
    Thanks for the quick reply

    I have the Tweenmax package downloaded and use with Koolmoves 7.3.

    Unfortunately, the sample is connected with still no Youtube.
    It is compiled, but it does not.

    sorry it works with the webbrowser, but do not work with standalone player ????

    they excuse my English, it is a translation with Google

    hj.wevers
    Last edited by hjw; 11-24-2009 at 04:17 PM.

  7. #7
    Senior Member
    Join Date
    Dec 2002
    Location
    Netherlands
    Posts
    1,632
    If you know the video id from the YouTube video, you can also create your own xml playlist. The MediaPlayer docs show how to create one.

  8. #8
    Junior Member
    Join Date
    Jan 2002
    Posts
    14
    thank you for the hint

    but where i find the "MediaPlayer docs"

    sorry for the question

    i think, i have found the docs.
    Do you mean the "km docoumentation for AS3" ???

    Package km.components
    Class public class MediaPlayer ???

    hjw
    Last edited by hjw; 11-24-2009 at 05:24 PM.

  9. #9
    Senior Member
    Join Date
    Dec 2002
    Location
    Netherlands
    Posts
    1,632
    Yes, that's what I meant.
    Here's a small code example. Of course you would have to change the video id with the one you want to play.
    Code:
    var playlist:XML = 
    <playlist repeat="false"> 
     <item label="YouTube video">
      <ytvideo id="AnWkTRnUuTU" />
     </item>
    </playlist>;
    
    var mp:MediaPlayer = new MediaPlayer();
    ScriptedSkin.applyTo(mp);
    mp.setSize(300, 200);
    mp.move(20, 20);
    addChild(mp);
    
    mp.setXMLPlaylist(playlist);

  10. #10
    Junior Member
    Join Date
    Jan 2002
    Posts
    14
    hello w.brants

    thanks for support, I will try.

    I thought that it is possible to type in the Component Interface Properties in Channel Youtube or Picaasa. There can be integrated only local on the computer itself are movies, files.

    My question is:
    What exactly was then changed to 7.3 KoolMoves support for Youtube??

    Is it possible to give me an answer
    thank you in advance

    best

    hj.wevers

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center