Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Cue points grayed out in CS3 flv flash export

  • Cue points grayed out in CS3 flv flash export

    Posted by Jeff Baker on February 19, 2008 at 1:45 pm

    Admittedly, this is my first time to try and export cue point markers from AE to Flash CS3. After reading the documentation and setting some cue points as well as running the change markers to cuepoints script, I can’t figure out how to view the cue points in flash CS3. If they are exporting from AE at all.

    In the FLV export window, cue points are grayed out.

    Any ideas?

    Jeff Baker
    Three Geese Productions

    John Morton replied 17 years, 5 months ago 3 Members · 2 Replies
  • 2 Replies
  • Michael Mueller

    May 6, 2008 at 2:04 pm

    hi,

    did anybody get a solution for this yet ?

    having the same problem, any help would be appreachiated !

    thanks,

    mike

  • John Morton

    December 9, 2008 at 6:54 pm

    There’s a bit of AS3 code in the help that might get you started down the right path. (I’ve also used a variation on this in AS2 as well.)

    var nc:NetConnection = new NetConnection();
    nc.connect(null);

    var ns:NetStream = new NetStream(nc);
    ns.client = this;
    ns.play(“video.flv”);

    var vid:Video = new Video();
    vid.attachNetStream(ns);
    addChild(vid);

    function onMetaData(infoObject:Object):void
    {
    var key:String;
    for (key in infoObject)
    {
    trace(key + “: ” + infoObject[key]);
    }
    }

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy