CS5.5 AS3 FLVPlayback issue adding to stage or library

I am unable to add the Action Script 3 FLVPlayback component to my stage or library in Flash CS5.5 when working with an action script 3 document.
Under components in the video folder i click and drag anyone of the FLVPlayback components (FLVPlayback, FLVPlayback 2.5 or FLVPlaybackCaptioning) to the stage and nothing happens. I am unable to add it to my library as well. All the other actionscript 3 components under the Video folder work. (BackButton, BufferingBar, CaptionButton, etc...)
If I create an actionscript 2 document the FLVPlayback component drags to the stage and adds to the library just fine. So this appears to be an actionscript 3 issue only.
I have 2 other employees in my office using the same product and none of them have this issue. Only me.
I have tried to uninstall the product and reinstall but nothing helps.
I have Flash CS3 installed on my PC and the product has the same symptoms as the Flash CS5.5 trial version that I am running.
I did not try this with Flash CS3 before I installed the CS5 trial. So I do not know if it worked prior to my CS5 evaluation.

Microsoft Windows XP
Professional
Service Pack 3
Video component
Date Created: 3/17/2011
Date Modified: 3/17/2011
User folder
Not sure what you are asking for here.
Thanks for your assistance,
Message was edited by: jimder

Similar Messages

  • Flash CS5 AS3 Preloader Issues

    Hi.
    I'm a complete novice with Flash and at risk at looking like 'Dumbest Poster of the Year', I'm requesting help/advic over a couple of issues.
    My first concern is with a very simple preloader I've made for a movie. Here is the code (posted in first frame of movie; nothing else is in the frame except for the preloader itself):
    import flash.events.Event;
    stop();
    addEventListener(Event.ENTER_FRAME, loaderF);
    function loaderF(e:Event):void{
    var toLoad:Number = loaderInfo.bytesTotal;
    var loaded:Number = loaderInfo.bytesLoaded;
    var total:Number = loaded/toLoad;
    if(loaded == toLoad) {
      removeEventListener(Event.ENTER_FRAME, loaderF);
      gotoAndPlay(2);
    } else {
      PreLoader.PreLoaderFill.scaleX = total;
      PreLoader.PercentLoaded.text = Math.floor(total*100) + "%";
    When I simulate a download, the preloader works fine in all the settings except for 'T1'. On this setting, the movie loads to about 20% then the preloader stops, the movie begins and I receive the following error message in the output panel:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at FlashFront1_fla::MainTimeline/loaderF() .
    The movie itself plays fine on all settings, including 'T1'. Debug doesn't report any issues on preloader or movie.
    Can anybody give me any idea what the source of the issue is? Should I even be concerned about it givne that the movie plays without a problem?
    My second question relates to the 'Simulate Download' pre-settings in Flash. I know their are people out there still on 56K dial-up, or with 'broadband' running at 500 KBS (in the UK at least), but nevertheless, the download simulation settings seem like they are all geared to internet as it was in 1997 and are hardly reflective of the capacity of modern connections. Why is this?
    My movie is not large (about 320KB). Should I even be bothering with a preloader or am I wasting my time for a small minority audience (much like the web designers who still produce sites for the 12 people in the world still browsing in 800 x 600 res)?
    Thanks for any help/advice.

    Flash movies stream down and finish "loading" when the first frame and content that loads on the first frame is available, though frame 1001 might not be downloaded yet. You would think you'd be kinda safe with frame 2 on a T1, but I think the issue is things aren't updating in the right order  rather than things not really being downloaded. Heck, it could even just be the T1 simulation that's causing problems.
    Debug Movie probably isn't showing issues because it slows the timing enough to make everything ok. You could try trace statements too to see how far the code gets.
    Also, you might try a full scale AS3 loader like this one http://www.republicofcode.com/tutorials/flash/as3loader/
    I've found the Event.COMPLETE listener for the loader like this:
    my_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, finishLoading);
    to be pretty accurate so far in regards to content truly being loaded where as previous methods gave false positives for loading.

  • Flash CS5: unable to drag component to stage or library

    We are the developers of a complex Flash component (http://www.openspace-engine.com) which worked without issues on Flash CS3 and CS4. Now, in Flash CS5 (both Mac and Windows versions) we have found a couple of problems at author-time, so any help would be appreciated.
    -1-
    After installing the mxp file containing the component, when trying to drag the component from the Components panel to the stage, or to the Library panel, it doesn't work. There's no way to import the component!
    -2-
    If we open an existing FLA (created with Flash CS4), the component doesn't show correctly at author-time: you only get a black frame, instead of the expected result (it should show a white background with a logo in the middle). When compiling, everything works fine.
    Any ideas? Thank you.

    The described issues have been reported to Adobe, which was able to replicate and to fix them. Simply install the latest Flash update.
    Thank you to the Flash development team.

  • Error #1009 - the most stupid AS3 loader issue ever !!!

    Hi,
    (It's about AS3 / Flash CS4)
    As a developer I often have no controll what is the content of a movie being runtime-loaded. I must presume I have no control on it at all - movie clips are marketed and sold and the only thing expected is that they play nice. And they are supposed to be runtime-loaded by a simple "progress-bar" style loader.
    The loader movie itself is fine. Though it's not sort of these tricky "no timeline, document-class only" it used to do the job.
    The main code is as folllows:
    FRAME 2:
    var thisRequest:URLRequest = new URLRequest("movie.swf");
    var thisLoader:Loader = new Loader();
    var newContent:MovieClip;
    thisLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, doneLoading);
    function doneLoading(evt:Event):void{
        newContent = MovieClip(thisLoader.content);
            //stage.addChild(newContent); -- please notice I commented this line !!!
    FRAME 3:
    thisLoader.load(thisRequest);
    As you may see, it's nothing special - just regular loader stuff here...
    But the issue is that it throws errors just in case of some loaded SWFs.
    Another words - the content and structure of movie.swf impact the loader performance!
    Too often I notice this kind of error being thrown right after "thisLoader.load(thisRequest);" is execuded:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at movie_fla::MainTimeline/frame8()
    Right after - that means BEFORE adding loaded movie to the Stage childlist etc.
    I said - right after movie.swf is invoked by the "load" command !
    This is really rediculous!
    I do not expect this sort of behavior! I expect the loaded movie to be quiet unless explicitly added to stage with:
    stage.addChild(newContent);
    But in a contrary - it seems the loaded movie becomes somewhat active right after being loaded - even before being added to stage. And in some cases this prematured activity leads to hard-to-controll errors! Please notice the error is thrown despite line where loaded content is added to stage is commented!
    I said what I wanted to say - now dear Flash AS3 experts and mastahakas please - give me some advice what to do in this situation.
    I am really, really confused as I want to write clean, error-free code and I get run out of ideas how to deal with this nasty issue.
    Rgs,
    Ziggi

    Yeap,
    I found the solution:
    thisLoader.contentLoaderInfo.addEventListener(Event.INIT, initLoading);
    function initLoading(e:Event){
        newContent = MovieClip(thisLoader.content);
        newContent.stop();
    So, stopping the loaded movie in this handler do the job...
    Stupid anyway!

  • My Apple Macbook hard drive crashed and I had to replace. Now trying to reload CS5 and having issues. When I click download from Adobe download page, a screen pops up saying "Access Denied". I have serial number, but don't even get to a page to enter. Ple

    My Apple Macbook hard drive crashed and I had to replace. Now trying to reload CS5 and having issues. When I click download from Adobe download page, a screen pops up saying "Access Denied". I have serial number, but don't even get to a page to enter. Please help…Thanks!!

    Make sure you have cookies enabled and clear your cache.  If it continues to fail try using a different browser.
    You can also download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS5: http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • How link from html page to a specific frame in flash cs5 as3

    Hi!
    I'm kinda new around here. I am interested in knowing how to link from a specific html page to a specific frame in flash cs5 as3.
    I have a website that I originally began to design in flash but later started developing new pages for it in html. The flash part of it has several pages on different frames and I have created links from the flash part to the other html pages, but, I can only link the html pages back to the main flash home page, and not the other pages in the flash part of the website.
    I have read that in cs3 it was possible using the flashvars skip variable, but I don't know how to do it. I have not yet seen any working examples and I could not find any instructions / tutorials online for cs5.
    Can someone help here?

    add a query string, to the swf's embedding html, with variable/value indicating the frame you want to display in your swf.  add a javascript function to return the query string (or entire url), call the javascript function from flash using the externalinterface class.  and finally add code to your swf to parse the returned url or query string, parse it and then direct your timeline to the appropriate frame.

  • Spry Tabbed Pannels issue: adding new divs disrupting widget

    I am having issues adding divs to the existing html framework of the .TabbedPannel div. Once I add additional divs, the content for each individual tab is displayed in one long pannel. I think once I added the new divs, the javascript was messed up. I'm a newb when it comes to javascript. does someone have advice for this issue?
    Note, once I added the ".b" ".l" ".r" class divs, the pannels got all messed up.

    Hi,
    As you are already aware, this is where it goes wrong:
           <div class="TabbedPanelsContentGroup" >
            <div class="b"><div class="l"><div class="r">
             <div class="TabbedPanelsContent" id="derek">
    If you want to assign different CSS rules to your content-panel, then why not apply those rules as follows:
           <div class="TabbedPanelsContentGroup" >
            <div class="TabbedPanelsContent b l r" id="derek">
    Also you can apply CSS rules within the TabbedPanelsContent-div to suit your needs.
    I hope this helps.
    Ben

  • Issues adding friends to iChat, please help!!

    I am having issues adding friends on ichat. I can enter their emails but it doesn't notify them on their computer that I added them. How do I fix this?

    Hi,
    iChat uses Screen Names (with AIM and can be email in style)
    Jabber Names/IDs look like emails as well but with Googletalk, FaceBook and Jabber Australia being the few exceptions I know of.
    AIM Names when registered look like an email ([email protected]) but you do not need the @AIM.com suffix when adding them as a Buddy.
    (Apple IDs of @mac.com and @me.com do need the relevant suffix)
    It would help if we knew what type of Buddy List you were adding these to and what sort of  "Email address" they are.
    11:27 PM      Friday; March 2, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Issue adding user Calendar

    I am having an issue adding a user calendar.
    In the Workgroup manager if I enable calendaring it seems to allow me to select the host and save it, but if I come back later it is still deselected.
    Note: all users and groups have access to all services at the moment, and the web calendar is enabled for their group. The DNS seems to be working fine - the Wiki works without a problem, so does AFP, and Open Directory logins.
    Any help would be appreciated.

    Wish I had some luck on this.
    I changed over the OSX server to handle DNS - which works fine -just in case that had any bearing, but no luck as yet - it still refuses to enable calendaring for any user.

  • I have opened artwork created by someone else. We are both using Illustrator CC. This particular issue shows up in Illustrator CS5 also. Issue: in the links pallet a weird gray gadient keeps replicating. I cannot identify it in the artwork. It is an embed

    Hello,
    I have opened artwork created by someone else. We are both using Illustrator CC. This particular issue shows up in Illustrator CS5 also. Issue: in the links pallet a weird gray gradient keeps replicating. I cannot identify it in the artwork. It is an embedded image. I cannot get rid of it and it keeps reproducing. WHAT is it and why can't I delete it?
    Thanks for any help. Ingrid

    Hello, yes it is reproducing over and over. I look in the original artwork and there are 28. I did not save over the original art but “save as”. Worked on the new file for a while and now there are 47!. I copied all the content to a new blank, all colors removed, file and there they were. If I click on them can’t relink, won’t show a bounding box, no frame in wire-frame, no stray points. they are ghosts. Here is an image, to give a better visual of how they look in links panel. Any ideas? Thanks, Ingrid

  • Serious locking issues with Main Stage 3

    Having serious locking issues with main stage 3.  I just did a music gig over the weekend with main stage 3, and the application locked up 8 times during my performance.  There were also several times where there was a delay between the time I struck a key on the midi controller and the time sound actually came out of the audio interface.  Has anyone else ran into this problem??
    10.
    I am running mountain lion 10.8.5, on a 2009 Macbook 2.53 GHz Intel Core 2 Duo. w 8 GB Ram.
    Anyone know how to fix this, if even possible?  

    Just read some reviews. There seems to be a lot of problems with the latest main stage update.  I didn't notice these latency problems until did the latest update..
    Apple please fix this quickly!!!

  • All of a sudden (video) files added to my iTunes library after a certain date aren't playable on other devices.

    hello!
    All of a sudden I have a weird issue with playing video-files added to my iTunes library after a specific date.
    This is the situation so far:
    I encode the video for iTunes with the same settings for the last 3 years. I know these vids play on all my devices. AppleTV & iPad. All of a sudden videos added to my library after the 8th of september aren't playable on my AppleTV and iPad. I can play them directly in iTunes and by accessing them directly via the finder and quicktime.
    The following errors occur:
    When I pull the video from iTunes on my AppleTV.. the video simply doesn't play.
    When I pull the video from iTunes on my iPad I get a message that the file can't be found.
    When I push the video from iTunes to the AppleTV using airplay I get a message that there has occured an error while connecting to the AirPlay-device "Apple TV". The necesary file could not be found. In addition when the AppleTV is switched off it doesn't turn on doing this, suggesting that there is something missing on my mac itself.
    All the above errors aren't popping up when I choose a video that has been put in my library before the 9th of september. Then everything works as expected.
    This is what I tried:
    Turning off and on home sharing on all devices including the mac.
    Logging in wiht a different apple ID though using the same ID as before.
    I created a new iTunes library and populated with a video that was added after the 8th of september and one that was added before the 9th of september. Surprisingly the older one played and not the newer one.. while they both used the same encoding settings. The new library was locally on my mac as my original library is on a NAS.
    I encode my videos with Quicktime 7 Pro using the following settings:
    H.264 (current frame rate, key-frames:automatic, re-order frames, automatic bitsize)
    Medium Quality
    Multi-pass
    current resolution (which is always 1280 X 720)
    AAC sound
    44.100 kHz
    128kbps
    I'm using the Mountain lion 10.8.2 and iTunes 10.7 Mountain lion got updated a few days after 19th of september and iTunes i think as well. Both versions were released after this issue seemed to pop up.
    I also have two video-files encoded on the same day with the same settings that dragged into the iTunes library on the 9th of september. One works.. the other doesn't.
    So I wonder if there is somebody out there that can tell me what might have happened here and how I could fix this issue.
    Thank you in advance.

    Hi Seraphiel07.
    I have a very similar issue. Hardware involved:
    Apple MacMini (Mid 2011) - OSX 10.8.2. iTunes 10.7. Home Sharing enabled.
    Apple TV (3rd Generation). Home Sharing (access) enabled.
    Apple MacBook Pro (15" Mid-2009). OSX 10.8.2. iTunes 10.7. Home Sharing enabled.
    Apple iPad 2 (Wifi only). iOS 6
    Apple iPhone 4S. iOS 6
    All connected through:
    Apple Time Capsule 8.0211n (4th Gen)
    I have an iTunes library on the MacBook Pro, shared over "Home Sharing" and another (duplicate content, different library name) iTunes library on my MacMini, which is also accessed through the Apple TV.
    All software is current (as of Sep 26th).
    All movies are iTunes purchases. 80 in total.
    All files are purchased (and home shared) under one account.
    My last two iTunes purchases both HD movies on 09/17/2012 and 09/05/2012 refuse to appear on any device accessing either of the two Libraries over Home Sharing. It should be noted that every other movie (the other 78) all show up and play correctly. I therefore know it is not an issue with connectivity, otherwise I would see zero movies available.
    I have:
    1. Removed all content from each Library and re-added
    2. Upgraded the OS on the MacMini 10.8.2
    3. Tested viewing the two missing movies on other Apple devices and no luck.
    4. Turn home sharing on and off within iTunes and also on each device.
    It would appear to me that the issue is with the files themselves, rather than the devices as different devices and different versions have been tested.
    All comments welcome.

  • After adding folders to iTunes library, now have duplicates of each song

    I store all my music on a separate drive, M:\
    I have a specific file structure setup that has worked for me for years, M:\Artist\Album
    I recently received an iPod for my birthday, and started using iTunes. After adding my music drive (M:\) for inclusion into the library (without "keep..." and "copy..." selected, as to keep my current file structure intact), when selecting "File->Display Duplicates" just about every song in the library has a duplicate, one in the original folder "M:\Artist\Album", and another in "M:\Playlists\..\Artist\Album". I understand that basically somehow iTunes glitched and started in the "M:\Playlist" directory when adding to the library at some point, however I am at a loss as to how. In my actual folders I only have 1 copy of each song, so basically iTunes is making a symbolic link to each song and adding it into the library as a separate song.
    I have over 9000 (must...resist...meme...) songs in my library, and removing and restoring takes quite a while. I'm pretty sure I'm going to have to do this at least once now, but any ideas as to why or advice on how to avoid this particular problem in the future?
    I am pretty set in my ways of my current file structure, since I don't use iTunes as my primary media software, so I would prefer to not have to resort to succumbing to just letting iTunes handle everything the way it wants (I pretty much hate that).
    Thank you for any suggestions you may have.
    EDIT: Is there a way to have iTunes rename/move files when adding to its library to specific folders via custom rules based on ID3 information (i.e. WMP rip settings)?
    Message was edited by: kaziekama

    If you have "Keep..." and "Copy..." unchecked, iTunes will simply reference the existing file, and will not change your file structure, as you correctly note.
    I'm fairly sure that some other program is operating on your files. The "Playlists" folder that you mention has nothing to do with iTunes. On my PC, only Windows Media and Roxio use it.
    To your question +"Is there a way to have iTunes rename/move files when adding to its library to specific folders via custom rules based on ID3 information (i.e. WMP rip settings)?"+ the answer is no. When iTunes rips a CD, it names the files as track number and title, with no option to do differently. And as far as placing the ripped files, they go in Artist/Album, with no option to do differently. As full-featured ripping programs go, iTunes is not even in the race.

  • Issues with using my iPhoto library on my external hard drive.  Very slow to open and pictures disappear in thumbnail view.

    I have recently transferred my iPhoto Library to my external hard drive (WD MyBook Live) and have some questions.  Since I have done this and used the "alt + option" to select it as my default library I have been having some issues.  When using the library on the external drive as my default drive it takes a very long time to load compared to when it was on my macbook's hard drive. Is this normal?  Also, once it does load the thumbnails are only viewable when scrolling quickly through the photos and they are very blurry.  However, if I were to select one randomly (because of this problem I have no way of knowing which one I'm selecting) it brings it up in the edit view and it is a crystal clear picture.
    Is there a way to fix these issues?  I'd love to be able to use the iPhoto Library off the external drive to free up space on my macbook but if it isn't going to work as streamlined as it would on my macbook hard drive.  I have not yet deleted the original iPhoto Library from my macbook because I did not want to do so until I knew the new iPhoto library on the external drive was working properly.  Does this make a difference?
    Please help!

    The problem lies with occasional dropouts that can corrupt the library's database files if they are being written to as the time of dropout.  It's the nature of wireless networks.  If you have a very strong signal throughout and are willing to take a chance then go for it.
    But as for the speed, it must be iPhoto 11 and it's complexity causing the slowness. I had tried using a library on an EHD connected to my iMac from my laptop wirelessly with iPhoto 7 or 8 and it was pretty fast.  I think it was 7 before faces and places came into being.
    Send a feature request to Apple via http://www.apple.com/feedback/iphoto.html to improve wireless performance, etc.
    OT

  • The songs I've added to my itunes library from cd's are no longer showing up in my itunes list. how do I put them back on from my ipod?

    the songs I've added to my itunes library are no longer showing on my itunes account. how do I load them back on from my ipod

    What do you mean by " on my itunes account"
    and "in my itunes list"?

Maybe you are looking for

  • Access Pictures on disk after burning

    Hi everyone, I am currently making an iDvd project for a church in my area. They want the DVD to have the two performances of a musical they did on it, as well as a slideshow of around 1500 pictures. Currently, everything fits fine onto the disk (4.7

  • Coverting to ORACLE

    Hi, The below code is in sql server Can some one plzzzzz....help me do the same in ORACLE BEGIN IF @str_UG_Flag = 'I' BEGIN IF NOT EXISTS (SELECT 'X' FROM EMA_SCM_GEN_UOM_Group WHERE EMA_SCM_GEN_UG_Code = @int_UG_CODE) BEGIN INSERT INTO EMA_SCM_GEN_U

  • Standard Report Customization

    Hi All, I am wanted to Customization for existed oracle standard Report(VAT Sales Report).I just want to add 4 more fields. So that i have increase the "Main section width and hight" While i am trying to expand the Main frame i am getting the error f

  • InDesign and XML Automation

    I am new to the InDesign and XML Automation process. We have a xml file that has 100+ items and our goal is to automate them into a InDesign format (5-6 per page). Does InDesign/XML support this and what is the best approach to do this?

  • Icons in 10g forms

    Hi Everybody.. I want display iconic buttons in forms 10g.... I've searched this forum and read webicons.pdf as well. I followed the speciifed steps, but it doesn't work I followed following steps. 1. created jar file for my .jpg files 2. added jar f