Convert to symbol trouble

Hi, I am having trouble understanding the "Convert to symbol" instruction when I have already converted to symbol.  I have drawn a stick figure, minus a leg, and modified to symbol.  Within the symbol I have created another layer and called it "leg" and convert to symbol.  From this symbol I want to create a motion tween, but it says convert to symbol.  Is this to do with the fact that you can't motiontween something that looks like a line (leg)?  It seems to make no difference if I click on or off the grey/black surround to the circle in the tool bar. (vectors?)
Thanks Georgia

Hi,
A symbol can have another symbol inside its definition(nested symbol) and motion tween requires your current selection to be a movie clip symbol in order to apply a motion tween on it. If your current selection is not a movie clip symbol(you can view what is your current selection is in Properties panel) then it asks you to convert the current selection to movie clip symbol irrespective of whether you are already inside an another symbol or not.
Thanks!
Mohan

Similar Messages

  • Problem With Convert to symbol

    I am having a stupid problem with the convert to symbol
    function in Flash 8 pro. When I import to library and then convert
    my first symbol, everything works fine. But then when I try to
    convert another piece of art to a symbol, it becomes the same
    symbol as before. so i can only convert 1 symbol. This just started
    happening. I'm converting to graphic symbols, and I have even
    uninstalled and reinstalled. Has anyone else had this
    problem?

    if you are trying to convert a symbol from a frame that
    applied motion tweening, & the option "Sync" is
    selected...

  • Help with Convert to Symbol

    I'm trying to link a flash page to another flash page. I'm following the instructions given to me and it has worked up until now.
    I convert the text to symbol>select button, then I go to actions, type in the filename.swf and add the level in the script assist.
    The link is on a seperate layer, and I can't think of any reason why when I ctrl+enter to see it, the text hasn't changed to a button.
    Any ideas or tips for what I'm missing or not doing quite right would be appreciated. Thanks, and I'm using CS3.

    right click on your text, click convert to symbol, tick button (if that's the symbol type you want) and click ok.  test.  your text should respond to the mouse.
    to code for a mouse handler, click on your text button, in the properties panel give your text button and instance name, say textBtn and in the actions panel type:
    textBtn.onRelease=function(){
    loadMovieNum("theswfyouwanttoload.swf",1);

  • All import convert to symbol ??

    Is it best practice when importing, jpg and png to first
    import to stage then convert to symbol (MC) then delete and now you
    have it in the library to use?

    quote:
    Originally posted by:
    Bolo911
    Is it best practice when importing, jpg and png to first
    import to stage then convert to symbol (MC) then delete and now you
    have it in the library to use?
    Huh? Why would you delete anything once you imported it into
    the library? If you import an image then convert it to a movie
    clip, you can't delete the imported image or else you will delete
    what's in that movie clip. Like Urami said, I would only convert to
    a symbol if you need to apply actionscript to it or need to tween
    it.

  • How to undo "convert to symbol"?

    Hey Guys,
    First I have to say this community is really good. You have helped me
    many times. Now, I have a question.
    How can i undo "convert to symbol" without the normal "Undo"-button under "edit"- button
    because I don`t want to undo everything since 3 days.
    Hope you know what I mean and i`m sorry for my bad english.
    Thanks.

    Unfornately there is no undo (or as other Adobe applications, call it, 'Break Apart') 'Symbol' command, though it would make for a great request.
    The best option, at the moment, is to
    - Enter Edit in Place for that particular Symbol;
    - Edit > Slect All;
    - Edit > Copy;
    - Exit Symbol In-Place mode;
    - Then on your Stage, Edit > Paste Special > Paste All
    Even then it will not be perfect because if your Symbol timeline has Triggers and Labels, the above process will not be copied/pasted. They will have to done separately.
    Darrell

  • Convert Illustrator Symbols to AutoCAD blocks?

    Hi, Is there a way to convert Illustrator Symbols to AutoCAD blocks? I've got the script discussed here: https://forums.adobe.com/message/6409758 and used it many times but now I need to do the opposite. Does anyone have an answer? I'd be really grateful of any help. Thanks. Justine

    Thank you, nice job & I am looking forward to trying it out!

  • Problem converting £ and € symbols

    Following conversion of a database to al32utf8 I noticed problems with converted currency symbols. This is a sample test I ran to reproduce:
    1. Set the code page to 1252 as this is how the data was inserted in the win1252 database and create test data
    sql> prompt set codepage
    set codepage
    sql> host chcp 1252
    Active code page: 1252
    sql>
    sql> prompt create test data
    create test data
    sql> create table bc_test
      2  as select '£ 1' col1
      3           ,'£'   col2
      4     from    dual;
    sql>
    2. create procedures for checking characters:
    sql> create test procs:
      2
    sql> create or replace procedure check_chars (v1 in varchar2)
      2  as
      3    v2 varchar2(1 char);
      4    n  integer := 0;
      5  begin
      6    dbms_output.put_line('input: "'||v1||'"');
      7    dbms_output.put_line('pos  chr  ascii');
      8    dbms_output.put_line('---  ---  -----');
      9    if v1 is not null then
    10      for i in 1..length(v1)
    11      loop
    12        v2 := substr(v1,i,1);
    13        dbms_output.put_line(lpad(i,3)||'   '||v2||'   '||asciistr(v2));
    14      end loop;
    15    end if;
    16  end;
    17  /
    sql> sho err
    No errors.
    sql>
    sql>
    sql> create or replace procedure check_col1
      2  as
      3    v1 varchar2(1000);
      4  begin
      5    select col1
      6    into   v1
      7    from   bc_test
      8    where  rownum = 1;
      9    check_chars (v1);
    10  end;
    11  /
    sql> sho err
    No errors.
    sql>
    sql> create or replace procedure check_col2
      2  as
      3    v1 varchar2(1000);
      4  begin
      5    select col2
      6    into   v1
      7    from   bc_test
      8    where  rownum = 1;
      9    check_chars(v1);
    10  end;
    11  /
    sql> sho err
    No errors.
    3. Run procedure to check each column, then convert to al32utf8 and recheck:
    sql>
    sql> prompt check col1
    check col1
    sql> exec check_col1
    input: "£ 1"
    pos  chr  ascii
      1   £   \00A3
      2
      3   1   1
    sql>
    sql> prompt check col2
    check col2
    sql> exec check_col2
    input: "£"
    pos  chr  ascii
      1   £   \00A3
    sql>
    sql> prompt convert col1
    convert col1
    sql> update bc_test
      2  set    col1 = sys_op_csconv(col1,'AL32UTF8','WE8MSWIN1252');
    sql>
    sql> prompt check col1
    check col1
    sql> exec check_col1
    input: "£ "
    pos  chr  ascii
      1      \00C2
      2   £   \00A3
      3
    sql>
    sql> prompt convert col2
    convert col2
    sql> update bc_test
      2  set    col2 = sys_op_csconv(col2,'AL32UTF8','WE8MSWIN1252');
    sql>
    sql> prompt convert col2
    convert col2
    sql> exec check_col2
    input: ""
    pos  chr  ascii
    sql>
    sql> rollback;
    sql>
    The 1st column has had two extra characters added and the second has had the £ converted to null
    4. Try with code page 65001
    sql> prompt change codepage
    change codepage
    sql> host chcp 65001
    Active code page: 65001
    sql>
    sql> prompt update col1 again
    update col1 again
    sql> update bc_test
      2  set    col1 = sys_op_csconv(col1,'AL32UTF8','WE8MSWIN1252');
    sql>
    sql> prompt check col1
    check col1
    sql> exec check_col1
    input: "£ "
    pos  chr  ascii
      1   �   \00C2
      2   �   \00A3
      3
    sql>
    sql> prompt update col2
    update col2
    sql> update bc_test
      2  set    col2 = sys_op_csconv(col2,'AL32UTF8','WE8MSWIN1252');
    sql>
    sql> prompt update col2
    update col2
    sql> exec check_col2
    input: ""
    pos  chr  ascii
    Same result, and matches what the DMU did
    I get similar results with Euro symbols, they are converted to multiple multibyte characters
    I can fix the data by running a replace, but what is happening? The data in most cases was added by running a script in sql plus, though some could have been via application tools.
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production

    The behavior from your testcase is expected.
    sql> create table bc_test
      2  as select '£ 1' col1
      3           ,'£'   col2
      4     from    dual;
    When run in a WE8MSWIN1252 database, this is effectively creating a table with 2 columns of 3 bytes and 1 byte in length.
    sql> update bc_test
      2  set    col1 = sys_op_csconv(col1,'AL32UTF8','WE8MSWIN1252');
    When you update the column by converting its value from WE8MSWIN1252 to AL32UTF8, the 8-bit currency symbol expands in size which causes the converted value to be truncated to the column limit.
    sql> exec check_col1
    input: "£ "
    pos  chr  ascii
      1      \00C2
      2   £   \00A3
      3
    Here you're seeing the truncated conversion result due to the column size limit (3 bytes). The Pound sign is 0xC2A3 in AL32UTF8.
    The DMU scan will detect size expansion over limit issues and block the conversion in such cases.

  • Convert to symbol corrupted

    hello, I have a simple motion tweened layer.
    I convert it to a symbol, however when I do this, the tween
    is corrupted.
    Why is this happening only when I convert to symbol ?
    thanks kindly for any help

    select all frames/layers.
    right click over them and select "copy frames".
    Create a new symbol in the library - select frame 1 and right
    click - "paste frames".
    Drag symbol to stage on new layer and delete original layers.
    ~~~~~~~~~~~~~~~~
    --> Adobe Certified Expert
    --> www.mudbubble.com
    --> www.keyframer.com
    ~~~~~~~~~~~~~~~~
    phil1943 wrote:
    > hello, I have a multi-layer .fla.
    > I want to convert all layers into a symbol.
    > I select all layers, then choose "convert to symbol",
    however the newly
    > created symbol will not work properly ie. the motion
    tweens have somehow become
    > corrupted.
    >
    > Can you convert a multi-layered .fla into a single movie
    symbol ?
    >
    > Thanks kindly for any help.
    >

  • Cannot resolve symbol trouble

    Hi everyone!
    I'm trying to get started with J2ME programming, which is actually going great so far, except that I've hit a wall.
    I need to use floating point numbers, which aren't supported when using MIDP, so I'm trying to use an addon, namely henson.midp (http://henson.newmail.ru/j2me/Float.htm).
    I've saved the .java file to the correct directory, and it is of course being compiled along with the other files, however, I can only create .Float variables and not access functions, it seems.
    henson.midp.Float f; // OK
    f = henson.midp.Float(1234); // cannot resolve symbol error, arrow pointing at the dot between 'henson' and 'midp'
    I suppose I'm doing something wrong, but what? :)
    Help would be greatly appreciated.
    /Confused java newbie

    More trouble on the way, it seems!
    Because of some trouble I'm having with the henson class, I figured I'd try another one, so I downloaded 'Real' (http://gridbug.ods.org/Real.html) again, and tried a simple
    Real a = new Real("0.5");... as used in the sample, and also by myself yesterday.
    Well guess what, more cannot resolve symbol trouble.
    C:\...\src\CurrEx.java:123: cannot resolve symbol
    symbol  : class Real
    location: class CurrEx
                             Real a = new Real("0.5");
                                            ^
    C:\...\src\CurrEx.java:123: cannot resolve symbol
    symbol  : class Real
    location: class CurrEx
                             Real a = new Real("0.5");
                                                         ^
    2 errors
    com.sun.kvem.ktools.ExecutionException
    Build failedAgain, the source file is in the correct directory and it is getting compiled along with the rest, and I'm pretty sure that at least the code (1 line) is correct this time.

  • Objects converted to symbols not showing up in workspace CS4

    Has anyone have this problem?  It's extremely problematic when you're trying to design something.  It plays fine when tested, but you cant see anything that's converted to a graphic, button, or movie clip.  I tried uninstalling and reinstalling, rebooting, etc... Any other advice?
    Also, I got an error message about the classic view not loading correctly, and everything's been goofy since.  I still can't edit anything in classic view.

    I found the answer to this on a previous post by someone else, but am unable to find it again.  Will someone please help me find a posting with a similar topic?  My symbols keep disappearing, but it works fine when I preview it. 
    If you need additional information, please let me know.
    Thanks!

  • Import Manager - Convert Degree Symbol in XML

    We have a situation whereby in our XML file we use the following code °  to convert to a degree symbol.  So, in our XML file it would read 45°
    When I import this in Import Manager I get this: 45° Street Elbows
                            In our Taxonomy we have this: 45º Street Elbows
    So, when I Automap there's no matching because the symbols don't match.  If you notice carefully, the degree symbols are different.
    Does anyone have any suggestions that we can try so the symbols match?
    regards,
    Orlando

    if you use utf-8 simply but the real character into the data.
    named character entities such as
    °
    has to be declared in your dtd.
    with character entities such as
    ° or °
    are working fine.
    regards,
    gregor

  • Vector art converted to symbol displays incorrect in PDF?

    Is there a known issue with symbols not displaying correctly in a PDF? I often convert grouped elements or logos to a symbol so that I can edit the symbol later and all instances of it being used in a doc will be revised. Saves a lot of time. I made this red box and type and made it a symbol. Now, when I make a PDF there is a phantom piece of type that should not be there. It does not happen on all instances. I checked the file in keyline mode. The phantom type is not there. Any ideas? Thanks.

    Does the art have another fill or does it have an effect on different fill?
    Is it point type?  Perhaps outlining it will make it right unless this will have to be updated which it does not look like it will be.

  • Cannot Select All  Modify Convert to Symbol (F8)

    Hello,
    I am a beginner and I have made an animation that consists of  4 Movie-Clip symbols (3 have motion tweens). I created it as a place holder for an upcoming website that I am designing. I am trying to select all 4 layers on my stage and convert everything into a single movie clip. I don't know what I am doing wrong.
    I would really be happy if someone could give some tips on how to fix this.
    Thanks!

    Thanks for responding. I followed your instructions. I first Inserted a Symbol of type Movie Clip > Then selected  all frames from Scene 1 > Copy Frames >  Went to my new movie clip > Selected the first and only frame in the 1st and only layer > Right click > Paste Frames.
    All this did was copy every layer in its entirety into my new movie clip. If you look where the little red man is pointed , that's the target frame, but it's empty. You'll notice that even my guides came over from the copy.
    What am I doing wrong?
    The frames that I am copying are on the stage of Scene1. Is this normally how it's done?

  • Adobe Flash CS5 - Symbol trouble

    Hi guys, I am having trouble using symbols at the moment. Whenever, lets say, I have a character, he has many layers and I want to make him and all his layers a symbol. So I select everything using the selection tool and press F8, create the symbol as graphic and click ok. Now what happens is that all the keyframes for each layer are deleted except one randomly picked layer like "Hat" or something. So when for example I now clear visibility of the "Hat" layer and the whole drawing disappears.
    So my question is how can I create a symbol without this type of thing happening. I've used this before and haven't had this trouble, maybe I'm overlooking something really simple and would appreciate any help on the matter. Maybe someone could list a few does and donts for symbols as it seems I am not catching something.
    Thanks in advance for any response on this matter, I am really stuck....

    I am not one to use keyboard shortcut commands, so what I normally would do is to copy all the layers/frames of the timeline and paste them into a newly created symbol's timeline.

  • Convert to symbol -- insert AS

    Hi,
    I'm totally new to flash and I have a question about converting images to symbols (movieclip):
    First I import the image, then select it with the selection tool, and hit F8 to convert it to a symbol (movieclip). But when I want to add actionscript to this symbol, I cant see it when i go to actionscript window (F9). Isn't the newly created symbol supposed to appear under Scene1? What basic step am I missing?

    What you mean you can't see it? You mean the Actions Panel is covering the whole monitor? Can you attach a screenshot and point what you can't see The newly created symbol should be under Scene1.

Maybe you are looking for

  • I tried, but ... Mac Network & Win-7 PC

    OK, I start with "I Know..." look thru old posts to find answers....... Just Spent last 4 Hours doing that. I understand how frustrating it can be to keep answering the same questions (Really Do) but a Great Fix for that would be finding Some Way to

  • Are tasks or to-do's supported?

    Are tasks or to-do's supported? <P> Yes, iCS 2.x supports tasks. They are available in all views. Tasks can be repeating or non-repeating.

  • Field Exit for Batch Input creation from LSMW

    Hi all, I am having problems getting a field exit to work for validation of user id in the "Create Batch Input Session" step of LSMW. Program: /SAPDMC/SAP_LSMW_BI_RECORDING Screen:  1000 Data Element: SYUNAME Any help would be appreciated. Regards, J

  • Post & Commit

    Hi Experts, I have a multi-block form, which issues POST and COMMIT on different situations. But the operations fire the same triggers and I'm generating some sequences in Commit operation which are getting generated even in POST operation. I need to

  • Cumulated Characteristic in Query Designer

    I have a query in BEx 3.5 query design that has a characteristic in rows with a property of 'cumulated'. I am trying to create similar query using BEx 7.0 Query Designer but don;t see the optino to set property of a characteristic to 'cu,ulative' any