Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kennethkawamoto

    AS3 SWF blank screen

    One thing, you can upload only video files to YouTube. SWF is not a video file! Kenneth Kawamoto www.materiaprima.co.uk
  2. kennethkawamoto

    flash professional 8 to droid app

    There's AIR for Android but you cannot compile AIR from Flash 8. AIR is AS3 for a start :) Kenneth Kawamoto www.materiaprima.co.uk
  3. kennethkawamoto

    as2 to as3 conversion help

    There are many ways but one way would be to put dynamically created objects into an Array or Object so that you can access them easily afterwards. Kenneth Kawamoto www.materiaprima.co.uk
  4. kennethkawamoto

    as3 child clip help

    The short answer is no. However if you are using the timeline you can use the same AS1/2 method. If you're using Classes then assign a public var to an object in order to access the child in this way. Kenneth Kawamoto www.materiaprima.co.uk
  5. kennethkawamoto

    Go to web page at end of video

    AS3 would be something like: import fl.video.MetadataEvent; flv.addEventListener(MetadataEvent.CUE_POINT, flvCuePoint); function flvCuePoint(e:MetadataEvent):void { switch (e.info.name) { case "end" : // do something break; } } "flv" is the FlvPlayback component. Kenneth Kawamoto...
  6. kennethkawamoto

    Play FLV movie and take layer off screen when movie ends - How?

    > The tab labeled "output" next to timeline shows but one line [object FLVPlayback] Yes that's what you need :) I just wanted to make sure you named the component correctly. FLVPlayback Component dispatches the Event called "complete" when the video is finished, so the next step is to add an...
  7. kennethkawamoto

    Play FLV movie and take layer off screen when movie ends - How?

    You should get the Output. "Test Movie" is within the Flash IDE, do not run the SWF outside the Flash IDE. Also make sure you're typing the script in the frame. Your Actions panel tab should say "ACTIONS - FRAME". Kenneth Kawamoto www.materiaprima.co.uk
  8. kennethkawamoto

    Play FLV movie and take layer off screen when movie ends - How?

    Test Movie. (Cmd/Ctrl + RETURN) By the way your instance name should not start with upper-case (they are for Class names). Kenneth Kawamoto www.materiaprima.co.uk
  9. kennethkawamoto

    Play FLV movie and take layer off screen when movie ends - How?

    That sounds fine. Did you name your FLVPlayback instance on stage? To verify, type this in the frame:trace(yourFLVPlaybackInstanceName);This is the first step :) Kenneth Kawamoto www.materiaprima.co.uk
  10. kennethkawamoto

    Play FLV movie and take layer off screen when movie ends - How?

    The best way to write scripts is to use external class files and not to use the timeline at all. But in this case may be easier for you to write scripts on the timeline. To interact with FLVPlayback component, first you have to give it a name, but what do you want to do with FLVPlayback...
  11. kennethkawamoto

    Flash mp3 xml in xml website!

    > the space comes up to show something is there Did it create Flash object? You can tell by right-clicking on it. Kenneth Kawamoto www.materiaprima.co.uk
  12. kennethkawamoto

    Flash mp3 xml in xml website!

    <object> tag for embedding SWF is like this:<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="780" height="420"><param name="movie" value="myContent.swf" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="myContent.swf" width="780"...
  13. kennethkawamoto

    Flash mp3 xml in xml website!

    HTML <img> tag is for images and you cannot use it for SWF. <object> (and <embed>) tag is what you need, but whether your template supports SWF or not is another matter... Kenneth Kawamoto www.materiaprima.co.uk
  14. kennethkawamoto

    How to apply smoothing to dynamically placed JPGs

    What you need to do is to use MovieClipLoader to load the JPEG into a MovieClip, then on load create a BitmapData and draw the MovieClip, then attach the BitmapData to a MovieClip with smoothing on. Explained in details here...
  15. kennethkawamoto

    How to apply smoothing to dynamically placed JPGs

    MovieClip.attachBitmap(bmp:BitmapData, depth:Number, [pixelSnapping:String], [smoothing:Boolean]) Kenneth Kawamoto www.materiaprima.co.uk
  16. kennethkawamoto

    Flash errors in browser

    That's Flash Debug Player popping up errors. To me it's indispensable tool for developing Flash contents, but if you want to get rid of it you can uninstall the debug player and reinstall the normal player. Both uninstaller and installer for normal players are here...
  17. kennethkawamoto

    Play multiple scenes

    Have a look at MovieClip.loadMovie method in the doc. Kenneth Kawamoto www.materiaprima.co.uk
  18. kennethkawamoto

    Play multiple scenes

    Are you loading the SWF with script? Kenneth Kawamoto www.materiaprima.co.uk
  19. kennethkawamoto

    Play multiple scenes

    You can place multiple MovieClips/SWFs on Stage. Kenneth Kawamoto www.materiaprima.co.uk
  20. kennethkawamoto

    How to stop a movie clip and move to another one?

    If you are writing the script in the main time line it would be: lion_beginning_mc.gotoAndStop(3); (assuming you have your MovieClip in the main timeline (stage)) Or of you writing in the MovieClip, it would be: gotoAndStop(3); Kenneth Kawamoto www.materiaprima.co.uk

Part and Inventory Search

Back
Top