A Flash Developer Resource Site

Search:

Type: Posts; User: berry_lthird

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    3
    Views
    5,614

    *bump*

    I've been searching for hours and I can't find a working link to this extension anywhere. If someone could please email it to me, I would be mighty grateful! Thanks in advance!

    berry_lthird at...
  2. Replies
    3
    Views
    3,938

    Thank You Very Much!!!!

    @strille: This is EXACTLY what I was looking for!

    Thank you very much! :)

    FYI: One set of xspeed variables at lines 9 and 10 has the wrong case and should be xSpeed and ySpeed, respectively.
  3. Actually, my original code has such parameters,...

    Actually, my original code has such parameters, including the "()". I erased them as to make the code more concise.

    Regardless, populating those parameters still does not cause the code to work. :(
  4. How Do I Reference/Target the Child of an emptyMovieClip using an Array?

    for (var menuItemNumber = 1; menuItemNumber<totalMenuItems; menuItemNumber++) {
    _parent.createEmptyMovieClip("menuItem_"+menuItemNumber, _parent.getNextHighestDepth());...
  5. Here is the easiest way to do this by far: ...

    Here is the easiest way to do this by far:

    --FIRST: Select your Media component and then open the Actions panel. Add the following lines of code:



    on (load){
    this.autoPlay = false;
    }
  6. Are you trying to delay playback of the video...

    Are you trying to delay playback of the video based on an arbitrary amount of time? i.e. 40 seconds before playback. Because if so, there are probably much easier ways to do this.

    As far as I...
  7. Thread: sorenson

    by berry_lthird
    Replies
    3
    Views
    800

    Re: sorenson

    Try a third-party utility, like WildForm Flix: http://www.wildform.com
  8. Replies
    2
    Views
    797

    Re: video help

    If your MovieClip Symbol doesn't have any actions associated with it, then convert it to a Graphic Symbol instead. You will have to stretch the main timeline to accomodate all the frames in your...
  9. Re: serving the video?

    Again: Nothing fancy. The .FLV video format inherently streams, even if it is saved as a (local) file. If you wanted to dynamically stream different content, you can do that in the code on the...
  10. Re: trying to speed loading of video clip from cd

    If you have Flash MX 2004 Pro, I highly suggest you use the MediaPlaback Component or the MediaDisplay Component. The differnce is that the MediaPlayback Component has its own GUI interface that is...
  11. Nothing fancy: Just a preloader, FLV video, and...

    Nothing fancy: Just a preloader, FLV video, and some meticulous design work!
  12. I goofed on the math! You'll want total KBytes...

    I goofed on the math! You'll want total KBytes per second, not actual bytes.

    You will have to round-up bytesTotal divided by 1024; i.e.:

    Math.ceil(myMovieClip.bytesTotal/1024)
    ....My brain is...
  13. Replies
    2
    Views
    802

    Re: length of a video?

    Sure. Create a Media object and give it the "FLV" path and source. Then use:

    myMediaObject.totalTime

    If you know the total time and the myMediaObject.bytesTotal, then you can calculate the...
  14. Use the MediaPlayback Component from MX 2004. I...

    Use the MediaPlayback Component from MX 2004. I have an online tutorial HERE:

    http://grabtv.bizland.com/examples/tutorial_1.html
  15. Re: setBufferTime for MediaPlayback Component

    As far as I know, Macromedia did not supply any native methods to control the streaming of media into the MediaPlayback component.

    Here is a possible solution off the top of my head. Select your...
  16. Replies
    1
    Views
    731

    Re: Webcam to Flash - how?

    ....yes, but the procedure is a bit tricky.

    First, you must go to the Library Panel, and in the upper right-hand corner of the panel, there is a menu button (see attached picture). Click that, and...
  17. Replies
    3
    Views
    929

    Re: Placing Video on the Site

    I think I know what you mean. The effect would be better done in Flash itself, however. You could export the effect from After Effects itself if you have a recent version that supports Flash video...
  18. Thread: flash dvd

    by berry_lthird
    Replies
    2
    Views
    1,097

    Re: flash dvd

    If your Flash has no interactivity (i.e. buttons, navigation, etc.), you can always export it as either a QuickTime or an .AVI on the PC.

    You will then have to convert your QuickTime or .AVI to...
  19. Replies
    6
    Views
    1,855

    This sometimes happens when you install a...

    This sometimes happens when you install a proprietary video capture card, which can sometimes have their own video codecs that install.

    Those .AVI files you are trying to watch probably rely on a...
  20. Replies
    4
    Views
    1,005

    ....yes, I have. Have you tried selecting the...

    ....yes, I have.

    Have you tried selecting the CheckBox labeled "Combine list of clips into a single library item after import" yet?

    I have attached a screenshot of what I am referring to:
    ...
  21. If you have QuickTime Pro, you could try...

    If you have QuickTime Pro, you could try exporting the clips using "Movie to QuickTime Movie". Then change the Audio settings using the "Options" button to the right.

    If it asks, select "Make...
  22. Replies
    2
    Views
    745

    Re: media components

    As far as I know, this only happens when the play/pause button of the MediaPlayback Component has focus.

    Perhaps you can detect an onMouseDown event and send focus to a hidden button instead?
  23. Replies
    4
    Views
    1,005

    Re: MX2004 VideoAssistant Clips

    If I understand you correctly, you are trying to edit the video you are importing using Flash? i.e., Splice only parts of a clip together from one whole imported clip?

    Unless I misinterpreted your...
  24. .....Just got through updating the example. Fixed...

    .....Just got through updating the example. Fixed some bugs, added a cookie feature for the history list, and threw-in some cool new special dragging effects!
  25. Replies
    10
    Views
    1,478

    NOTE: You can also use a VARIABLE in place of the...

    NOTE: You can also use a VARIABLE in place of the URL argument; i.e.:

    nextFLVfile = "mediaPath/flvFileName.flv";

    on (complete) {
    setMedia(nextFLVfile, "FLV");
    }
    Also, to initialize the...
Results 1 to 25 of 67
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center