Need Help with Flash Video

Hi, I have a template set up for a site with editable regions
for text. I have been trying to insert Flash Video Content, and
once I complete entering it in the popup window with settings, etc.
I get the following message "Making this change would required
changing code that is locked by a template or translator. The
change will be discarded." When I hit ok it disappears and the
video and code associated are nowhere on my page. What am I doing
wrong? Is there a setting to change in CSS templates to allow one
to insert Flash video?
Thanks for any help!

Also, you need to DISABLE the Flash detection when you insert
the video.
This is to prevent the insertion process from trying to write
that detection
call into the body tag of the child page, which is locked.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Nikitadog31" <[email protected]> wrote in
message
news:g7lfjt$kh$[email protected]..
> Thanks, that worked perfectly!

Similar Messages

  • Help with flash video buffering

    I need help with flash video buffering. I've created a
    buffering graphic to show up when the clip is loading. The problem
    that I'm having is that when the video finishs playing, the buffer
    is empty and the graphic pops back on. The following is the code
    that I'm using to call and buffer the video. Any help would be
    great!
    stop();
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.setBufferTime(10);
    ns.onStatus = function(info){
    if(info.code == "NetStream.Buffer.Full"){
    bufferClip._visible = false;
    if(info.code == "NetStream.Buffer.Empty"){
    bufferClip._visible = true;
    if (info.code == "NetStream.Stop") {
    bufferClip._visible = false;
    theVideo.attachVideo (ns);
    ns.play("my_clip.flv");
    rewindButton.onRelease= function(){
    ns.seek(0);
    playButton.onRelease= function(){
    ns.pause();
    }

    Again thank you for your help in advance...
    I put the script folder into the root. As far as the .flv
    file it is showing up as being "put" to my web server. when i
    checked the root folder it is there. again i am having the same
    problem.. the local view works but when i check it on the web it
    just shows that there should be a flash video there but it does not
    show up.
    i created a new root for this test page the new link is..
    http://www.wfwa.org/TESTindexfolder/TESTindex.asp
    here are the files that are showing up in it...
    flashprojectwebvid.fla
    flashprojectwebvid.html
    flashprojectwebvid.swf
    PBSpromo.flv
    SteelExternalPlaySeekMute.swf
    TESTindex.asp
    and the Scripts folder
    thanks again for any help..

  • Need help with Flash CS4 buttons/can't get buttons to control anything

    Hello,
    I need help with Flash CS4. I am making a banner with an animation (Image change into movie clip "3D Spiral") and added buttons but I cannot get the buttons to control the animation. Please help I am frustrated! If someone could help I would be most appreciated.

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • Still need help with flash player download

    I'm still having a problem with the flash player, please read my last post below:
    "I've tried everything here & still can't download the flash player. Anytime I try to download it asks me to install ADM add-on and then when I click on that, my computer freezes. How do I enable this add-on without my computer freezing? Can anyone help pls?"

    Thanks a lot for your help, it is truly appreciated.
    Date: Thu, 29 Oct 2009 18:52:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Still need help with flash player download
    You can set Flash Player to check for updates on the Global Settings Manager panel:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    >

  • I need help with my videos now that I downloaded the ios6.  It won't play.

    I need help with my videos. I downloaded the ios6 and now they won't play.  Does anyone know how to fix?

    Wanted to let everyone know that after looking at other discussions I did a hard reboot and it is now working.  Love this site!

  • Please I really need help with this video problem.

    Hi!
    Please I need help with this app I am trying to make for an Android cellphone and I've been struggling with this for a couple of months.
    I have a main flash file (video player.fla) that will load external swf files. This is the main screen.When I click the Sets Anteriores button I want to open another swf file called sets.swf.The app is freezing when I click Sets Anteriores button
    Here is the code for this fla file.
    import flash.events.MouseEvent;
    preloaderBar.visible = false;
    var loader:Loader = new Loader();
    btHome.enabled = false;
    var filme : String = "";
    carregaFilme("home.swf");
    function carregaFilme(filme : String ) :void
      var reqMovie:URLRequest = new URLRequest(filme);
      loader.load(reqMovie);
      loader.contentLoaderInfo.addEventListener(Event.OPEN,comeco);
      loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progresso);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE,completo);
      palco.addChild(loader); 
    function comeco(event:Event):void
              preloaderBar.visible = true;
              preloaderBar.barra.scaleX = 0;
    function progresso(e:ProgressEvent):void
              var perc:Number = e.bytesLoaded / e.bytesTotal;
              preloaderBar.percent.text = Math.ceil(perc*100).toString();
              preloaderBar.barra.scaleX =  perc;
    function completo(e:Event):void
              preloaderBar.percent.text = '';
              preloaderBar.visible = false;
    btHome.addEventListener(MouseEvent.MOUSE_DOWN,onHomeDown);
    btHome.addEventListener(MouseEvent.MOUSE_UP,onHomeUp);
    btSets.addEventListener(MouseEvent.MOUSE_DOWN,onSetsDown);
    btSets.addEventListener(MouseEvent.MOUSE_UP,onSetsUp);
    btVivo.addEventListener(MouseEvent.MOUSE_DOWN,onVivoDown);
    btVivo.addEventListener(MouseEvent.MOUSE_UP,onVivoUp);
    btHome.addEventListener(MouseEvent.CLICK,onHomeClick);
    btSets.addEventListener(MouseEvent.CLICK,onSetsClick);
    function onSetsClick(Event : MouseEvent) : void
              if (filme != "sets.swf")
                          filme = "sets.swf";
                          carregaFilme("sets.swf");
    function onHomeClick(Event : MouseEvent) : void
              if (filme != "home.swf")
                          filme = "home.swf";
                          carregaFilme("home.swf");
    function onHomeDown(Event : MouseEvent) : void
              btHome.y += 1;
    function onHomeUp(Event : MouseEvent) : void
              btHome.y -= 1;
    function onSetsDown(Event : MouseEvent) : void
              btSets.y += 1;
    function onSetsUp(Event : MouseEvent) : void
              btSets.y -= 1;
    function onVivoDown(Event : MouseEvent) : void
              btVivo.y += 1;
    function onVivoUp(Event : MouseEvent) : void
              btVivo.y -= 1;
    Now this is the sets.fla file:
    Here is the code for sets.fla
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    var video:Video;
    var nc:NetConnection;
    var ns:NetStream;
    var t : Timer = new Timer(1000,0);
    var meta:Object = new Object();
    this.addEventListener(Event.ADDED_TO_STAGE,init);
    function init(e:Event):void{
    video= new Video(320, 240);
    addChild(video);
    video.x = 80;
    video.y = 100;
    nc= new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS, onStatusEvent);
    ns.bufferTime = 1;
    ns.client = meta;
    video.attachNetStream(ns);
    ns.play("http://www.djchambinho.com/videos/segundaquinta.flv");
    ns.pause();
    t.addEventListener(TimerEvent.TIMER,timeHandler);
    t.start();
    function onStatusEvent(stat:Object):void
              trace(stat.info.code);
    meta.onMetaData = function(meta:Object)
              trace(meta.duration);
    function timeHandler(event : TimerEvent) : void
      if (ns.bytesLoaded>0&&ns.bytesLoaded == ns.bytesTotal )
                ns.resume();
                t.removeEventListener(TimerEvent.TIMER,timeHandler);
                t.stop();
    The problem is when I test it on my computer it works but when I upload it to my phone it freezes when I click Sets Anteriores button.
    Please help me with this problem I dont know what else to do.
    thank you

    My first guess is you're simply generating an error. You'll always want to load this on your device in quick debugging over USB so you can see any errors you're generating.
    Outside that, if you plan on accessing anything inside the SWF you should be loading the SWF into the correct context. Relevant sample code:
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    context.applicationDomain = ApplicationDomain.currentDomain;
    var urlReq:URLRequest = new URLRequest("http://www.[your_domain_here].com/library.swf");
    var ldr:Loader = new Loader();
    ldr.load(urlReq, context);
    More information:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7de0.html
    If you're doing this on iOS you'll need to stripped SWFs if you plan on using any coding (ABC) inside the files. You mentioned iOS so I won't get into that here, but just incase, here's info on stripping external SWFs:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/

  • Need help with flash player installation please !!!!

    Hello,
    I need help with my flash player installation because every time I access a movie this is the message I receive. 
    This content on Xfinity TV is not available for viewing with Chrome's "Incognito" mode. To play this video using Chrome, please view this page without "Incognito" mode.
    Still having problems? Try resetting your Flash player license.

    Incognito mode is a Google Chrome setting when you open a new window (Cmd+Shift+N on a Mac Ctrl+Shift+N on Windows) It opens a "private" window with no cookies and no tracking. The problem with it is that when you disable cookies, your license files are not sent to the site (whetehr it's YouTube or xFinity or any other that uses license files for paid content)  and it treats you as if you're a first time visitor. Paid videos won't play wihtout the cookies sending the license file info.
    This isn't a Flash Player setting. It's in Chrome. I did some research and according to Google, "Incignito" mode is off by default, and can ONLY be activate by the keyboard shortcut. There IS a way to disable it from the registry http://dev.chromium.org/administrators/policy-list-3#IncognitoModeAvailability

  • Need help with flash player 9 on vista

    i need help with vista flash player 9 on vista, i play this
    game called neopets and it needs flash player to make some of it to
    work and ive tried to dowload flash player 9 about 25 times and it
    still doesnt work ive tried the 3 solutions on the suport center
    this link
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401499&sliceId=1
    and still nothing can someone help please

    The player is out (they are up to version 9.0.16). Flash
    itself (the development tool) is in alpha and pretty buggy.
    Ernie

  • I need help with the videos

    Yea for the videos, I want to put some Red vs Blue videos on there. And so dar the only way that I see how to put them on there is to buy quicktime 7 pro. Cause it says you have to export them into Itunes. Is there any other way to do it because when I try to update my ipod with the Red vs Blue videos on my library list. It says," Some of the videos in your iTunes library, including the video [video name here], were not copied to the iPod [name of your ipod here] because they cannot be played on this iPod" It confused me when I have the fifth generation iPod.

    Voden,
    A quick search would have answered your question, as it gets asked about a dozen times a day.
    Anyway, the iPod only supports 2 codecs for video, MPEG4 and H.264. On top of that, it needs to conform to the pixel dimensions and bitrate that the iPod will support as well.
    Since you're on Windows, you can use Videora iPod Convertor to convert the videos to the correct format.
    To use Videora iPod Convertor to convert movies for use on your iPod, consult these helpful links:
    To get started: Videora iPod Convertor Guide
    If you have questions: Videora iPod Convertor Frequently Asked Questions
    If you have more questions, post them here: Videora iPod Convertor Forum
    Note that Videora iPod Convertor is a 3rd party program. If you need help with it, post your question there.

  • I need help with streaming video

    I have 7 videos I've produced that I would like to
    progressively stream from my web site. They're all approx 400 x 200
    about 2 minutes long with sound. I have a scene set up with each
    video in a separate keyframe so you can navigate from one to the
    other in the same scene.
    I can get the videos to play locally. When I upload the swf
    and .flvs to my server, they won't play. One error message I get on
    output states that "**Warning** The linkage identifier
    'FLVPlayback' was already assigned to the symbol 'FLVPlayback', and
    cannot be assigned to the symbol 'golden', since linkage
    identifiers must be unique." What I did there is rename each video
    in my library from FLVPlayback to a unique name so I can identify
    it.
    I get that output error message for each of the videos that
    I'm trying to publish. It sounds like I have to change the
    Identifier in each video, but I haven't figured out how to do that.
    Any ideas or suggestions would be greatly appreciated!

    Ah, I see what happened. Every time I import a QT into the
    library, Flash creates a FLVPlayback component along with a .flv
    file. I cleared all but one FLVPlayback component and reimported
    the .flvs to stage and now I have streaming video on the website.
    Thanks clbeech, that was really helpful!
    One more issue. I've selected one of the prebuilt skins
    (Clearexternalplayseekmute.swf) to control video, while it works
    locally, I can't see it on the server. Do the skins need additional
    code to work?

  • Need help with flash templates in Mac...

    Hello,  I did some searches in the forum but found nothing.
    I have a problem.  I have a Mac and and using Dreamweaver CS5.5.
    Recently I download some templates with flash from Hostgator.
    The message I get is:   "This page contains some SWF objects that may not work properly in the most recent versions of Internet Explorer.  Dreamweaver cannot convert them to the new SWF markups.  Please delete each of them a insert again"
    Could you help me please?   
    Thanks,

    Hello,
    The support from HostGator.com told me this:
    After reading about Adobe Dreamweaver and using the library SWF objects. This seems to be a fairly particular error with Adobe Dreamweaver CS4.
    I have read three articles:
    http://forums.adobe.com/message/2958378?tstart=0
    http://www.dreamweaverclub.com/forum/showthread.php?t=33323
    http://www.vbforums.com/showthread.php?t=579625
    They all concur this error is completely ignorable in some way. If you include the object, and just ignore the message, your content will still upload to your site. This has to do with how adobe has changed the embedding of objects since previous versions.
    However, what I can concur from all of this is that you need to simply just re-add the file to your site/library, or just ignore the error message and the embed code should work just fine.
    I test a hostgator template with flash on their server, and works fine.
    I want to know your opinion.  T hanks for your help...

  • Help with Flash Video Import

    I was hoping to get some help with something that is frustrating me.
    I have an .fla file with two frames. In the first frame I need a movie (.flv). When the movie ends I need to progress to the next frame on the time line.
    I have converted the original .mov to an .flv and imported it into my file as an external viseo w/playback component and no skin. It is now in my library as FLVPlayback and I have given it an instance name of 'goFrame'. Its contentPath is the name of my .flv file (P1010472.flv)
    So I put the FLVPlayback onto my first frame and I put a stop() in the actions for the frame; and I have text on the second frame, also with a stop to see when the frame has advanced.
    I found this code:
    var listenerObject:Object = new Object();
    listenerObject.complete = function(eventObject:Object):Void {
            _root.gotoAndPlay(2);
    myMedia.addEventListener("complete", listenerObject); 
    I was under the impression I put this code in the actions for the frame that has the video component (the first frame)
    I replaced 'myMedia' with 'goFrame' which is the instance name I gave my FLVPlayback but what is the listener object? This is the code I now have on the first frame actions:
    stop();
    var FLVPlayback:Object = new Object();
    FLVPlayback.complete = function(eventObject:Object):Void {
            gotoAndPlay(2);
    goFrame.addEventListener("complete", listenerObject);
    but it doesnt advance at the end of the video, it stop on frame 1 after playing the video.
    I know I must name the 'listenerObject' and the 'myMedia' event listener but I must say I am simply confused what goes where. I may be a bit dense as I have been reading forums that are discussion this type of thing but cannot figure what name goes where in this code or if I am entering it correctly. It simply is not advancing.
    can anyone give me a hint?
    Chris

    use:
    var listenerObject:Object = new Object();
    listenerObject.complete = function(eventObject:Object):Void {
            _root.gotoAndPlay(2);
    goFrame.addEventListener("complete", listenerObject); 

  • Need help with N93i Video sound/audio problem........

    hi,
    i really hope someone can help me out here...
    after i have done with recording video clips and i replay the video,the phone speaker came out a very noisy sound (is like a bad Radio Frequencies noise)
    why or how is this happen ???
    how can i stop the noisy sound that came out from the phone speaker ?
    Thank you in advance !

    hi el_loco,
    yes,the sound appear to be the same too when i play on the pc
    the noisy sound came from the loudspeaker outlet,
    i got a strong feeling that somethings is wrong with the build in microphones or maybe the loudspeaker ???Message Edited by nl3181 on 15-Jun-200709:23 PM

  • Need help with ipod video/movies

    need help have videos in itunes how do i get them to ipod?

    Double post. Please see your other one.
    http://discussions.apple.com/message.jspa?messageID=3504698#3504698

  • Require Help with Flash Video XML Playlist

    flash devs,
    all i'm doing to playin videos from a xml file - (used lots
    of info and code from Lee's XML Video Playlist Tutorial)
    after spending hours getting this to work correctly in AS3
    and how i want it to work i've hit a brick wall
    i've got 2 components on stage - vid_select (List) & vid
    (Player)
    i can load my flv videos from my xml file just perfect but
    after the first video is done it stops.
    i'd like to have my video player play through the xml file
    and then restart at the beginning...
    i've attached my code...
    if anyone could possibly help me so that it "loops" through
    all the video in my xml list that would be
    so greatly appreciated...
    i'm new to AS and am learning alot but some code gets
    complicated and i'm not sure what to add...
    thanks in advance
    @pixeladdikt

    Again thank you for your help in advance...
    I put the script folder into the root. As far as the .flv
    file it is showing up as being "put" to my web server. when i
    checked the root folder it is there. again i am having the same
    problem.. the local view works but when i check it on the web it
    just shows that there should be a flash video there but it does not
    show up.
    i created a new root for this test page the new link is..
    http://www.wfwa.org/TESTindexfolder/TESTindex.asp
    here are the files that are showing up in it...
    flashprojectwebvid.fla
    flashprojectwebvid.html
    flashprojectwebvid.swf
    PBSpromo.flv
    SteelExternalPlaySeekMute.swf
    TESTindex.asp
    and the Scripts folder
    thanks again for any help..

Maybe you are looking for