Help with Flash  Video - Loaded but not playing...

I created an SWF file which plays correctly on my system but
does not play
on the web.
I had a previous version of the SWF file working correctly.
The only
difference is that this swf was remade with audio.
Here's the link:
http://teknigroup.com/courseware/Inventor%20Level-I/module1/IV-m1-6.htm
The swf is in a zip file ( unzipped version in the web page -
of course) at
http://teknigroup.com/courseware/Inventor%20Level-I/module1/images/createproject1.zip
If this is downloaded and played, it works correctly.
Any help you can provide will be greatly appreciated!
Dennis Jeffrey, AICE, MICE
260-312-6188
Instructor/Author/Sr. App Engr.
Inventor 11 Professional SP2
HP Pavillion Zv5000 (Modified)
Geforce Go 440, Driver: .8185, 2GB RAM
XP Pro SP2, Windows Classic Theme
http://www.design-excellence.com

Here's the location:
http://teknigroup.com/courseware/Inventor%20Level-I/module1/images/clip0014.flv
Dennis Jeffrey, AICE, MICE
260-312-6188
Instructor/Author/Sr. App Engr.
Inventor 11 Professional SP2
HP Pavillion Zv5000 (Modified)
Geforce Go 440, Driver: .8185, 2GB RAM
XP Pro SP2, Windows Classic Theme
http://www.design-excellence.com
"Nickels55" <[email protected]> wrote in message
news:eqft16$35g$[email protected]..
> where s this file on your server "clip0014.flv"
>
> Create a direct link to it and post it here. If you
click on that link and
> get
> a page not found error then you need to have your server
setup for the
> correct
> FLV mime type:
>
>
http://www.adobe.com/go/tn_19439
>

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..

  • The training tutorials under creative cloud learn are loading but not playing

    The training tutorials in creative cloud learn are loading but not playing, is there a problem with adobe tv?

    Hi sarahhunter1,
    Please try playing video in Google chrome browser.
    Regards,
    Romit Sinha

  • 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..

  • 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 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!

  • Will this help with windows vista u tube not playing in full screen?

    I have windows vista and hadn't seemed able to get full screen to work with u tube. I tried going to google chrome and then to the u tube page. Click on the icon in the address bar that shows www.youtube.com ( It's on the left next to the address ). This shows you view site information. Run you cursor error over each permission on the right. You are allowed to change each permission to allowed by you. I allowed by clicking on each one all but the: locations, notifications, mouselock, and media. When you are done, you may click outside of this box to have it go away. The you tube page will ask you to reload to have permissions take effect. After I did this I also went to the box to customize and control google chrome wich is way up in the right corner either having three small lines or may be a gear box. I clicked on this and went to tools and then clicked on extensions. It will show you google docs, mcafee, or whatever you have. I went down and clicked on get more extensions. This should bring you to chrome web store. The search is up on the left. type in : window expander for youtube and hit the enter key. click on add to chrome next to the window expander appliction. I exited out and went back to you tube. My videos play in full screen. Hope this can help someone.

    Here's the location:
    http://teknigroup.com/courseware/Inventor%20Level-I/module1/images/clip0014.flv
    Dennis Jeffrey, AICE, MICE
    260-312-6188
    Instructor/Author/Sr. App Engr.
    Inventor 11 Professional SP2
    HP Pavillion Zv5000 (Modified)
    Geforce Go 440, Driver: .8185, 2GB RAM
    XP Pro SP2, Windows Classic Theme
    http://www.design-excellence.com
    "Nickels55" <[email protected]> wrote in message
    news:eqft16$35g$[email protected]..
    > where s this file on your server "clip0014.flv"
    >
    > Create a direct link to it and post it here. If you
    click on that link and
    > get
    > a page not found error then you need to have your server
    setup for the
    > correct
    > FLV mime type:
    >
    >
    http://www.adobe.com/go/tn_19439
    >

  • Help with flash player 10.1 installed on Windows XP but not playing

    I have windows xp (not sure how many bits?), IE 7 (128-bit), service pack 3, shockwave add-on is enabled. Flash player 10.1 is installed, but not playing and not being recognized by the website that requires it in order to view a TV show.

    I am also having a similar issue.. When I open Youtube or any video related pages, my browser hangs.. Mine is 64bit Windows 7. No idea what is causing this issue..  tried re-installing.. But still no luck..  Please help..
    http://www.vouchercodes.net

  • Youtube videos loads but after 2-4 sec the player area gets blank with ivory white colour... Help

    Youtube videos loads but after 2-4 sec the player area gets blank with ivory white colour..
    == This happened ==
    Every time Firefox opened

    Why are you using such an old version of Firefox. The older versions have known security issues. Consider upgrading to the current version. (Help > Check for Updates)
    <u>'''''Adobe Flash'''''</u>
    You are using a <u>'''very old'''</u> version of Flash Player. Updating Flash Player may solve your problem
    <u>'''Install/Update Adobe Flash Player for Firefox'''</u>: your ver. 10.0 r10; current ver. 10.1 r53 ('''important security update 2010-06-10''')
    See: '''[http://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash Updating Flash]'''
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''Update Java'''</u>: your ver. 1.6.0.13; current ver. 1.6.0.20 (<u>important security update 04-15-2010</u>)
    (Firefox 3.6 and above requires Java 1.6.0.10 and above; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    ''(Windows users: Do the manual update; very easy.)''
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.

  • Video with JWPlayer does load, but won't play and no error message (as plug-in needed) apear. What's the problem?

    video's with JWPlayer start loading but won't play and stay black with a rolling wheel. The player is shown and even full screen can be activated.
    There is no message for a missing plug-in.

    Do you see an error message about this in the Web Console (Firefox/Tools > Web Developer;Command+Shift+K)?
    Is there a shield or other extra icon on the left end of the location bar indicating that content is blocked?

  • My Xbox Bluetooth headset works with my iPhone 4,but not my iPhone 4s,help please!?, My Xbox Bluetooth headset works with my iPhone 4,but not my iPhone 4s,help please!?

    Please help,my Xbox headset works with my iPhone 4,but not my 4s,any ideas why?

    make sure you disconnect it from 1 before trying to connect it with the other or it will fail

  • I got a new Macbook Pro and a Superdrive when i put in a DVD it reads it and puts a dick icon with the DVD name when i open that i have the auido and video folders but cant play the DVD anyone know why

    I got a new Macbook Pro and a Superdrive when i put in a DVD it reads it and puts a dick icon with the DVD name when i open that i have the auido and video folders but cant play the DVD anyone know why.

    Open with iDVD.app in your applications folder.
    or download VLC.app
    http://www.videolan.org/vlc/download-macosx.html

  • 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!

  • I recently downloaded a series of instructional videos.  They are in mp4 format and rather large (~500MB on average).  When I try and open them with Quicktime (default) they will not play.  Are there file size restrictions?  Any suggestions would be great

    I recently downloaded a series of instructional videos.  They are in mp4 format and rather large (~500MB on average).  When I try and open them with Quicktime (default) they will not play.  Are there file size restrictions?  I have gone through all of the most recent software updates.  Any suggestions would be great.  Thanks.

    Try VLC Media Player.  It has a reputation for playing just about anything you throw at it.

  • Built Flash Video and will NOT show in Hosted Environment

    Built Flash Video and will NOT show in Hosted Environment.
    The files generated work on development machine. I posted the same
    files in hosted environment and flash will not show. I first
    thought it was Vista 64 IE 7 so I switched to XP IE7 and same
    results. Still it is strange the falsh works locally. I am sure it
    is something simple that I am missing. Any help would be
    appreciated. Thank you.
    Stan

    Nickels55, I appreciate the response. Here are the
    interesting facts. I had my hosting provider apply the mime type
    and restart IIS. No flash video. I have Vista x64 Ultimate with I
    think IIS 7 (the default IIS that comes with the OS.) The flash
    video would not show in that environment until I applied the MIME
    and then it WORKED. Yeah! But I still don’t have it working
    on my web hosting provider with server Win2003. I thought it was
    the hosting provider but I posted on my work server Win 2003 and
    changed the MIME with a reset and could not get the video to work
    there either.
    I would like to try another angle here. Again I am using the
    wizard to encode and publish the flash video. Maybe I don’t
    have a settings correct. I can approach this a few ways.
    1.) I can send my video to someone to post on their Win2003
    server and see if they can get it going.
    2.) Someone send me a short 3 second video that they produced
    that they know it works on Win2003.
    3.) Any other ideas? Surely someone in this universe has used
    the flash wizard to encode a video and published to a Win2003
    server. :)
    I guess the other thing to note is when creating the flash
    video I chose no controls (play, stop, pause). I want the video to
    start when someone accesses the page for the first time.
    Thank you for the help everyone.
    Stan

Maybe you are looking for

  • Microphone input recording source while using Steam/Ventr

    I own the Sound Blaster Audigy 2 Zs. I also use a voice program called Ventrilo while playing CounterStrike/Steam. My problem occurs when I play counterstrike. I go into the surround mixer and choose Line-In 2 as my recording source as that is where

  • Printing multiple 'sheets' per page, using adobe pdf printer

    I've got a number of PDFs that are scanned books, and they were scanned 2 pages at a time, and then OCRed What I'd like to be able to do is re'print' the file to a new PDF file (so that the OCRed text remains searchable in the new file), in a5, so th

  • Split Bulk Xml message in to many

    Hi, How to split large xml message in to many xml messages in biztalk 2006. For example if that xml message contain more then 10,000 records then I have split into each 10,000 records. Can anyone help me? Thanks,

  • Signature verification registry key

    Hello All,      I  have been trying to find the registry key that handles the "default  method for verifiying signatures". We are trying to apply this user  specific key to the local machine; so when any of the users log in, they  will not have to na

  • Webflow vs. struts

    Hi, I am using portal 4.0 . I am evaluating whether I can use struts frame work for "page navigation" rather than "portal webflow". I would like to know how can I design a struts adapter which will work with weblogic portal 4.0. Any insight is helpfu