Flash CS4 Parameter is incorrect

I ahve seen a few threads on this but can't resolve my issue.
CS4 was working fine for a few weeks, then yesterday I opened an FLA and got an error pop-up that said "Parameter is Incorrect".  The error happened for all FLA files.  I could save changes but could not preveiw or publish (same Parameter is Incorrect error as on starting CS4).  I even made a blank FLA and it wouldn't work either.
Relized today during more testing that this error only happens any time I open a file that is on my desktop (running XP).  Same file moved into another folder (Even desktop\newfolder) works fine.
Any ideas?
Thanks

Hello guys, did you figure out the fix of this bug? It just happen to my CS4 2 days ago and I don't know what to do. I searched all over the web but noting.
Thanks

Similar Messages

  • HELP: Flash Error Parameter is incorrect.

    Hi. I really need help on this...I am working as a teacher in Singapore and I am currently doing a project for our school. I am using the Adobe CS4 Design Premium. I am using Adobe Flash CS4 for the project I am doing.
    Adobe Flash CS4 crash often and after the latest crash and when I open up my project i got an error which is "parameter is incorrect" and when I press ctrl+enter, it didn't pulish the file and I have noticed that the swf file that was created before is gone after I press CTRL+enter.
    I was wondering what went wrong and if this problem can still be solved. I really neede help right now. I have tried to read articles on the adobe form but found no such case and I have also tried looking using google but no concrete answer.
    I hope there would be someone to helpl me out on this. Thanks in advance...

    I had the same problem in Flash CS6 and the problem was corrupted file inside folder with publication .FLA file.
    In my case it was .apk file which I've transfered from tablet to PC, and apk file was without Date modification info (obviously corrupted).
    When I deleted corrupted file, no error was thrown anymore.
    Also, when I moved .FLA file away from the path of corrupted file (folder and subfolder structure) it worked just fine.
    Once before I've found out that AIR application (I believe only when you're testing it) indexes root folder and all subfolders at startup. So, when it couldn't read corrupted file in the root folder, the error was thown.

  • CS 4 error "The parameter is incorrect!" CS4 crashes after when I try to create a link! Help!

    Trying to create a link to draft pages, websites but Contribute CS4 gives me error "parameter is incorrect", window for connection pops up. As I create link CS4 crashes. Any ideas?

    I have the exact same problem and there's no help from Adobe.  I tried re-installing the program. Problem persists.

  • Why is Flash CS4 so terrible in Windows 7 64 Bit?

    Hello,
    Well, I still have yet to see any posts or answers to posts that address the following problems with Flash CS4 on Windows 7 64 Bit:
    1. Flash takes half of forever to load.
    2. Flash is slow.
    3. Flash will not allow to Test Movies or Test Scenes. (This one is the most maddening and irritating.)
    4. Will not publish files due to an incorrect parameter. (Notice it doesn't say WHICH one.)
    Basic Specs:
    Windows 7 64 Bit OS
    8GB of RAM
    Intel i5 750
    I would really hate to have to revert to Windows XP just to use Flash CS4 reliably and I certainly am in no mood to purchase yet ANOTHER upgrade to CSx.
    Windows 7 has been out for around a year. Certainly someone at Adobe can illuminate why this program functions so poorly in Windows 7.
    Thank you.
    MGL

    Oh, and if by chance you, too, run Windows 64 Bit and Flash CS4, I would appreciate if you could share any thing you did to your system or installation to make it work better.
    Please don't just say, "Well, it works for me, blah blah blah."
    Thanks.

  • Parameter is incorrect compile problem in virtual box

    Hi, since Linux support for flash builder (flex builder at the time) was dropped longer ago, we Linux users are forced to use virtualbox to run flash builder. Latest virtualbox 4.1 has an issue to build flex projects.
    I spent hours yestarday to try to solve this and finally only working solution I found was to downgrade back virtualbox to version 4.0
    Stuff I tried after upgrading to VB4.1
    1. building existing flex project in existing installation of flash builder 4.5
    2. using 4.5.0 sdk and 4.5.1 SDK to compile.
    3. trying to set lower flash target, and changing other deployment params
    4. getting rid or any aditional compiler parameters
    5. setting up same project again using same fodler with files
    6. setting up project from scratch with project source files got fresh from repo
    7. trying with new flash builder installation 4.6 trial with 4.6 flex sdk
    none of these helped and all resulted in compilation error
    Parameter is incorrect, flex problem, location "Unknown".
    As this thread explaines http://forums.adobe.com/thread/982266
    there may be other solution which is to setup new windows virtual machine and install flex there.
    but for me this is just another bad solution as mine so far (not upgrading VB)
    After downgrading back to VB 4.0 all even existing projects in both 4.5 and 4.6 built with no problems.
    Just to complete I'm using Windows 7 as OS in VM.
    If anyone finds acceptable solution please share..
    thanks.

    So for those interested, I solved this problem by creating another blank Windows VM, re-installing Flash Builder and importing my project again.
    It seems that Adobe Flash Builder has built in something obscure that does not like you migrating a VM to another host.  I did un-register and re-register my product between the VM's by the way - that also did not work.

  • Flash CS4 loader class content not displaying in browser

    Hello,
    I'm very new at Dreamweaver and actionscript so any help would be greatly appreciated!
    I'm on a PC and created a simple gallery in flash cs4 to load images on a button click.  The images are being loaded with a loader class.  When I test the gallery in flash the images load correctly.  However, I inserted the .swf into Dreamweaver and when I uploaded the page onto the server, the buttons and the animation worked correctly, but none of the images were being displayed.  I tested it in both Firefox and IE and it did not work in either browser.
    I thought maybe the files were in the incorrect location, but everything is in the same file, including the .swf and the images.  I'm also using TweenMax and all those files are also together with the .swf.
    I also ensured that I had the latest version of the Flash player, but it still is not working.
    Thank you!

    Thank you for the quick response!  I am not actually using XML - I am loading the images from a folder.  Here is my code:
    function clicker(e:MouseEvent):void
    var myMC:MovieClip = e.currentTarget as MovieClip;
    switch(myMC.name){
      case"_button1":
       loader.load(new URLRequest("imgs/image01.jpg"));
       break;
      case"_button2":
       loader.load(new URLRequest("imgs/image02.jpg"));
       break;
    //loader class
    var loader:Loader = new Loader();
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE,placeimage,false,0,true);
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,errorhandler,false,0,true) ;
    loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,preload,false,0,true);
    this.addChild(loader);
    //handler for the loader
    function errorhandler(e:IOErrorEvent):void
    trace(e);
    function preload(e:ProgressEvent):void
    trace(e.bytesLoaded);
    The imgs folder is in the same folder as my .swf and has been uploaded.  Could there be something wrong with the links?

  • Parameter is incorrect compile problem

    Hi there,
    I am really tearing out my hair on this one.  I have a flex project using Flash Builder 4.5.1 that uses BlazeDS remoting services.
    I run my Flash Builder inside a Oracle VirtualBox VM (Windows XP) since I am an Ubuntu user.  I have been happily compiling and deploying for a couple of months without any hassles.
    Recently I got a new laptop.  I exported my VM, and imported it on the new laptop.  Suddenly my project upon compilation gives me an error: "The parameter is incorrect" location "Unknown".
    If I create a simple project from scratch it compiles fine without any problem.  I can then navigate to my BlazeDS service, add it - but as soon as I make a reference to that service in my component - the component compiles fine but on project level it gives the above error.
    I have been searching everywhere for a more verbose version of the error - but nothing.
    Help please!
    Rgds,
    Willem.

    So for those interested, I solved this problem by creating another blank Windows VM, re-installing Flash Builder and importing my project again.
    It seems that Adobe Flash Builder has built in something obscure that does not like you migrating a VM to another host.  I did un-register and re-register my product between the VM's by the way - that also did not work.

  • Need help displaying images with List component for Flash CS4 (ActionScript 3.0)

    Hi folks:
    I am an inexperienced user of Flash CS4 Pro (v10.0.2). I am attempting to use the List component with ActionScript 3.0 to make a different image display when a user clicks each item in a list.
    I did find a tutorial that showed me how to make different text display using a dynamic text box and the following ActionScript:
    MyList.addEventListener(Event.CHANGE, ShowSelectedItem);
    function ShowSelectedItem(event:Event):void {
        ListText.text=MyList.selectedItem.data;
    ...where My List is the instance of the List component and ListText is the dynamix text box. In this case, the user clicks an item in the list, defined by the label value in the dataProvider parameter of the List component, and text displays as defined in the data value in the dataProvider parameter.
    However, as I mentioned to start, what I really want to do is make images display instead of text. Can anyone provide me the steps to do this?
    I appreciate your help (in advance)!!
    Cindy

    Hi...thanks for responding! I was planning on using images from the Library, but if there is a better way to do it, I'm open. So far, I just have text in the data property. This is part of my problem. I don't know what I need to put in the data value for an image to display. Do I just put the image file name and Flash will know to pull it from the Library? Do I need to place the images on the stage on different frames? I apologize for the "stupid user" questions, but as you can tell, I'm a newbie.
    Appreciate your patience and any help you can offer!
    Cindy

  • Export to PDF Failed "A parameter was incorrect."

    How can I get Fireworks CS4 to export to PDF when it gives me this message:
    "Could not complete your request. A parameter was incorrect."
    This worked a work a couple of months ago, but no longer. (Running Windows XP Pro on PC with 2.2 GHz & 3.5 MB RAM.)
    Thanks!

    I had a button without a link.  Breaking appart the button so it didn't expect a link anymore worked.

  • Captivate 4 not exporting to Flash CS4 correctly

    When I export from Captivate 4 to Flash CS4 it doesn't place the imported objects on their own timeline. Instead, it places each object into a movie symbol, which has its own timeline. The problem is that when I save it as a .swf in Flash and then I open it in After Effects none of the highlight boxes are visible.
    As you know, After Effects does not see Flash symbols that are buried below the main timeline.
    I opened up a project I worked on a year ago (with a different computer) and the Flash files had the exported Captivate items on the main timeline with the object on its own layer. Those files work fine in After Effects.
    Can anyone tell me if they are having the same export issue with Captivate 4 not exporting its elements in Flash on the main timeline (as seen in the help file: http://help.adobe.com/en_US/Captivate/4.0/Using/WS5b3ccc516d4fbf351e63e3d119e9582981-7fff. html)?
    Thanks!

    I found the solution here (http://labnol.blogspot.com/2004/09/export-captivate-movie-to-macromedia.html). I'll reprint the steps here:
    1. Close Flash CS4 if it is open.
    2. Open Windows Explorer.
    3. Navigate to:
    C:\Program Files\Adobe\Captivate
    4. Copy the RDMFISTUB.dll file.
    5. Navigate to:
    C:\Documents and Settings\username\Local Settings\Application Data\Macromedia\Flash CS4\en\Configuration
    Note: The 'Local Settings' folder by default is hidden. If you are unable to locate the 'Local Settings' folder you can unhide it by opening Windows Explorer, select Tools > Folder Options > View, and select the option to 'Show hidden files and folders'.
    6. Create a new folder called Importers. Your final path should look like this:
    C:\Documents and Settings\username\Local Settings\Application Data\Macromedia\Flash 8\en\Configuration\Importers
    7. Paste the RDMFISTUB.dll into the Importers folder.
    8. Open Flash CS4.
    9. Create a New Flash Document. Save the document (or Flash may freeze when importing)
    10. Select File > Import > Import to Stage.
    11. Browse to and select the CP file.
    12. Click OK.
    Here is a comparison picture of the results. Without the steps above the imported Captivate assets will reside inside of a movie symbol (one for each slide). This is labeled "incorrect" in the image. I want each asset on a new layer in the root timeline. This is labeled "correct" in the image.
    I want to go from Captivate to Flash to After Effects (because Captivate generated Flash files are unreadable in After Effects). For full disclosure, I used Captivate 3 in the steps above, but I hope this is a solution for Captivate 4 as well (I decided to stick with Captivate 3 because it worked in a project I used a year ago).
    Message was edited by: EliteEraser

  • Remote App can't print- Error: The parameter is incorrect

    good morning everyone!
    I have a server 2012R2 with RDS and I published remoteapp in RD Web also my users can access but...
    When they log in their sessions from their computers want to print (for example in notepad) it gives the next message: "The parameter is incorrect".
    They connect through a VPN SSL using a FG.
    have anyone have this issue?
    thanks for your time.

    1. You can try reinstalling Printer drivers.
    2. Reconfigure printer on client machine
       remove printer -> add printer -> local
    3. Check the RDS server, Whether Printer redirection is enabled or not,
    host machine: Computer configuration -> windows components -> remote desktop services -> remote desktop session host -> printer redirection
    set "use remote desktop easy print printer driver first" to disabled
    Restart client machine
    Regards,
    Manjunath Sullad

  • How in Flash CS4 to change text words of .fla file from a website template?

    I have a website template in which I am trying to change the header text words and menu text words to customize the template. How do I do this in Flash CS4? Thanks!

    There are any number of ways these text elements might have been designed into the file.  So you pretty much have to search for things.  If you do not see the text that you want to change when you open the fla file, then you may need to either make some layers visible that are not (eyeball icon next to layer name) or you may need to look into the actionscript code to see if the text is being dynamically written when the file opens.  If you happened to receive any .as, .txt, or .xml files with the template, the text elements may also be defined in those files.
    Just so you know, and this is just an observation, it appears from experience in these forums that template designers tend to make templates so that you are more likely to hire them to update things than to be able to solve it yourself.

  • Calling a variable from inside a movieclip AS3 in Flash CS4

    I am trying to trace a variable string from inside a movieclip which is inside another movieclip on the main timeline using:
    trace(VariableString);
    and also
    trace(stage.VariableString);
    Neither work
    The variable is an input textfield and traces fine when it is on the main timeline but will not work from inside the movieclip. I am using Actionscript 3 in Flash CS4.
    I appreciate this has probably been discussed previously on this forum but I cannot find a difinitve answer that seems to work.
    Thanks

    Thanks for the reply. However this did not seem to work.
    I think I had better explain a little better.
    On Keyfrme1 I have a MovieClip1 containing a text input component. I have created a variable on keyframe 1 using:
    var VariableString1:String = new String();
    When clicking on a seperate button this happens:
    VariableString1 = MovieClip1.text;
    I can trace this correctly on the main timeline using:
    trace(VariableString1);
    However, if I try to trace this from  another keyframe inside a movieclip2 which is inside another movieclip3 using:
    trace(MovieClip1(root).VariableString1);
    I just get the error 1180 call to a possibly undefined method MovieClip1
    Sorry if this is not very clear but I am getting very confused with this.
    Thanks again

  • Flash CS4 Link to a Movie Clip from inside another Movie Clip

    I am working on a Flash CS4 project which has 5 buttons with 5 corresponding movie clips all on the main timeline. Everything in functional so far.
    My problem is this: I want to be able to mouse click on a particular word in the text inside movie clip 4 ("mc4") and have it link to movie clip 3 ("mc3") (on the main timeline).
    I've tried many things, and I can't get it working.
    I have tried to highlight the word then link it to "mc3" in the properties panel where it says link (I successfully linked to an email address and to an outside website in other parts of the project)....
    I tried to link it in the properties panel to "mc3", I tried & "parent.mc3", "root.mc3";
    Linking it this ways seems to be the simplest, logical thing to do, but I don't know what kind of prefix it needs.
    Then, I tried making the word (inside mc4) an invisible button (button6) then linking it to the mc3, with it's actionscript in the main timeline with the other button functions.
    I tried duplicating mc3 and duplicating invisible button 3 and moving it's hotspot to over the word.
    I tried putting a copy of mc3 and the button inside mc4, with the actionscript also inside mc4.
    I tried duplicating mc3 and calling it mc6, and putting that inside mc4, with the actions back on the main timeline, and tried again with the actions inside mc4.
    I tried with mc6 and invisible button 6 on the main timeline, but that doesn't seem possible.
    I tried using this code from Adobe Actionscript 3.0:
    button6.addEventListener(MouseEvent.CLICK, startMovie);
    function startMovie(e:MouseEvent):void
            this.play("mc6"); [and I also tried with "mc3"]
    Nothing works!! Please, I would appreciate any suggestions!!
    Thanks,
    Suzanne

    If I limit my attention to the second sentence of your posting, then I suggest the following (borrowing from the rest of your posting)...
    If that invisible button6 is inside MC3 (on MC3's main timeline), atop the word you are trying to link to the movieclip, and you just want to make mc4 play by clicking that invisible button6, then assign the following code to the button6 inside MC3...
    button6.addEventListener(MouseEvent.CLICK, startMovie);
    function startMovie(e:MouseEvent):void
            MovieClip(this.parent).MC4.play();
    If I missed, then I missed following your explanation.

  • Flash CS4: My animated gif isn't playing right in flash

    Thank you so much for your help.
    I made an animated gif in Photoshop CS4 and opened it in Flash CS4, but for some reason the gif won't play without interruption. I opened and played it without a problem several times in Internet Explorer and Safari, but when I open it in Flash or Captivate it won't play so smoothely. It goes blank for a few seconds, then reappears, then goes blank and only shows parts of the graphic - as if it's reloading or something. The timeline in Flash shows black dots whenever it pauses. here is a screen shot:
    See those black dots in the timeline? I will insert a picture of what happens on one of those black dots:
    It's the same animation, but only shows a little of the graphic. Like I said, it plays fine when I open it with an internet browser, or photoshop, but not in Flash or Captivate.
    Thanks so much for helping me with this!
    Nat

    When you exported from Photoshop did you use LZW compression on the GIF? If so can you try disabling LZW compression and reimporting to see if your issue goes away? What you depict there looks like updated frames only contain the part of the picture that's changing, which is compression. GIF isn't compressed by nature and each frame should be a whole picture, unless compressed. I'm not certain LZW would even perform spatinal compression but it's worth a shot to see if it does.
    Aside that have you tried using Import to Library, then dragging the image from the library into the timeline?

Maybe you are looking for

  • MRP Data changed

    Hi Experts, We have decrease MRP level in most of IC items and following transaction may be happen after run fresh MRP. If material stock exists more than reorder level, existing PR will be auto deleted by system where PO is not created and released.

  • How many system mailboxes should be in exchange 2013 after moving from exchange 2010?

    Hi, I am moving mailboxes from exchange 2010 to exchange 2013, I noticed that in exchange 2013, besides discovery search mailbox, there are other 5 system mailboxes.(especially, there are 2 x Microsoft Exchange system mailboxes) Please see the pic at

  • Icloud - Error is fatal on Notes

    Dear Community, i aktivated iCloud on my MacBook and then on my Iphone 5. I entred in www.icloud.com and checked Mails, Contacts, Find Iphone everything ok. But When i click on Notes, this Error cames(on Safari, firefox, chrome, Mac + PC): IS FATAL t

  • Itunes installation error 2324

    windows7 64bit - getting installation error 2324 I've: uninstalled itunes uninstalled all Apple software (bonjour, apple mobile device support, etc...) attempted to run as administrator logged off and logged in as local admin and attempted to install

  • Sensor recognized only in settings

    I have a 2nd gen. iPod touch and recently got a Nike +... when I first attempted to use it, I activated the sensor according to the instructions (go to settings, Nike +, sensor). Under the settings menu, the sensor is activated with no problems. Howe