Move the point of alignment of the symbol in CS4, how?

Boy I feel stooopid.  I can't find how to move the point of alignment of the symbol in Flash CS4.  It's easy reeely in CS3.  A clip I made was of course a registraion point at the Center, and I'm using AS 3.0 to place the instance on the stage, which means of course that I see now the lower right of the movie...  I don't want it to use as place the clip at a different time, I just want to know how to move points of alignment of all symbols in CS4.  When I go to edit a symbol I see reticle existing symbols which I assume are the existing alignment point, but how can I move?

Confusedly yours.

Dave N

I don't have CS4, so I don't know if there is a change in how it is done. Also, I'm not otherwise in CS3 to open the symbol and move items around, not the point of alignment, either manually, or via the alignment tool.  Then you may know sdomething I did not... but that's how I do it where it's not how you do it.

Tags: Adobe Animate

Similar Questions

  • How can I move the symbol of the HOUSE back to the left where it used to be?

    Seen the symbol of the HOUSE on the right is a little awkward. How can I move this back to the left where it used to be?

    You can try this to see if it helps:

    View > toolbars > Custom

    In the window, again dragging it réécrirait everywhere where you want, and then drag the home button.

  • held space and moving a canvas too moves the other canvas. How can he fix it?

    My colleague uses a mac and he double screens on Photoshop, however, we discovered that whenever he has two separate windows canvas open and organize the space and move on a canvas, it moves the other canvas too.

    What version of Photoshop?

    Have the feeling that has nothing to do with two monitors, but disabling this setting if the hand tool.

    That would have also fixed my 2nd guess reset preferences.

  • The difference between the symbols in CS4 and CS5?

    Every time I have would break the link to a symbol in CS4, there would still be in its own group.

    Now in CS5, it becomes it's own Sub/layer? Not a fan. Is there a pref that I'm missing?

    In addition, every time I hit the green light in the upper left stop light to make the window expand fully,

    the window STILL changes each time I open a new/different document. I had no issues in CS4.

    Help, please.

    Group the instance before the fact to separate the symbol.

  • brand keyboard, I have recently installed windows 8 and the quote "- and the symbol @ are transposed, how can I change that"

    I tried a USB key board and a ps2 keyboard both are ok on a win machine 7.

    The keyboard layout setting does not match your situation.

    Go to control Panel\Clock, language and region and make sure your region and language are set correctly for your location.

  • Control a symbol by a button inside the symbol

    I hope that this explanation makes sense:

    I have a file with buttons on the main stage that control symbols.

    (buttons are circles labeled 1876 and 1877)

    The symbols just move a PNG on and off the stage.

    For example, the two circles called 1876 and 1877 are PNG files to create buttons that control two different symbols.

    Symbols of moving the image of dashboard on and off the stage.

    In the Bulletin Board image is an X, I'm hoping to put a button on top of the side to close the symbol.

    scoreboard1.jpg

    The code I use to move the symbols on the stage and is:

    var = sym.getVariable ("current") courses;

    If (current! = "") {}

    sym.getSymbol (current) ("out") .play;

    sym.getSymbol("syboard1876").play ("in");

    }

    else {}

    sym.getSymbol("syboard1876").play ("shortIn");

    }

    sym.setVariable ("current", "syboard1876");

    syboard1876 is the png of green card.

    No idea how I can get the symbol to move off the stage by pressing on it?

    And that I'll be able to have several buttons under the symbol (which are hidden under the b = green card when it is visible)?

    This is the original tutorial that I adapted the EEG of the animation to work so far.

    Tutorial: Relying on the independent symbol a calendar «Adobe Edge leading Team Blog»

    Now, I just need to find a way to give the user the possibility to use the X to close the symbol.

    Any suggestions?

    1. you could use $each () with jquery in compositionReady
    2. If not you need to go back to the stage with sym.getComposition () .getStage () or
    3. You can use this in compositionReady

    function useButtons (element) {}

    {sym. $(element) .bind ("Click", Function ()}

    SYM.$('image').Attr('src','images/'+element+'.PNG'). CSS({"Opacity":1.00});)  This is an example of code - I used the same name for the buttons and image names.

    });

    }

    Add here the names of button

    ["," "," "] .forEach (useButtons);

  • Error [PLS-00103: encountered the symbol "CREATE"] using PACKAGE

    Hi guys!
    When I compile this package, I get this error:
    PLS-00103: encountered the symbol "CREATE".

    How can I solve this problem?
    The compiled code is below:


    CREATE OR REPLACE
    PACKAGE CAMPO_PACK AS

    TYPE T_CURSOR IS REF CURSOR;

    PROCEDURE DeleteCode (OSDP NUMBER);

    END CAMPO_PACK;
    -body-
    CREATE or REPLACE PACKAGE BODY CAMPO_PACK as

    PROCEDURE DeleteCode(pCod NUMBER) AS
    BEGIN
    DELETE FROM campo
    WHERE cod = OSDP;
    END DeleteCode;

    END CAMPO_PACK;


    Thanks for the help,
    Anderson



    Published by: user8723300 on 08/13/2009 17:03

    Published by: user8723300 on 08/13/2009 17:04

    I use Oracle SQL Developer

    I know very well of this tool.

    The packet header and body are two separate objects and must be compiled separately. I suspect that the package body is somehow have included in package header and Developer SQL tries to compile all of these at once. You must understand how to compile the header first, then the body. Your code compiles if I use sqlplus. I had to first create the table, so I have included a slash (/) after the packet header and the other after that body. The slash tells sql more to run the buffer (in this case, to compile the object).

    SQL> create table campo (cod number);
    
    Table created.
    
    SQL> CREATE OR REPLACE
      2  PACKAGE CAMPO_PACK AS
      3
      4  TYPE T_CURSOR IS REF CURSOR;
      5
      6  PROCEDURE DeleteCode(pCod NUMBER);
      7
      8  END CAMPO_PACK;
      9  /
    
    Package created.
    
    SQL> CREATE OR REPLACE PACKAGE BODY CAMPO_PACK AS
      2
      3  PROCEDURE DeleteCode(pCod NUMBER) AS
      4  BEGIN
      5  DELETE FROM campo
      6  WHERE cod = pcod;
      7  END DeleteCode;
      8
      9  END CAMPO_PACK;
     10  /
    
    Package body created.
    

    If I remove the slash after the package header, sql more trying to compile all this at once, and I get the same error you get:

    SQL> CREATE OR REPLACE
      2  PACKAGE CAMPO_PACK AS
      3
      4  TYPE T_CURSOR IS REF CURSOR;
      5
      6  PROCEDURE DeleteCode(pCod NUMBER);
      7
      8  END CAMPO_PACK;
      9
     10  CREATE OR REPLACE PACKAGE BODY CAMPO_PACK AS
     11
     12  PROCEDURE DeleteCode(pCod NUMBER) AS
     13  BEGIN
     14  DELETE FROM campo
     15  WHERE cod = pcod;
     16  END DeleteCode;
     17
     18  END CAMPO_PACK;
     19  /
    
    Warning: Package created with compilation errors.
    
    SQL> sho err
    Errors for PACKAGE CAMPO_PACK:
    
    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    9/1      PLS-00103: Encountered the symbol "CREATE"
    
  • Symbol keyboard microphone moves the decimal point

    For me, in what is a decision rather b-o-n-e-head, the microphone on the virtual keyboard symbol has moved the comma, which means you need to perform additional keystrokes to use the ',' in your texts. To take such a well-used symbol and remove the front keyboard was stupid, and I find myself hitting the symbol micro out of force of habit of the comma, having been here for 5 months. The microphone symbol SHOULD have been on the page ALT.

    Is the anyway to configure the keyboard to put the comma? I find the microphone quite unnecessary because the decoding of voice does well beyond a few simple, such words when searching. Try to dictate an entire sentence and see what I mean. Or, dictate an entire sentence, and then take a "communication error, try again" only to have to dictate again.

    I want the rear comma. Put the microphone on the ALT page, not the front. The comma is used all the time, the microphone is NOT.

    Good news, you can have the comma to return! Go to settings > language & keyboard > keyboard Android and then uncheck the box for voice input. And there's your comma

  • Error of classic Tween when you move the point of rotation

    Hello

    I created a character who is running with classic tweens.

    When I move the distant point from the center of rotation of a shape (in my case, the forms are legs and I would like to move the point of rotation to the basin so that the legs remain attached to the feet and body), animation between two keyframes will show the form or the other shutter upwards or downwards, not according to the planned trajectory. I hope this makes sense.

    Thank you in advance.

    This happens when the alignment point is different at the beginning and end of a Tween. You must keep the same.

  • Turn off the bookmarks bar bulging feature automatically on the left side of the screen when you move the pointer to the left

    It's bothers me a lot, because I'm used to move the pointer to the left of the screen when I don't want to see it. Now, it increases the Favorites bar, which was not my intention. I checked all the options, but I couldn't turn it off. Maybe you can change to the code level?

    Thanks in advance!

    Sadowskim,

    Cancel Safari, bookmarks/favorites bar appears on the left side, if the cursor of the mouse is on the left. This link addresses the problem you describe.

    I suggest that you provide Safari comments describing your need for a user option.

  • HOW TO MOVE THE FLAG POINT MAP, MIRCOSOFT 2013

    HOW TO MOVE THE FLAG POINT MAP, MIRCOSOFT 2013

    Hello

    It is not a Community Forum for MapPoint.

    Ask here

    Highway, Streets & Trips, MapPoint Forum:
    http://social.Microsoft.com/forums/en-us/streetsandtrips/threads

    Other Support options (not free)

    Support for MapPoint, streets & trips and Highway:
    http://support.Microsoft.com/ph/851

    Don

  • HOW TO MOVE THE FLAGS IN MICROSOFT MAP POINT 2013

    HOW TO MOVE THE FLAGS IN MICROSOFT MAP POINT 2013

    I suggest that ask you in this Microsoft forum:

    Highway, streets and Trips, MapPoint .

    Thank you.

  • Can move the pointer, but not click on

    Notebook Acer Aspire to my son started with this issue today - with mouse and keyboard, that it can move the pointer, but he can't right or left click inside a program or another window, he can click on the desktop.
    Support said that something must be corrupted, and we should do a wipe.
    I expected a less nuclear solution.

    We have already restarted the computer, checked the Device Manager, checked the settings of the Mouse/touchpad and checked that the driver is up-to-date. Everything looks good, but still, it can not click. Any ideas?

    The system now works fine as long as it is not alt + tab on Skyrim 'too much '.  It seems to be a problem with the layer that Windows puts between her office and the program window.  When the problem occurs normally, you can click on the desktop, but not inside any other window, even a Windows Explorer window.
    No wipe/restoration required.

  • Move the image in a "Picture" screen with a specific contact point

    Hi all

    I want to insert 8 images in one. So I have to pass all the image coordinates (X, Y) specific.

    By default, the image is centered.

    My response is:

    I can move an image in a screen 'Image' in the range of vision to the specific point of coordinates (X, Y). If so, how.

    Thanks for your help.

    Thank you, Andreï Dmitriev, it's ok.

    Best regards

  • my touch pad on my laptop does not move the pointer, but when I have my mouse wireless pluged in it will work I was told I could have disabled the touch pad which I have to do to activate it again?

    my touch pad on my laptop does not move the pointer, but when I have my mouse wireless pluged in it will work I was told I could have disabled the touch pad which I have to do to activate it again?

    Hi dove2k,

     

    Welcome to Microsoft Answers Forums.

    You will need to enable the touchpad on the laptop itself.

    Find the area of the touch pad, you will find a button to enable or disable the touchpad.

    If the step above doesn't, try this step.

    Go to control panel > mouse > device settings tab
    Click (or to disable)

    Notes:
    On some models, there is a keyboard shortcut to enable or disable the touchpad. For example, ACER, just do Fn + F7.
    You can click on Reset device if none of these solutions work.

    If you still can't touch pad to work, you will need to contact the manufacturer of the laptop computer for more information.

    Halima S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for