Creating an "e" in the "@" symbol

Hi.
I am mainly a video editor, and I use Photoshop, but I am not really too familiar with Illustrator.
I have exported other's work for use in Photoshop, but that's about it.
What I need probably sounds very simple, but I just can't figure out how to do it.
I am working on a logo for a small non-profit or I work with.
I would like to have the letter "e" from the name (lower case) in the circle from the "@" symbol.
Is there any chance someone could tell me how to do it or even better, create it themselves, and send me the Illustrator file?
If it is easier to know the full name of the organization, I will add that too.
I really would appreciate it.
Thanks!

ytlevine,
You may:
1. Type the @ and an e at the desired size and zoom in;
2. Type>Create Outlines;
3. Ungroup (Ctrl+Shift+G)
Now you have the letters as individual shapes, visible as separate (compound) paths in the Layers palette;
3. Cut the a loose by clicking the appropriate Anchor Points with the Scissors Tool;
4. Lock the loose a (as alignment guide) by clicking the square beside the Eye icon;
5. Move the e to fit and cut it at the bottom;
6. Hide the a by clicking the Eye icon;
7. DirectSelect (White arrow) the bottommost corresponding cut Anchor points of the e and of the remaining part of the @;
8. Repeat 7 for the other cut Anchor Points;
Now you have the letter, but it needs adjustment at the joints to form a curve;
9. ClickDrag each of the cut and joined Anchor Points with the Convert Anchor Point Tool (flyout from the Pen Tool) and adjust.
You may need further guidance, especially with 9. Feel free to post progress images.
Edit: busy writing during two posts.

Similar Messages

  • Encountered an error "PLS-00103: Encountered the symbol "CREATE" when expec

    HI All,
    I am creating a procedure and trying to use temp table...
    Here is the code":
    PROCEDURE P_PARENT_TREE
    topic_id_in           IN NUMBER,
    topic_hierarchy_details_out     OUT SYS_REFCURSOR
    ) IS
    temp_children_level topic_children.children_level%TYPE;
    temp_children_id topic_children.children_id%TYPE;
    temp_topic_id topic.topic_id%TYPE;
    CURSOR c_child_level IS
    SELECT children_level, children_id
    FROM topic_children
    WHERE children_id = topic_id_in;
    BEGIN
    OPEN c_child_level;
    FETCH c_child_level INTO temp_children_level,temp_topic_id ;
    CLOSE c_child_level;
    CREATE TEMPORARY TABLE IF NOT EXISTS topic_child
    (t_topic_id NUMBER, t_children_id NUMBER, children_seq NUMBER);
    WHILE temp_children_level > 0
    LOOP
    INSERT INTO topic_child(t_topic_id,t_children_id,children_seq)
    values (
    SELECT topic_id , children_id ,children_level
    FROM topic_children
    WHERE children_id = temp_topic_id);
    temp_children_level := temp_children_level - 1;
    END LOOP;
    OPEN topic_hierarchy_details_out FOR
    select * from topic_child;
    END P_PARENT_TREE;
    END TOPIC_PKG;
    getting the error "PLS-00103: Encountered the symbol "CREATE" when expec"...
    any idea why? or may be is there any other way to write this query

    something like
    select connect_by_root child_topic ||sys_connect_by_path (topic, '>') path
      from test
    where connect_by_isleaf = 1
    start with child_topic = 'aa4'
    connect by child_topic = prior topicas in
    SQL> with test as
      2  (
      3  select 0 sq, 'aa ' topic, 'aa1' child_topic from dual union all
      4  select 1 sq, 'aa1' topic, 'aa2' child_topic from dual union all
      5  select 3 sq, 'aa2' topic, 'aa3' child_topic from dual union all
      6  select 4 sq, 'aa3' topic, 'aa4' child_topic from dual
      7  )
      8  select connect_by_root child_topic ||sys_connect_by_path (topic, '>') path
      9    from test
    10   where connect_by_isleaf = 1
    11   start with child_topic = 'aa4'
    12  connect by child_topic = prior topic
    13  /
    PATH
    aa4>aa3>aa2>aa1>aa

  • Encountered the symbol create

    Hi guys I am trying to :
    CREATE or replace TYPE Complex AS OBJECT (
    rpart REAL,
    ipart REAL,
    MEMBER FUNCTION plus (x Complex) RETURN Complex
    CREATE TYPE BODY Complex AS
    MEMBER FUNCTION plus (x Complex) RETURN Complex IS
    BEGIN
    RETURN Complex(rpart + x.rpart, ipart + x.ipart);
    END plus;
    end;
    with Oracle Sql Developer 2.1 and 11g, but I get Error(6,1): PLS-00103: encountered the symbol "CREATE".
    Note that the code above is cut and paste from the Oracle Docs!!! Is this a bug of SQL Developer?!?!?!

    Justin,
    Yep, I'm talking about SQL Developer (version 2.1.0.63), and when I refer to a PL/SQL window I mean a Code Worksheet as opposed to a SQL worksheet. (In the Code worksheet I've got the "gears" icon where I can compile or compile for debug.) It is the default editor that opens when I open a .pks file that has both my pl/sql spec and body in it.
    So when I try to compile one of these PKS files that has the spec and body separated by the slash I get "Encountered the symbol "/". When I remove the slash and try to compile I get the error "Encountered the symbol CREATE".
    I understand these errors, and understand that If I pasted this script into a SQL worksheet and used F5 the code will compile with the "/" in it.
    Here is my question:
    Can I work with a file in the Code worksheet that has both the spec and body in it? If so, how do I get around the two errors mentioned above? We've used TOAD to date here and I'd rather move to SQL Developer. Do I have to break apart my pl/sql code files into separate spec and body files to make this move?
    Thanks,
    Bruce

  • PLS-00103: Encountered the symbol "" when expecting one of the following:

    Hi I am creating trigger using CFQUERY tag of cold fusion on oracle..
    <CFQUERY DATASOURCE="CRM">
    create or replace trigger AWC_ACCESSROLESID_TRI
    before insert on AWC_ACCESSROLES
    for each row
    begin
    select AWC_ACCESSROLESID_SEQ.nextval into :new.AR_ID from dual;
    end;
    </CFQUERY>
    But the created trigger is not compiled, it is giving the following error
    "Line # = 1 Column # = 6 Error Text = PLS-00103: Encountered the symbol "" when expecting one of the following: begin case declare exit for goto if loop mod null pragma raise return select update while with <an identifier> <a double-quoted delimited-identifier> <a bind variable> << close current delete fetch lock insert open rollback savepoint set sql execute commit forall merge <a single-quoted SQL string> pipe The symbol "" was ignored."
    If I edit that trigger in enterprose manager console by pressing space and compile that, it is working fine with out any error. If i run the above statement in sql *plus, It is working fine with out any error.
    Can you please tell me why this is happening if i run it using cfquery tag and also the possible solutions.
    Thanks in advance,
    Vinod

    So it works in Enterprise manager. It works in SQL*Plus. It doesn't work in CFQUERY. Sounds to me like a ColdFusion problem rather than an Oracle problem to be honest. Aren't there any ColdFusion support resources?
    Cheers, APC

  • User wants to display the % symbol beside the value

    Hi all,
    I have a key figure ..which is added to formula(aggregation tab set as average of a characteristic).
    its displaying average correctly in the report output ,but user want it to be displayed % symbol beside that .
    how can i do that ..
    For other KPI ..i got the requirement as A-B/B and here i applied A-B %A B and its working fine.
    What if i need to put % symbol beside a value ??

    Hi Bilvanth ,
    You can follow the below steps to achieve the desired output :
    1) Create a formula in the query designer . Suppose your key figure is Y which you want to display with % symbol .
        Take this key figure in the formula . Then from the Percentage Functions choose (%A)Percentage Share. Then after this write 100 .
    So your formula would be : Y %A 100 .
    2) Hide your original key figure Y and display this formula in the report . It will come with the percentage symbol .
    Hope the above steps will help you to achieve the desired output .
    Thanks & regards,
    Ashutosh Singh

  • How to remove the '#'symbols for infoobject movement types in bex reporting

    Hi All,
      I have a problem in Bex reporting. The problem is when ever executing the report  that time some of the characteristic values is shown in layout '#' Symbols. i want to remove the '#' valuse in report.
    is it possible please give me step by step procedure for how to remove the '#' Symbols in reporing layout.
    this is very urgent please help to me on this issue.
    Thanks & Regards,
    Guna.

    Hi Guna,
    To achieve this issue, we need to replace the value of ‘#’, we need to change the description while retrieving the data from tables. So we need to write some ABAP code in SE38. Go to RSA1 transaction and go to Info objects tab. Then go to context menu for ‘cProject Key Figures’ as shown below. Click on the ‘Object Overview’ to get the overview of all the info objects. Here you can see the field names which are used to know the table names.
    In SE11, type the table name in ‘Database Table’ field. Now press ‘F4’, then you will get the next screen to select one of the P/Q/S/T tables.
    Now click on the button rounded in the below screen to view the data in the table.
    Now click the execute button or press ‘F8’ to view the records.
    Now go to Tcode: SE38. Create a source code and give some program name for that source code. To write code, you need access key. Contact your BASIS for this.
    Now write the below code for that particular table in which you want to change the value ‘#’ to description ‘Blank’. In the below source code, we are updating particular table, setting the field as ‘Blank’ where it is null or no value. Here the field will automatically get updated to ‘#’ if there is no value or null.
    update /BIC/PXXXXX set /BIC/ZXXXX = 'Blank' where /BIC/ZXXXXX is null or /BIC/ZXXXX = ''.
    if sy-subrc eq 0.
    write 'successful'.
    commit work.
    else.
    write 'unsuccessful'.
    endif.
    OR
    If this # is because of the missing master data than,
    right click that IO -> maintain master
    you will see first row as a blank.
    whatever value you maintain in this row that will come in the report for all Not assigned # values of the master data in the report.
    maintain it according to your requirement, save and activate the master data
    Hope this helps u...
    Regards,
    KK.

  • How to make the symbol to be resolved within the shared library ?

    I have two definitions of a symbol, one is in the main code, the other in a shared library. I want the symbol to be resolved within the shared library if it needed in the shared library.
    From the 'C++ User�s Guide', use the option '-Bsymbolic' to build the shared library is a choice. But it also said 'Never use -Bsymbolic with programs containing C++ code, use linker map files instead. So I have to try to use the map file, but I did not get more useful information from 'Linker and Libraries Guide'.
    I want to know what should be included in the map file and how to generate the map file?
    Additionally, from the 'Linker and Libraries Guide', the 'Direct Binding' also could resolve this problem. And I tried to build the shared library by the '-B direct' option, it works.
    Could anybody tell me what's the difference between the '-Bsymbolic' and '-B direct'?
    Any comments are appreciated.

    You didn't provide fun.h, and you didn't show all the commands that you must have used -- there are no commands that compile the source code into .o files. So I can't tell why the -xldscope option didn't work for you.
    Problems and errors that I see in your example:
    Functions func and swap are referenced from C code, but swap and one of the func functions are compiled by the C++ compiler and will get mangled names. If you compile a function with the C++ compiler that is to be called from C code, you need to declare the function as extern "C". But the extern "C" in a shared header needs to be guarded by +#ifdef __cplusplus+, since a C compiler won't understand the declaration.
    When you build a shared library, you must explicitly list the libraries it depends on, since no dependencies are created by default. For a C++ library, you need at least -lCrun -lc in that order. Otherwise, in a real-world program you can have program failures due to incorrect library initialization order. To be sure you have listed all needed libraries, use the -zdefs option, which causes the linker to complain about missing definitions.
    To be sure the shared library is picked up at run time, provide a RUNPATH via the -R option when you build the executable.
    The -xldscope option must appear on compile commands for the files where you want it to take effect. It has no effect on a link command, because the option affects how code is generated.
    Here is my rewrite:
    % cat fun.h
    #ifdef __cplusplus
    extern "C"
    #endif
    void func();
    #ifdef __cplusplus
    extern "C"
    #endif
    void swap();
    % cat fun.c
    #include <stdio.h>
    #include "fun.h"
    extern "C" void func()
        printf("func in the shared lib\n");
    extern "C" void swap()
        func();
    % cat fun_in.c
    #include <stdio.h>
    #include "fun.h"
    void func()
        printf("func in the main code\n");
    % cat main.c
    #include <stdio.h>
    #include "fun.h"
    int main()
        func();
        printf("invoke the swap:\n");
        swap();
    % CC -G -xldscope=symbolic fun.c -Kpic -o liboutside.so -lCrun -lc -zdefs
    % cc -o run main.c fun_in.c -L. -loutside -R .
    % ./run
    func in the main code
    invoke the swap:
    func in the shared libAs you can see, it works as advertised.
    Please note that the -xldscope option affects all functions in the module. If you need more fine-grained control, you must add declarations to the source code, or use a mapfile instead of -xldscope .

  • How do I "show" a symbol in the symbols panel, then "hide" it again?

    So. I feel like this must be easier than I'm making it but I can't seem to get it right, any help would be greatly appreciated.
    I need to create a bunch of robust symbols and import each of them, but I'd like to leave them all inside the symbols panel if possible (for simplicity on the main timeline and because there will be many, many of them with a ton of interactivity in each).
    When I'm on the main timeline, (which is basically just a slideshow of static .png files) I'd like to have a click event "open" a symbol called from the symbols panel and then be able to "hide" it again by clicking a close button within that symbol.
    Is this possible? I'm sure it is, but sym.$("symbol").show(); and sym.$("symbol").hide(); aren't working for me–unless I'm placing them on the wrong elements. Neither is .toggle();
    So basically the scenario is: I'm on a particular "slide"(png) on the stage, I click it, a symbol opens up, I click around and play animations etc., close it with a close button and keep on going with the slideshow where I was before I opened the overlaid symbol.
    Again, any help would be greatly appreciated.
    Cheers.

    Hello,
    Here is a case:
    var mySymbol = sym.createChildSymbol("details", "Stage");
    mySymbol.getSymbolElement().css({"left": "20px", "top": "20px"});
    x ==> left
    y ==> top

  • How can I reference the symbol that contains the code.

    I am trying to create a circle that is dynamically added to the stage.
    Iwant to add all of the programatic animations in the symbol's stage but I can't figure out how to reference teh symbol itself with something I use to do in AS3 using the keyword this
    For example:
    - I create a symbol called Light, with a png inside
    - I open it and place a series of code lines
    var myW = this.width(); // how to reference the symbol from itself?
    var myH = this.height();
    funciton init()
         this.getSymbolElement().css("left", Math.random() * 1024);
         this.getSymbolElement().css("top", Math.random() * 768);
         this.getSymbolElement().css("scale", 1); // how to reset the scale?
         TweenMax.to(this, 2 + Math.random()*4,{opacity:0, scale:4, delay:Math.random()*10, onComplete:init});
    init();
    So each time the TweenMax completes the action, the symbol changes its position and resets the scale (how to reset it is another question)
    After that I create the symbols with a for loop and scatter them over the stage randomly.
    A

    Thank Cindy it was dummy code typed here.
    This worked perfectly! So here is how I did my PARTICLE SYSTEM:
    var root = sym.getSymbolElement();
    root.css("position", "absolute");
    var myW = root.width();
    var myH = root.height();
    function init()
              var lightX = 40 + Math.random() * (1036 - 80);
              var lightY = 30 + Math.random() * 170;
              root.css("opacity", 1);
              root.css("transform","scale(0)").css("-moz-transform","scale(0)").css("-webkit-trans form","scale(0)");
              root.css("left", lightX);
              root.css("top", lightY);
              TweenMax.to(root, 0.5 + Math.random() * 1.5, {opacity:0, scale:3, delay:Math.random()*2, onComplete:init});
    init();

  • 11g R1 problem... PLS-00103: Encountered the symbol "¿" when expecting...

    Yesterday AM. my customer went live with an upgrade. Things started out ok, but as the load on the system started to build, we started seeing errors.
    The reported error is:
    S1000 Oracle ODBC Ora ORA-06550: line 1, column 42:
    PLS-00103: Encountered the symbol "¿" when expecting one of the following:
    . ( ) , * @ % & = - + < / > at in is mod remainder not rem =>
    <an exponent (**)> <> or != or ~= >= <= <> and or like
    This is in response to calling a stored procedure with this signature.
    MY_THING (
    p1 IN NUMBER,
    p2 OUT NUMBER,
    p2 IN NUMBER
    I believe this is a failure with the ODBC driver to parse
    {call MY_STUFF.MY_THING(791200, ?, 1067744)}
    Now to head off the obvious responses, I'm going to say these things in boldface
    the procedure itself is fine, and works flawlessly under test
    *nowhere in any of the code is an upside-down '?' as reported in the error message*
    Has anyone else encountered this--or better yet solved it?

    thanks for the replies.
    I'd have to rule out triggers at the point the stored procedure is run. Other than logging, it doesn't do any writes to the database. It does a couple of look-ups, and returns the results in a cursor. As for the web servers, they're pretty much copies of each other. 'Out of the box + updates' Windows Server 2008 machines with our application installed on each.
    The software issuing the ODBC call is old, well worn, tried and true C++. In this case the only string parameters passed are 'PA' or 'PJ' the rest is all integers.
    But again I want to stress that it doesn't appear that we reach the database when it fails. It appears to fail when the ODBC driver is parsing the '{call xxxxxx} statement.
    On a hunch, I've just reconfigured our application to treat the offensive call as if it were an 'external' reference. Meaning that a new ODBC connection will be created/destroyed for each run. Not very efficient, but I'll take slow over broken any day. It's too early to tell if this will eliminate the error.

  • Getting Errors in PL/SQL - bad bind variable and encountered the symbol...

    CREATE OR REPLACE TRIGGER update_QOH
    AFTER INSERT ON ORDERLINE
    FOR EACH ROW
    DECLARE
         QOH_PRODUCT PRODUCT.QOH%TYPE;
    BEGIN
         SELECT QOH INTO QOH_PRODUCT FROM PRODUCT WHERE :old.product_no = :new.product_no;
         IF :new.QTY <= :old.QOH THEN
              QOH = :old.QOH - :new.QTY
         ELSE
              send_email(ord_no, 'Backorder');
              INSERT INTO BACKORDER (backorder_no_seq.NEXTVAL, :new.product_no, :new.qty, SYSDATE);
              INSERT INTO PRODVENDOR (po_no_seq.NEXTVAL, :new.vendor_no, :new.product_no, :new.vend_qty, :new.shipping_method, SYSDATE, NULL, NULL, NULL);
         END IF;
    END;
    Error(5,17): PLS-00049: bad bind variable 'OLD.QOH'
    Error(6,7): PLS-00103: Encountered the symbol "=" when expecting one of the following: := . ( @ % ;
    Error(6,9): PLS-00049: bad bind variable 'OLD.QOH'

    Hi,
    Welcome to the forum!
    I see 4 mistakes:
    851543 wrote:
    CREATE OR REPLACE TRIGGER update_QOH
    AFTER INSERT ON ORDERLINE
    FOR EACH ROW
    DECLARE
         QOH_PRODUCT PRODUCT.QOH%TYPE;
    BEGIN
         SELECT QOH INTO QOH_PRODUCT FROM PRODUCT WHERE :old.product_no = :new.product_no;
         IF :new.QTY <= :old.QOH THEN
              QOH = :old.QOH - :new.QTY(1) The variable qoh isn't declared.
    (2) Did you mean the assignment operator, :=, rather than the equality operator, = ?
    (3) An assignment statement must end with a semi-colon.
         ELSE
              send_email(ord_no, 'Backorder');(4) The variable ord_no isn't declared.
              INSERT INTO BACKORDER (backorder_no_seq.NEXTVAL, :new.product_no, :new.qty, SYSDATE);
              INSERT INTO PRODVENDOR (po_no_seq.NEXTVAL, :new.vendor_no, :new.product_no, :new.vend_qty, :new.shipping_method, SYSDATE, NULL, NULL, NULL);
         END IF;
    END;
    /While you can reference :NEW and :OLD values in the trigger, it doesn't make any sense to reference the :OLD values. On an INSERT (which is the only time this trigger fires), all :OLD values are NULL.
    >
    Error(5,17): PLS-00049: bad bind variable 'OLD.QOH'
    Error(6,7): PLS-00103: Encountered the symbol "=" when expecting one of the following: := . ( @ % ;
    Error(6,9): PLS-00049: bad bind variable 'OLD.QOH'I don't believe the code you posted is causing these errors. Each of the errors mentioned above would cause a different message. Post the actual code and error messages.
    Whenever you post a question, post all the code necessary for people to re-create the problem and test their ideas.
    In this case, that means CREATE statements for any tables or sequences involved, INSERT statements for any tables that need rows (such as product) as they exist before the INSERT, some INSERT statements for orderline, and the contents of all the tables after each of those INSERTs.
    Always say which version of Oracle you're using.

  • PLS-00103: Encountered the symbol ""

    Hi
    I'm trying to create a PL/SQL function using JDBC and the procedure gets created but with status invalid. After checking the user_errors view I get:
    PLS-00103: Encountered the symbol "" when expecting one of the following: begin function package pragma procedure subtype type use form current cursor external language
    I'm using the following statement:
    statement = connection.prepareStatement ("CREATE OR REPLACE FUNCTION SCOTT.WHATEVER return varchar2 as begin return ('Whatever 2'); end;");
    statement.execute ();
    If I run the same statement from SQL*Plus I get no problems.
    Yes!, the application requires that I create store procedures using JDBC, no other way.
    Any ideas?
    Regards,
    Néstor Boscán

    Nestor,
    Works for me on Oracle 9.2.0.7 database (running on SUN [sparc] Solaris 9) with JDK 1.4.2_07 and "ojdbc14.jar" JDBC [thin] driver.
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    public class CrSqlFun {
      public static void main(String[] args) {
        Connection c = null;
        PreparedStatement ps = null;
        String url = "jdbc:oracle:thin:scott/tiger@host:1521:orcl";
        String sql = "create or replace function WHATEVER return varchar2 as " +
                                                 "begin return 'Whatever 2'; end;";
        try {
          Class.forName("oracle.jdbc.driver.OracleDriver");
          c = DriverManager.getConnection(url);
          ps = c.prepareStatement(sql);
          ps.executeUpdate();
        catch (Exception x) {
          x.printStackTrace(System.err);
        finally {
          if (ps != null) {
            try {
              ps.close();
            catch (SQLException sx) {
              System.out.println("Failed to close statement.");
          if (c != null) {
            try {
              c.close();
            catch (SQLException sx) {
              System.out.println("Failed to close connection.");
    }Good Luck,
    Avi.

  • Creating several intances of a symbol in AS3

    Hi,
    When we create several instances of the same symbol, can we instantiate them using a single variable, or is it required to use a different variable per instance?
    In the following example, the "var c:Circle" is used 10 times to instantiate the same MC symbol.  How can those be altered or removed one by one if all instances refer to the same variable name??
    var totalCircles:uint = 10;
    var i:uint;
    for (i = 0; i < totalCircles; i++)
    // Create a new Circle instance.
    var c:Circle = new Circle();
    // Place the new Circle at an x coordinate that will space the circles
    // evenly across the Stage.
    c.x = (stage.stageWidth / totalCircles) * i;
    // Place the Circle instance at the vertical center of the Stage.
    c.y = stage.stageHeight / 2;
    // Add the Circle instance to the current timeline.
    addChild(c);

    In your 'for' loop, you don't have to declare the 'c' variable in every pass of the loop. Instead, you can declare it outside the loop, like you do your 'i' variable:
    var c:Circle;
    for (i = 0; i < totalCircles; i++) {
    // Create a new Circle instance.
    var c = new Circle();
    Then, since you are reusing the 'c' variable for each pass, as you probably have guessed, you can't reference all of your objects with that same variable (except for the last-created one) after your loop is completed. What I typically do, and suggest, is that you put all of your objects into an array for ease of accessing them after instantiation:
    var circleHolder_arr:Array = [];
    var c:Circle;
    for (i = 0; i < totalCircles; i++) {
    // Create a new Circle instance.
    var c = new Circle();
    circleHolder_arr.push(c);//This adds each instance to the array
    ...And when you want to do something, like remove all of your circles:
    function removeCircles(e:MouseEvent = null):void{
    for (var i:int = 0; i < circleHolder_arr.length; i++) {
    removeChild(circleHolder_arr[i]);
    //This is where you could also do other things, such as removing event listeners and other memory mgnt items
    btn.addEventListener(MouseEvent.CLICK, removeCircles);

  • When I change the size of a symbol in itself, it is never updated outside the symbol.

    Hello,
    I created a symbol there some time ago with graphics and elements inside. This symbol has well-defined dimensions according to the elements it contains, and is used several times in my project.
    For some reason, later I need to change the elements in this symbol. So I have to resize the size of the symbol within itself.
    This works fine inside, but outside, my symbol still keeps the original size, and, whatever happens.
    So it can create problems if I need to change the position of my symbol or change the alignment relative to the elements of the same level.
    For information it's been a while since I worked with Animate and I always had the problem, whatever the version ...
    Is there a way to fix this?
    Or maybe the problem is known and will be part of the next update?
    Thanks for reply

    Hi LP700CR7,
    This is a default behavior, I am afraid, its not possible to stop this behavior at this stage within Muse.

  • Add "make unique symbol" to the symbol context menu

    There are many times I need to make a "variation" of a symbol that should also become a symbol. The current method requires several unnecessary steps. I'd like an option in the "Symbol" context menu called "Make unique Symbol". It would duplicate the current symbol in the symbol palette and link the current symbol instance to it.

    I agree the context menu entry is useful and I also use TMP for it. Firefox does have a built-in option to duplicate a tab. Hold down the control key, then drag the tab onto the tab bar and it will create a duplicate.
    You may already be aware, but there is a development version of Tab Mix Plus for Firefox 4 available from http://tmp.garyr.net/forum/viewtopic.php?t=10888

Maybe you are looking for

  • In need of a volunteer or two to test a link for me

    Hi guys, I need a favour. I am getting close to releasing an alpha version of a browser framework for JFX that I've alluded to a couple of times on the forum. I have put together a showcase of it and, with some help from Jonathan, I've gotten through

  • Why does iTunes no longer sync all of my songs? It only syncs 125/600, despite plenty of room on my iPod Touch

    Why does iTunes no longer sync all of my songs? It only syncs 125/600, despite plenty of room on my iPod Touch.

  • Server 2012 R2 Hyper-V Host Loses Network Connectivity

    Here's the scenario... We have two 2012 R2 Hyper-V hosts (VM1 and VM2) in a cluster that have 8 virtual machines that live on them. The servers are each utilizing three network connections that are teamed (Switch Independent, Address Hash).  They all

  • [solved] White border around urxvt (Openbox / Dyne)

    Hi, dear community. I'm using Openbox and urxvt as console terminal. Everything is fine but white border around urxvt window is really annoying. Screenshot: Notice, there are no white border around another application window. .Xdefaults: ! c o l o r

  • Getting Errors.

    Hi Experts, I am getting some error in the following code,can u suggest me a way to overcome tht error. *& Report  ZSELSCREEN                                                  * REPORT  ZSELSCREEN MESSAGE-ID Y6. TABLES MARA. SELECTION-SCREEN SKIP 1. s