Flash 8 video controls + other madness

I'm really having a hard time with this :
I have a _level0 swf. it loads somemovie.swf into level 1.
somemovie.swf imports a class i've written.
The class I've written works great with flash 7 video, but
when flash 8 video it acts up like this:
In my class, I have a few functions that draw rectangles,
write text, etc.. When there are skinned controls on the flash 8
video, none of that shows up. When the flash 8 video doesn't use
skinned controls, everything works fine.
Does anyone have ANY clue what this could be?

It’s hard to see what it is doing from the snippet of
code you shown. I am just curious on where it is you are initiating
this new class? It might be easy to assign it to the same level.
Also how are you loading this incoming SWF? I know in Flash 8
there are restrictions that are causing your problem. See the link
below;
http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context= LiveDocs_Parts&file=00001739.html

Similar Messages

  • Flash Video Controls Not Showing in Page

    Have DWCS3 on XP
    I have a flash video file that was created with controls.
    There seems to be a checkbox for controls in
    Dreamweaver...BUT...when I play the video locally or on the
    server...the controls are absent.
    Did a search...What am I missing
    Thanks!

    Did you upload the video control images to server? Did you
    upload the SWF
    file? Can you post a link to the page so we can see the code
    and supporting
    files?
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • Embeding Flash Video on other websites

    I would like to be able to share some of our website videos
    with other
    websites.
    The idea is the same as Google Videos which allows a user to
    cut a snippet
    of code and paste that into their own webpage. The result is
    a Flash video
    'playing' on the end users website but really streaming from
    Google Video.
    Here is an example of the code offered by Google Videos
    <embed style="width:400px; height:326px;"
    id="VideoPlayback" align="middle"
    type="application/x-shockwave-flash"
    src="
    http://video.google.com/googleplayer.swf?docId=6960295146523698319"
    allowScriptAccess="sameDomain" quality="best"
    bgcolor="#ffffff"
    scale="noScale" wmode="window" salign="TL"
    FlashVars="playerMode=embedded">
    </embed>
    I'm no Flash expert, but is this one Flash file
    (googleplayer.swf) calling
    the database record ID for the .flv file?
    Thanks!!!
    -Joe

    Try clearing the Cache in Firefox.
    Tools-> Clear Recent History -> [v] Cache
    or
    Tools->Options->Advanced->Network -> Offline storage -> [Clear Now]
    Youtube may have made some changes recently. Clear the Youtube cookie and refresh page if above does not do it.

  • Flash Video Controls

    When inserting a Flash video into a Captivate project I see
    that I can add playback controls. There are 3 different styles and
    each one comes in a small, medium, and large size--based on it's
    options. Can I add or create NEW sets of controllers?
    I am inserting a video that is about 8 minutes long/44 MB in
    size. I would like to have a controller that actually showed the
    progress of the video download in relation to where the user was
    actually viewing. Make sense?
    Any ideas?

    Update:
    I've found tutorials on making your own buttons for the
    video, and they work. However, they do not stop the background
    animations that I created in flash.
    How can I make my buttons control the animations as
    well?

  • No Sound in Flash Videos but other sounds work fine.

    OS - Win 7 Enterprise sp1
    Flash Player version - 11.1.102.55
    RealTek High Def audio driver ver - 6.0.1.6201
    Rolling out a new Image for our offices, everything seemed ok then someone was complaining about no sound.  Turns out  Flash Videos(youtube) play but if you unplug the headphones and plug them back in you don't get audio unless your refresh the page.  This behaviour only occurs in Flash videos, Windows sounds ok, Media played through Media player ok, Quick time ok, just the Flash videos are affected.  I havent' been able to find a solution.
    Most up to date audio drivers,Flash player.
    As a side note, I did a install of nothing but Windows 7 and it does the same thing so there isn't anything I'm adding.
    Any help would be appreciated.
    Mark

    If I understand properly, the audio will play all the time if you don't unplug the headphone while you are playing the flash video, then it works?  It only doesn't work when you unplug the headphone and put it in while Flash Video is playing?  And the workaround is refresh the page.
    This sounds like the expected behavior in the current player.
    If you think this is bug need to take care, you can post it to http://forums.adobe.com/community/flashplayer/using_flashplayer (release player forum) or log a bug in the bugbase.
    Thanks,
    Calise

  • Adjust Y pos of Flash video control strip (skin)

    Hi
    I am in need to move the video control strip upwards so it clears my caption in the video shown below.
    The skin is a swf, and normally if I import a swf to to another fla as an outside source I can adjust xpos and ypos with action script.
    I am using AS2 and would think this can be controlled in the flv playback component. But I can not find out how.
    Can you help?
    Thank you on beforehand!
    ggaarde2

    Hi Again!
    Is there anybody out there?
    Meanwhile I have looked into creating a dublicate skin and tried to edit that.
    There is not much code for the fla. Here it is:
    // a lot of the code below is commented out.  This is because the
    // we are just setting those values to the default values anyways.
    // This gives you an idea of how little code you might have to write
    // if you did your own skin!  But we leave the commented code in
    // to give you an idea of what you would need to do if you wanted
    // to customize the skin.
    // Defaults:
    // * layout_mc.foo_mc.mc defaults to foo_mc
    // * for seek bar, layout_mc.foo_mc.handle_mc defaults to handle_mc
    // * layout_mc.foo_mc.anchorLeft defaults to true, unless anchorRight
    //   is explicitly set to true and then it defaults to false
    // * layout_mc.foo_mc.anchorRight defaults to false
    // * layout_mc.foo_mc.anchorTop defaults to false
    // * layout_mc.foo_mc.anchorBottom defaults to true, unless anchorTop
    //   is explicitly set to true and then it defaults to false
    // minimum width and height of video recommended to use this skin,
    // leave as undefined or <= 0 if there is no minimum
    layout_mc.minWidth = 155;
    layout_mc.minHeight = 60;
    // background for controls, some commented out because are defaults
    layout_mc.bg1_mc.mc = chrome_mc;
    layout_mc.bg1_mc.anchorLeft = true;
    layout_mc.bg1_mc.anchorRight = true;
    //layout_mc.bg1_mc.anchorBottom = true;
    // playpause_mc just using all defaults, so no code needed
    //layout_mc.playpause_mc.mc = playpause_mc;
    //layout_mc.playpause_mc.anchorLeft = true;
    //layout_mc.playpause_mc.anchorBottom = true;
    // volumeMute_mc just using all defaults, so no code needed
    //layout_mc.volumeMute_mc.mc = volumeMute_mc;
    layout_mc.volumeMute_mc.anchorRight = true;
    //layout_mc.volumeMute_mc.anchorBottom = true;
    // seekBar_mc using mostly defaults, but setting
    // anchorRight to true
    //layout_mc.seekBar_mc.mc = seekBar_mc;
    layout_mc.seekBar_mc.anchorLeft = true;
    layout_mc.seekBar_mc.anchorRight = true;
    //layout_mc.seekBar_mc.handle_mc = seekBarHandle_mc;
    //layout_mc.seekBar_mc.progress_mc = _parent.seekBarProgress_mc;
    // bufferingBar_mc using mostly defaults, but setting both anchorLeft
    // and anchorRight to true and setting fill_mc
    //layout_mc.bufferingBar_mc.mc = bufferingBar_mc;
    layout_mc.bufferingBar_mc.anchorLeft = true;
    layout_mc.bufferingBar_mc.anchorRight = true;
    //layout_mc.bufferingBar_mc.fill_mc = _parent.bufferingBarFill_mc;
    I have tried to add:
    layout_mc.ypos = -100;   and layout_mc._y = -100;
    to my ClearOverPlaySeekMute_GG_1.fla
    Did not work.
    Also tried inside Fla with the flv playback component to add
    _y=-100
    That moved the whole component up.
    Then I tried to address the swf from there:
    layout_mc._y = -100;
    Did not work.
    Then I tried to address the swf from there:
    ClearOverPlaySeekMute_GG_1.swf._y = -100;
    Also did not work.
    What is it that decides the default position of the componet?
    I am out of ideas.
    ANYONE?
    kglad or Ned Murphy?
    Thanks on beforehand
    ggaarde2

  • Links to and from a Flash video?

    (Sorry for the long post, trying to explain in detail what
    I'm looking for ...)
    Maybe you guys can tell me if this is possible using the
    current version of Flash (I will not be doing this myself, but I
    need to know if Flash is the way to go).
    1) Embed several videos/audio files in an HTML page, with the
    usual playback controls.
    2) Place links or form elements (buttons) in the page *to*
    those videos, allowing (via JavaScript/DOM) the user to
    a) play, pause and jump to a specific (SMPTE) position in a
    video.
    b) loop a section of the video (by giving two positions and a
    loop command)
    c) change audio volume.
    (I know this is normally done with controls in the video
    player, but I need interaction with the page.)
    3) Have links *from* the videos to the page/DOM - i.e., when
    the video is running, JavaScript events should be sent to the page
    to hide/load/update content - either automatically or user-driven
    (by clicking on the embedded video at a certain time - if possible,
    with hotspots so multiple options can be triggered; similar to a
    DVD menu).
    I'd like to do the same with audio. So I am basically looking
    for a mechanism to link to and from real-time content.
    Beyond the "Yup, possible!" I expect to hear ;) I have
    another question regarding workflow.
    The scenario for producing this stuff (e-learning)
    will/should be something like this:
    - Developer A builds a nice little audio/video player we can
    embed in our pages. This will be used to show/play our content.
    - Person B records video and audio, does a little post
    production, delivers media/files (DV, MP3).
    - Person C batch-converts the videos to FLV format, but
    doesn't (have to) do any creative work.
    - Person D with some HTML/JavaScript knowledge and a
    stopwatch :) builds the page, embeds the player(s) and sets the
    cues that will jump to certain positions. HTML pages, SWF, FLV and
    MP3 files are uploaded to a plain-vanilla HTTP server.
    Is this a realistic scenario? I.e., can we buy (or have
    someone develop) a player so that no tinkering with Flash itself is
    required anymore once we have established this workflow?
    I would appreciate your comments. Also, if the above is
    possible, I'd be grateful for links to showcase sites.
    Thank you.

    In theory - yup!
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15683
    Html pages can communicate to the flash file using
    javascript. The fla page can communicate to the FLV file using
    actionscript. So in theory you can send javascript commands to
    flash from the html page, and then have that set off some
    actionscript to control the movie.
    Can I be Person C? Sounds like easy money!
    Good luck. Check out the forums at www.gotoandlearn.com -
    that site has a lot of creative people with a very high knowledge
    of using Flash video.

  • Is there a way to create either a flash video or wmv from Keynote?

    I have a file that I am sending out to a group who are Windows users, and have included effects and audio. There is a good chance that none of them have quicktime and I do not want them to need to download it. Can I somehow create a flash video or other format that will play the presentation and not reformat out the effects, transitions and audio?
    Thanks!

    You might check these guys out...
    www.sorensonmedia.com They have a product called Squeeze for Flash, that converts any Video format into .swf or flv... And they have Demo's so you can try out their software before you buy... so try that...
    Also, you can try importing the .MOV into your FLV directly (either to library or to stage) and export as a .swf and see if it works (in theory it should work without any "coding", simply import the mov into a new Flash Document and export MOVIE (.swf)... Then open the swf and see what happens...

  • I can't get flash player to play flash videos

    I just bought an 24" 2.16 Core 2 Duo iMac and migrated my accounts from my G4 PowerBook and G4 800mhz iMac.
    I go to websites such as Jay Leno's garage and LeftLaneNews ( http://www.leftlanenews.com/2006/11/17/ford-bold-moves-22-professional-drivers-o n-a-closed-course/#more-4422 ) and the Flash Player 9 videos don't play. No erros. It just acts like it is forever downloading them and ... nothing.
    I'm using Mac OS X 10.4.8 and Safari. I found the Flash uninstall for Mac OS X on Adobe's website and ran that (with all browsers closed" then downloaded and re-installed Flash 9. It shows that Flash 9 successfully installed.

    Just to make it clear. I still can play Flash videos.

  • How do I watch Flash video content on iPad2?

    A large amount of video content on the Internet was created in Adobe Flash format. The iPad2 does not support Flash, which limit's its utility on a number of the websites I frequent.  This shortcoming was a big surprise after I purchased the iPad. Is there an Apple app available or under development that can play Flash video? Other sites talk about cracking or other techniques to force Flash to run on the iPad, but I'd like to know what Apple is doing to plug this hole?

    You have three choices.
    1. Just forget about Flash as I have.
    2. Try the alternate browsers that King_Penguin suggests. Also search the App Store for specific apps that will handle content from specific sites.
    3. Return or sell your iPad and buy a device (other table or a laptop) that will handle the Flash sites you want to visit.
    You might also review the "More like this..." section to the right of this message column for moe threads on this topic.

  • Run Flash Video Conference in HTML

    Hi! I am newbie in Flash Communication Server... How do I run
    the Video Conference in HTML? I tested it at the website but it is
    not connected...

    Flash MX is really out of date.
    I think it would be advisable to learn AS3 and perhaps have a good reference book available... can't really advise that one is better than another. But Flash AS3 is a very broad topic... if your goal is very focused..Flash Video Conferencing, then you may want to rely more on on-line resources, Forums, and reference material.
    http://www.gotmyidea.com/78377-008-editing-a-flashmeeting-video-replay.php
    http://fmsguru.com/forum/messages.cfm?threadid=F15363BB-A7BB-AAF9-2A5A47F24BD6B20D
    http://www.winsite.com/Web-Development/Web-Design/Flash-Video-Chat/
    other Flash Forums:
    http://board.flashkit.com/board/index.php
    http://www.actionscript.org/forums/index.php3
    but you'll need to work with a streaming media server so be sure to connect with the Red5 Forum I listed earlier as well as
    http://forums.adobe.com/community/flash/flash_media_server
    and
    http://forums.adobe.com/community/flash/flash_media_live_encoder
    Best wishes,
    Adninjastrator

  • Flash Video Play Does NOT Display Controls

    I am using Flash Pro 8 - putting FLV files in SWF files using
    Flash Pro 8 and then "publishing" to Html and SWF to a location on
    my hard drive.
    When I display the webpage from my Hard Drive from where ever
    on my hard drive I initially published to from Flash 8 Pro -
    everything works fine - videos play and video control bar shows and
    works.
    When I publish this website to web server the video displays
    and plays but NO Video Controller Bar (at bottom of the video)
    shows at all.
    Symptom: when I make an Html, SWF and FLA file into a folder
    on my hard drive and display them in the browser the video control
    bar shows. When I copy those three files into the hard drive
    website in FrontPage, the video shows but the video control bar
    does not.
    So, I re-made the Html, SWF, and FLA files and put them
    directly into the FrontPage website (on my hard drive) then
    everything works fine when I use broswer (IE 6 or Firefox). z
    But, when I publish the hard drive website to the remote
    website hosting company, the video control bar disappears -
    everything else works fine (video shows OK just no video controller
    bar.)
    My guess is that the SWF file has a non-relative URL
    reference concerning the video control bar and when the three files
    (Html, SWF and FLA) are moved to new location then that
    non-relative address rears its head.
    I should NOT publish from Flash 8 Pro directly to remote
    webserver as it has FrontPage Extensions and does not like to talk
    to FTP changes to website not coming from FrontPage client.
    is my guess right? What to do?????
    [email protected]

    Did you upload the skin swf file to your server also? That is
    a common missed step.

  • Video Control Bar in Flash Displays on HD but Not From Webserver

    I am using Flash Pro 8 - putting FLV files in SWF files using
    Flash Pro 8 and then "publishing" to Html and SWF to a location on
    my hard drive.
    When I display the webpage from my Hard Drive from where ever
    on my hard drive I initially published to from Flash 8 Pro -
    everything works fine - videos play and video control bar shows and
    works.
    When I publish this website to web server the video displays
    and plays but NO Video Controller Bar (at bottom of the video)
    shows at all.
    Symptom: when I make an Html, SWF and FLA file into a folder
    on my hard drive and display them in the browser the video control
    bar shows. When I copy those three files into the hard drive
    website in FrontPage, the video shows but the video control bar
    does not.
    So, I re-made the Html, SWF, and FLA files and put them
    directly into the FrontPage website (on my hard drive) then
    everything works fine when I use broswer (IE 6 or Firefox). z
    But, when I publish the hard drive website to the remote
    website hosting company, the video control bar disappears -
    everything else works fine (video shows OK just no video controller
    bar.)
    My guess is that the SWF file has a non-relative URL
    reference concerning the video control bar and when the three files
    (Html, SWF and FLA) are moved to new location then that
    non-relative address rears its head.
    I should NOT publish from Flash 8 Pro directly to remote
    webserver as it has FrontPage Extensions and does not like to talk
    to FTP changes to website not coming from FrontPage client.
    is my guess right? What to do?????
    [email protected]

    quote:
    1. When I encoded the video in flash I selected one of the
    pre-packaged control bars (so the user can control basic
    functions). I then published an HTML and a .swf. The HTML works
    perfectly however when I use Dreamweaver to insert the .swf it does
    not carry over the control bar. I have tried pulling over the
    control bar .swf and placing it under the video file but a HUGE
    object is imported with a bunch of controls that do not work (bunch
    of controls = play/pause/etc).
    make sure the component skin is uploaded in same directory as
    swf, movie, html
    quote:
    The second issue is this; the user still has to click once on
    the video to use the controls... does anyone know what I am doing
    wrong on the video file?
    Follow directions
    HERE
    for getting rid of ActiveX control

  • Flash video performance poor in Firefox 3 and other newer Gecko-based browsers; fails to detect mouse movement in full-s

    Regardless of configuration, I have found Flash video
    performance on Firefox 3 to be severely sub-par. Numerous visual
    lags occur throughout a typical Youtube video as it cannot seem to
    manage to maintain a steady frame rate. When in full-screen, mouse
    movement is not detected, forcing me to click in a full-screen
    Vimeo video in order to display its controls when I should have
    only needed to move the mouse. I was informed that the technical
    explanation for this is that Flash isn't triggering MouseEvents
    other than MouseEVENT.CLICK.
    In my tests, this behavior also occurred in Flashplayers 9
    and 10 as well as with recent versions of other browsers that also
    use the Gecko rendering engine, namely Camino, Flock and Songbird,
    but not in Firefox 2. I was told by a Mozilla employee that this
    issue can only be solved by Adobe.
    This has forced me to use the Safari browser as my only
    available work-around. I implore that these issues get resolved as
    quickly as possible.

    guys, im exactly experience the same issue here.. any
    solution guys? tks in advantage..

  • Converting video to Flash with controls

    I want to take video from a DVD and turn it into a Flash
    movie so I can use
    it on a web page. I would like it to have the controls for
    playing and
    pausing. What would be the easiest way to do this? Is there
    certain software
    I should be looking for?
    Thanks
    Debbie

    Certain software other than Flash? have you read the help
    docs regarding the FLV (Flash Video)
    format? There's an entire section of this site dedicated to
    how to incorporate Flash video into your
    website:
    http://www.adobe.com/devnet/flash/video.html
    Also, go here:
    http://www.adobe.com/designcenter/video_workshop/
    select Flash and then narrow it down to FLV - there are
    several video tutorials from Richard Galvan
    to watch.
    hope this helps.
    Chris Georgenes
    Adobe Community Expert
    www.mudbubble.com
    www.keyframer.com
    www.howtocheatinflash.com
    D Woods wrote:
    > I want to take video from a DVD and turn it into a Flash
    movie so I can use
    > it on a web page. I would like it to have the controls
    for playing and
    > pausing. What would be the easiest way to do this? Is
    there certain software
    > I should be looking for?
    >
    > Thanks
    > Debbie
    >
    >

Maybe you are looking for

  • Problem in creating a generic datasource with infoset

    Dear Expert,   I have to create a generic datasource with infoset. I linked the infoset with a test program below. In the program, I have one selection option, which is s_order. After creating an infoset and a datasource, this selection option 'SELEC

  • Some artists dont show up on my list even tho they are on the ipod

    When I go thru the menu and click on artists, there are about 10 artists that do not show up. I know that they are on the ipod, and if I go thru albums instead I can find the full album, but it just doesnt show up thru artists. There doesnt seem to b

  • Lost Project in Final Cut Pro X

    I lost my entire project in FCP X. I edited for a couple of days and was very irritated by not being able to save it (though I checked on the internet and as everybody is talking about it I trusted that FCP X would save automatically). When I restart

  • How to set up Speech Recognition?

    Referring to following link for detailed discussion, I would like to know if I create a batchfile in following directory, then after getting through those training, does anyone have any suggestions on how to set where the speech locates this batch fi

  • Premiere pro 2014 freezes when I try to "insert" clip into timeline

    I just upgraded to 2014, 1 out of 4 times, when I try to insert a clip onto the timeline the program freezes and I have to force quit. I thought it might be some sort of conflict with the previous version premiere, so I uninstalled. Still happens. Ma