Flash CS3 FLV question

Out of context: Reply #3

  • Started
  • Last post
  • 3 Responses
  • milo0

    just been reading about this - the general consensus is not to embed you pram's in your flv - just use the cuepoint to trigger other function... makes sense really

    as for your icon issue it maybe worth looking at coding the flv import rather then using flash's own thing..

    I followed the 8 step tutorials from gotoandLearn..

    the import code is tiny compared to using the flash flv component.

    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.setBufferTime(1);
    theVideoInstance.attachVideo(ns...
    ns.play("whatever.flv");

View thread