Flash IDE duplicates objects on drag

Hi!
I have a problem with the Flash IDE which I've been trying to solve for weeks and nothing works. I've tried disabling plug-ins, re-installing... nothing helped.
Every time a try to move an object on the scene in the IDE it duplicates the object instead of moving it. When I click on an object and start dragging it I see a "+" icon next to the arrow instead of the "move" icon.
Any help will be really appreciated!
Thanks!!

Hi fringe_fan,
Thank you so much for posting the solution to your problem.  I just upgraded to Lion a few days ago and started experiencing the same exact issue you described in your original post.  (Alt/Option key seems like it's stuck / Duplicating objects on stage just by clicking and moving the object.)  My main problem was not being able to curve a straight line with the Arrow tool.  Instead it would create a corner point as if the Alt/Option key was being held.  After a couple of hours crazy Google searching I finally found your thread!
I did not have AirParrot installed, but after finding out what kind of program AirParrot was, I realized I had a similar program called AirDisplay installed.  (I also found out that AirDisplay and Lion do not play well together!)  So I immediately removed AirDisplay and BAM, my Flash Professional started working again!
Thanks again for posting your solution.  You have saved me lots of time and frustration!!
I tried to be thorough in my post just incase someone else is using the same keywords trying to find a solution to this problem.

Similar Messages

  • Duplicate Object Name Error When Publishing Crystal Reports from BW to BOE

    Hi,
    We recently upgraded our systems (all client and server) to SP2.7 in order to solve a problem with saving Crystal Reports to BW.  Now we are experiencing a new error when trying to publish a Crystal Report from BW to BOE (either all in one step from Crystal Reports application or directly from within BW).
    Upon trying to publish a Crystal Report from BW to BOE, we get the following error:
    "An error occurred while saving and / or publishing.  The return code 1 was returned from the server.  Logon to Crystal Enterprise failed.  Unable to commit the changes to Enterprise.  Reason: Failed to commit objects to server : Duplicate object name in the same folder."
    We have repeated this issue numerous time with different reports, users and logon credentials and have verified that there are NOT any duplicate object names.
    Additionally, in some cases, the report ultimately publishes to BOE, but with the above error interruption along the way.
    Any ideas?
    Thanks,
    Josh
    Edited by: Josh Crawford on May 10, 2010 9:46 AM

    Ingo,
    Apologies for the delayed response.  We've spent a few days poking around with this issue, and had even opened a customer message for it (13641).
    In the end, it seems that the problem was somehow associated with the "Prepare this report for translation." flag in the "Save to BW Options" dialog box of Crystal Reports.  If we try to Save & Publish with the Translation flag selected, we get the duplicate entry error.  If we Save & Publish without the Translation flag selected, everything is fine.
    There are still some details we need to look into, but for the time being it looks like we don't have an issue anymore(assuming we ever did) as we're not concerned with Translation capabilities.
    If we come across the problem again, I'll post again.
    Thanks,
    Josh

  • Flash IDE Components in Flex 3 Design Mode. Can they be visible there?

    Hi,
    Im exploring Flex to get a grasp on its concepts and am currently looking into building components in the Flash IDE. Though i guess its likely that when you're more familiar with Flex you build your components in Flex, like said Im exploring its concepts and like to know where and how the Flash IDE fits in its workflow.
    I made a simple Flex Component in the Flex IDE, which shows up fine when I run the Flex project. But it does not show in Flex Design Mode.
    I have exported the component from Flash as an SWC and added the SWC to the Flex library path. The symbol in the Flash IDE extends UIMovieClip. Now I read in 'Using Adobe FlexBuilder 3' (p.67) that the Flex Components panel only lists visible components, according to the documentation 'components that extend UIComponent'.
    Note that my question is about being visible on the stage in Design Mode, not in the component panel. As UIMovieClip doesnt inherit from UIComponent (and the UIComponent class doesnt seem to be available in the Flash IDE), is this also the cause that the Flash IDE component is not visible on the Flex stage in Design Mode?
    Can someone confirm, or deny this?
    Regards,
    Marcel

    Hi Latha,
    thanks for your feedback. Reading it back though, Im still not sure whether Flex components build in the Flash IDE (using the Flex Component Kit for Flash CS3) can be visible in Flex 3 Design Mode.Maybe you can be a bit more specific and save a lot of Flex beginners a lot of headaches.
    I understand that MXML components can be used in Design Mode. I also understand that if your component is AS you have to create a Library and link that to your project to make them visible in Design Mode. I also understand that Flash Builder 4 does "support rendering of UIMovieClip objects which are in library (swc) and added to the project build path"
    This actually doesnt answer my question really. Does this mean there is no way to render Flex components build in the Flash IDE (using the Flex Component Kit for Flash CS3)  in Flex 3 Design Mode?
    Regards,
    Marcel

  • AMFPHP hanging in browser but not Flash IDE?

    Wrote a service that sends a bytearray to my Flash app that works perfectly fine when I test it in the Flash IDE (CS5), and when I compile the app and run it in a browser directly from my computer.
    When I load it on to the server to run in my browser, the same service hangs. Can anyone think what may be causing this?
    I tested the service in the service browser and it worked fine there as well.
    I'm really hitting a wall on this, any help would be appreciated!

    What is ncDB? Is it a remote object?
    Remote object don't have a connect method. Istead you should set the endpoint, source and destination properties.
    If you handle your requests through AS3, you could do the following. I use this code in a singleton class.
    in the constructor:
    ws.RemoteObject = new RemoteObject();
    ws.destination = "amfphp";
    ws.source = "nameOfYourService";
    ws.endPoint = "linkToYourGateway.php";
    ws.addEventListener(FaultEvent.FAULT, this.faultHandler);
    In a method named 'call':
    public function call(endPoint:String = null, serviceMethod:String, resultFunction:Function = null, ...args):void
              if (endPoint != null)
                   ws.endPoint = endPoint;
                if (resultFunction == null)
                    resultFunction = defaultResult;
                if (ws.operations.hasOwnProperty(serviceMethod))
                    ws[serviceMethod].removeEventListener(ResultEvent.RESULT, resultFunction);
                    ws[serviceMethod].removeEventListener(ResultEvent.RESULT, defaultResult);
                ws[serviceMethod].addEventListener(ResultEvent.RESULT, resultFunction);
                ws[serviceMethod].arguments = args;
                ws[serviceMethod].send();
    Does this help?
    Dany

  • Duplicate objects for gallery

    I have tried a couple of times to duplicate objects, in
    different ways, so I can later put image into the objects. The
    problem is that it works in Flash but when i try it out in my
    browser or my friends browser it wount work at all.
    So if there is one out there that can explain this or can
    point me into right directions it would be alot of help.
    Kind Regards
    Mario

    Hi Michael,
    Not really, as Coherence only compares keys for equality, not the values, when deciding where to store the objects.
    What you could do however, is something along the lines of what I described in the previous post -- you could introduce an intermediary pointer/reference object that would only contain an id of your true value object:
    public class MyObjectReference implements Serializable {
    private static final NamedCache myObjectCache = CacheFactory.getCache("myObjectCache");
    private Object id;
    public MyObjectReference(Object id) {
    this.id = id;
    public Object getId() {
    return id;
    public MyObject getValue() {
    return myObjectCache.get(id);
    Then your code would become similar to this:
    NamedCache myRefCache = CacheFactory.getCache("myReferenceCache");
    NamedCache myObjectCache = CacheFactory.getCache("myObjectCache");
    MyObject myObj = ...
    myObjectCache.put(myObjId, myObj);
    myRefCache.put(1, new MyObjectReference(myObjId));
    myRefCache.put(2, new MyObjectReference(myObjId));
    myRefCache.put(3, new MyObjectReference(myObjId));
    Assuming your object is much bigger than its key/identifier, this approach could save you a lot of space in the cluster, as each reference object is very small, while still allowing you to access your value object using different keys and dereferencing:
    MyObject myObj = ((MyObjectReference) myRefCache.get(1)).getValue();
    You could replace key 1 with 2 or 3 above and the result would be the same.
    HTH,
    Aleks

  • Make a movieclip visible when an object is dragged onto it

    i am ridiculously new to codeing in flash (or any program) and am trying to make a movieclip only visible when a object is dragged onto it, can someone show me the code for that?

    Something like the following might work (not tested)...
    movieclip.alpha = 0;
    object.addEventListener(MouseEvent.MOUSE_DOWN, dragObject);
    function dragObject(evt:MouseEvent):void {
          object.startDrag();
          stage.addEventListener(MouseEvent.MOUSE_MOVE, checkObject);
          stage.addEventListener(MouseEvent.MOUSE_UP, endDrag);
    function checkObject(evt:MouseEvent):void {
          if(object.hitTestObject(movieclip)){
              movieclip.alpha = 1;
          } else {
              movieclip.alpha = 0;
    function endDrag(evt:MouseEvent):void {
          stage.removeEventListener(MouseEvent.MOUSE_MOVE, checkObject);
          stage.removeEventListener(MouseEvent.MOUSE_UP, endDrag);

  • Facebook connection using Flash IDE

    Hi,
    Ok so for many months now I have still been trying to find a decent tutorial on how to make a connection with Facebook using AS3 and the Flash IDE.
    I must of tried over 50 tuts by now and none seem to work. Obviously the update of the API causes issues however I've yet to find one tutorial which actually works and can bring in profile info like name, friends list and profile pics.
    Does anyone know of any tutorials showing this and how to achieve it?
    p.s please don't point me to the Adobe docs or Flash API wiki as their information and documentation is out dated. I have gone through all their examples with no success.
    I can only find examples for Flash Builder and maybe Flex, but I work with Flash IDE (5.5).
    What I want to do is to be able to connect to FB through Adobe AIR on my iPhone. I'm pretty skilled in as3.0 and adobe air for mobile and have done several games, I just don't know how this FB works and no tutorial seems to work anymore etc.
    Please, if you know how this works, can you please tell me?
    Much much appreciated

    I can help better if you can write the steps you followed and the places where you got stucks or errors that you see.
    Here are the general steps that you need to perform.
    1. Add reference to the facebook API SWC library in your project.
    2. call FacebookMobile.init(APP_ID,callback);
    3. In callback of init the signature is of this form private function callback(session:Object, fail:Object):void . If you get a non-null session it is of type FacebookSession and you need to check if you already have a valid acces token. to do this check if you have a valid (non-empty non-null accessToken) and expiryDate is still not elapsed. Otherwise you will need to call login method.
    4. If you do not have a valid accessToken you should call FacebookMobile.login. Which will ask the end user for credentials and athunticate the user. an example call I have used is as follows
                    var swv:StageWebView = new StageWebView();
                    app.stage.addEventListener(Event.RESIZE,function(e:Event):void{swv.viewPort = new Rectangle(0,0,app.stage.stageWidth,app.stage.stageHeight);});   
                    FacebookMobile.login(handleLogin,app.stage,['user_photos','friends_photos','user_photo_video_tags','friends_photo_video_tags'],swv);
    5. in handleLogin (Signature is same as that of init callback) if session still happens to be null the login attempt is failed and you can start inspecting the fail object for reason.
    6. If you get a valid session. You are all set to call the API and get the data that you want for eg. you can use something like following to get all information about the logged in user.
                var p:Object = new Object();
                p.limit = 0;
                FacebookMobile.api("/me",function(result:Object, fail:Object):void{
                    if(null == fail){
                        // process result for eg. result.name, result.username, result.gender, result.first_name
                    }else{
                },p);
    For the different api calls (The way I have used "/me" you can visit Graph API explorer)
    Please revert back for any issues that you find.
    I am working on a tutorial that allows one to use the Facebook Single Sign-On Feature in order to authenticate and authorize. Read more about it here. I will release the tutorial ASAP on my blog.

  • There was an error while writing data back to the server: Failed to commit objects to server : Duplicate object name in the same folder.

    Post Author: dmface15
    CA Forum: Administration
    I am working in a new enviorment and i am trying to save a report to the Crystal Server via the CMC. I am uploading the report from the objects tab and attempting to save to a folder. The report has 1 static defined parameter and that's it. When i click submit to save the report i receive the following error message: "There was an error while writing data back to the server: Failed to commit objects to server : Duplicate object name in the same folder." There is not a anothe report within the folder with that name. What could be causing this error message and equally important, what is the solution.

    hte message you received about duplicate user probably means something hadn't fully updated yet. Once it did then it worked...
    Regards,
    Tim

  • Getting Duplicate Object existing issue while deploying the BIAR file

    Hi All,
    We are trying to deploy BIAR File with XI R2 Command tool InstallEntSdkWrapper. But we are getting Duplicate Object exixting issue while deploying the BIAR file.
    Error Message:
    [report] [InstallEntSdkWrapper.main] Connecting to CMS plmdevapp31:6400 as administrator
       [report] [InstallEntSdkWrapper.CmsImportFile] Exception: An error occurred at the server :
       [report] Failed to commit objects to server : Duplicate object name in the same folder.
       [report]
       [report] [InstallEntSdkWrapper.main] BIAR File could not be imported
    If we are doing any promition with Import Wizard we have an option to "Overwrite object contents" option to overwite exixting objects. It will very helpful if any one suggest how we can achieve this through InstallEntSdkWrapper.
    Unfortunately there is no documentation availabe on InstallEntSdkWrapper.
    Cheers!

    That's a limitation with the XI Release 2 InstallEntSdkWrapper.jar tool.
    Sincerely,
    Ted Ueda

  • Duplicate object into multiple selected frame

    I’m looking for a script that will duplicate the selected object or the content of the clipboard into multiple selected layers inside a document.
    I have not find any discussions around this, but I’m asking if anyone have already seen such script.
    Thanks
    Jean-Claude

    Jean-Claude try the following one:
    1. Should work with a single object, multiple objects, group
    2. Should alert a warning, if you select nothing or select some text
    3. Will not honor, if layers are hidden or locked
    Does it work for you?
    // duplicate on different layers _b02
    // by Kai Rübsamen, credits to Hans Haesler
    // vorbeugenderweise das Anzeigen von Dialogen aktivieren
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
    // prüfen, ob ein Dokument geöffnet ist
    if ( app.documents.length == 0 ) {
        alert ( "Warning\rOpen a document!" );
        exit();
    // die Auswahl speichern ...
    var allSel = app.selection;
    var nItems = allSel.length;
    // und prüfen
    if ( !nItems ) {
        alert ( "Warning\rSelect something!" );
        exit();
    if ( nItems == 1 && app.selection[0].hasOwnProperty("baseline") ) {
        alert ( "Warning\rDoes not work with text. Select only frames!" );
        exit();
    var curDoc = app.activeDocument;
    var allLayers = curDoc.layers;
    var nLayers = allLayers.length;
    // eventuell vorhandene Dialoge entfernen
    try {
        app.dialogs.everyItem().destroy();
    catch (e) {
    var layerNames = new Array();
    for ( var i = 0; i < nLayers; i++ ) {
        layerNames.push( allLayers[i].name );
    // eventuell vorhandene Dialoge entfernen
    try {
        app.dialogs.everyItem().destroy();
    catch (e) {
    // den Dialog vorbereiten ...
    var dlogCheckList = new Array();
    var aDialog = app.dialogs.add({ name: "Duplicate object to selected layers", canCancel: true });
    with ( aDialog ) {
        with ( dialogColumns.add() ) {
            with ( dialogRows.add() ) {
                staticTexts.add({ staticLabel: "active = duplicate"} );
                for ( var n = 0; n < nLayers; n++ ) {
                    with (dialogRows.add()) {
                        dlogCheckList.push( checkboxControls.add({ staticLabel: layerNames[n] }));
    // ... anzeigen und die Wahl des Anwenders anwenden
    if ( aDialog.show() == true ) {
        for ( var k = 0; k < dlogCheckList.length; k++ ) {
            var curCheckBox = dlogCheckList[k];
            if ( curCheckBox.checkedState ) {
                var curLayer = curDoc.layers.itemByName( layerNames[k] );
                for ( var i = nItems-1; i >= 0; i-- ) {
                    var curSel = allSel[i];
                    curSel.duplicate( curLayer );
        aDialog.destroy();
    else {
        aDialog.destroy();
    –Kai

  • Adobe Flash IDE: Migration/Compatibility issues between Adobe Flash Professional CS3 and CS5

    Hi,
    Adobe Flash IDE: Adobe Flash CS3 Professional and Adobe Flash Professional CS5
    I am facing some  migration/compatibility issues between Adobe Flash CS3 Professional and Adobe  Flash Professional CS5:
    I am working on a project that has  been completely developed in CS3 earlier. When I am using CS5 (Flash Player 9 /  Flash Player 10) to compile the FLA files, it is creating some new issues like  some customized radio buttons are getting disappeared while viewing the SWF on a  web page etc.
    So, I would like to  know:
    1) Is there any  migration/compatibility issue between Adobe Flash CS3 Professional and Adobe  Flash Professional CS5?
    2) If yes: Is there any patch  available from Adobe for it?
    3) If no: What could be the causes  and the best possible solutions for it?
    Any help and support would be highly  appreciated. Many thanks in advance!
    Thanks & Regards
    Amit

    Apparently some people have issues, but I don't think it is across the board.  Here's a link to another recent posting that may or may not prove helpful to you...
    http://forums.adobe.com/thread/776615?tstart=60

  • Why i am unable to select between 2 anchor points with in a object while dragging with direct select

    why i am unable to select between 2 anchor points with in a object while dragging with direct selection tool instead it moves

    Another option is to temporarily change your view to outline mode, when your done switch back to preview mode. Ctrl-Y or View>Outline {View>Preview} The menu option will change depending on which mode you are in.
    And another option, double click on the object in question to place it in Isolation mode. You can now edit to your hearts content. When done, click on the gray border at top of document.
    So as you can see there are multiple ways of accomplishing the same thing.

  • Mx.transitions + movieClipLoader + Crashing Flash IDE

    Well I got this code straight from the adobe site and it is
    suppose to show how to use the mx.transition class with a movie
    clip loader. When I look at the code it seems right but the flash
    Ide keeps crashing but before that happens it prompts me that the
    code is causeing the player to be unresponsive like ther is a loop
    or something that won't end. I don't see any loop and would expect
    this code to have been edited on the adobe site if it were
    incorrect especially since it is fore mx 2004.
    and the link to the tutorial on this site.
    http://www.adobe.com/devnet/flash/articles/tweening_09.html

    Bad fla. Copied code and placed in new file work
    perfect.

  • Change Flash IDE default player in OSX?

    Does anyone know if it's possible to change the flash player
    that Flash IDE uses? As far as I know, it uses the special
    debugging version of the player. For some reason this player runs
    much slower than the regular standalone player in OSX.
    So I'm trying to figure out if there's a configuration file I
    can edit or something to have it launch the standalone player when
    using the Flash IDE.
    There's a "players" folder Inside the main "Adobe Flash CS3"
    folder. I tried swapping out the player in there in the debug
    folder but it didn't seem to do anything.
    I know there's the nifty flash switcher app that does exactly
    what I need, but it's only available on the PC.
    Thanks for any help.
    -Ryan

    quote:
    Originally posted by:
    DeadCowboy
    I have still been having the same problem. I use Myspace for
    my band, and I continue to get the prompt that I do not have the
    current Flash installed and gives me the option to go to the page.
    I have uninstalled and then installed the brand new updated version
    and when it finishes the installation it opens Safari and sends me
    to the 'adobe about' page and again I get :
    >>>The page “Macromedia - Flash Player”
    has content of MIME type
    “application/x-shockwave-flash”, but you don’t
    have a plug-in installed for this MIME type. A plug-in should be
    available on this page:https://www.macromedia.com/go/getflashplayer
    Do you want to open the page?<<<.
    Your problem is completely different than what we're talking
    about in this thread.
    Your problem is discussed in the thread '[ADOBE] Resolving
    Mac Flash Player install problems 9/2007'. Check that out and you
    should be able to resolve it via permission repair.

  • Running multiple instances of Flash IDE CS(6)

    I have a build machine compiling my fla files by running Flash.exe from command line and supplying a JSFL file as a parameter. I want to run multiple instances of Flash IDE in order to enable concurrent builds on that machine otherwise there's only one thread running on a build machine which is a resource waste.
    So, is it possible to run multiple instances of Flash IDE? Maybe there's a kind of command line switch? I have Flash CS6, but there shouldn't be that many differences with CC, isn't it?

    I dont think you can run multiple instances of flash both in CS6 and CC.
    -Sujai

Maybe you are looking for

  • How can I turn an image black and white?

    I want to edit an image I have inserted into a pages document. I can't see a way to easily change the colouring of the photo to black and white. Using the bars seems to make the colouring look a little odd. Any suggestions?

  • Work path of 'hollow' characters?

    How do I make a work path of a character that consists of a loop (letters O, O, and P in LOOP for example) so that i get the inner and outer walls of a character, take O for example, instead of a solid O? O (the black area of the O should be filled w

  • Can't install Java for Mac OS X 10.6 Update 10

    Hello everyone I've been trying to install Java for Mac OS X 10.6 Update 10 and printer for ages What seems to be the problem? I have an iMac 11,3 Also,when I start my computer I have to wait for the bar to load which didn't use to appear some months

  • How to hide the fixed text when it is not needed?

    Hi All, I am using a fixed texts in a lot of reports to detail queries. How to cancel or hide these fixed texts when there is no data returned for some detail query in the report? Note: I am using Reports 6i.

  • Problems running 16-bit programs in (32-bit) Windows 10TP

    When I try to run (any) 16-bit program (that runs just fine under Windows XP and Windows 7) under W10TP Build 9860, I get the following error message: "16-BIT MS-DOS SUBSYSTEM. Command prompt <program name>. NTVDM has encountered a system error. A de