How to resize all the objects on a stage

Hello

I use Flash CS4 and need to resize my Flash scene and all the objects that are there.

To do this, I enabled the onion skin tool, selected all the objects and all the frames and resized using the Transform tool.

However, masks and some paths are not set to scale proportionately. Is it yet another bug in CS4?

Here is a video illustrating the issue: http://screencast.com/t/ZThiNDdkZ

Any help would be much appreciated.

Maybe you can try this way...

Select the layer in the timeline. cut it. Create a new movieclip by pressing Ctrl + F8. Paste the layers.

out to the main timeline.

Drag the movieclip that is created in the timeline where ever it is necessary and he adapts accordingly.

Tags: Adobe Animate

Similar Questions

  • How to copy all the object?

    Hello.

    I want to copy and paste the entire object.

    app.activeDocument .everyItem () .select ( rectangles).

    App.Cut ();

    I can copy (or cut) and paste only if an object type.

    How to copy all objects?

    Thank you.

    app.activeDocument.pageItems.everyItem)

    Do not use the cut/copy/paste. There are better and longer way of doing things in javascript to imitate what you do in the interface.

    var items is app.activeDocument.pageItems.everyItem () .move (newDocument);. is equivalent to a cut and paste.

  • How to resize all the boxes in PDF file

    I use Adobe Acrobat 9 Standard and have a form to be filled with a lot of boxes. It's that they are of different sizes. Does anyone know of a way I can apply a change to be applied uniformly to all of them?

    Thank you!

    Select all, right-click on the person who has the size that you want to apply and

    then select size - both.

  • How to navigate all the Checkbox State in a ListView

    I have a ListView with box on each line. I want to make a feature to remember the State of the check box so users checked someone.

    I tried to use a signal when the box is checked to notify a function in a CPC to remember the current state of the check box, but when I want to do with the context property object registed in the PRC, it always say this object cannot be found.

    Do you know how to make this kind of functionality? Or how to navigate all the checkbox in the ListView? Thank you very much.

    listItemComponents: [
        ListItemComponent {
            type: "textItem"
                TextItem {
                    id: textitem
                    onItemcheck: {
                        _app.setCheckboxStatus(checkBoxId); //ReferenceError Can not find variable _app
                    }
                }
         }
    ]
    
    mainApp.cpp: qml->setContextProperty("_app", this);
    
    TextItem.qml:
            signal itemcheck(string checkBoxId)
    
            CheckBox {
              onCheckedChanged: {
                if (checked)
                    itemcheck(ListItemData.id);
              }
            }
    

    to solve the referance error pls follow these steps

    listItemComponents: [
        ListItemComponent {
            type: "textItem"
                TextItem {
                    id: textitem
                    onItemcheck: {
                       textitem.ListItem.view.setCheckboxStatus(checkBoxId);
                    }
                }
         }
    ]
    
    function setCheckboxStatus(checkBoxId)
    {
     _app.setCheckboxStatus(checkBoxId);
    }
    

    Add setCheckboxStatus function in ListView

  • How to find all the table names in all modules in EBS R12?

    How to find all the table names of all the modules in EBS R12?

    In addition, you can go to http://etrm.oracle.com, you select the version of the EBS, select "FND Data" or "S/n data", select the Type of the object TABLE and you will get all the tables of EBS in module.

  • Release of anchor all the objects/text images

    Dear all,

    It's my 1st question on AC (Adobe Community), so I'll explain what I need here in details and excuse me my little or even none experienced in coding, especially in Javascript.

    I have a book with many INDD files, these files have a lot of images and objects and text blocks are anchored to the main text area.

    I searched on AC for the way to free him from all my anchored object and the main text block text block. so I found the average script.

    I found her name "ReleaseAnyAnchor" created by 'Dave Saunders' to release the anchored object (graphics, text, else) but one by one. and it will take too much time to free myself from all the objects on the book. (the Script code is below)

    //DESCRIPTION: Release Inline & Anchored Items
    //Written by Dave Saunders, released on indesignsecrets.com
    
    
    (function() {
      if (app.documents.length > 0 && // must be a document open
      app.selection.length == 1 && // selection must be of single item
      app.selection[0].parent instanceof Character) { // selection must be anchored
      if (parseFloat(app.version) < 6) {
      releaseMe(app.selection[0]);
      } else {
      app.doScript(releaseMe, undefined, app.selection[0], UndoModes.entireScript, "Release Any Anchor");
      }
      } else {
      alert("Please select an inline item.");
      }
    
    
      function releaseMe(myPI) {
      var yePage = findPage(myPI);
      var startBounds = myPI.geometricBounds;
      myPI.anchoredObjectSettings.anchoredPosition = AnchorPosition.anchored;
      myPI.anchoredObjectSettings.releaseAnchoredObject();
      if (yePage != null) {
      myPI.move(yePage);
      }
      myPI.move([startBounds[1], startBounds[0]]);
      }
    
    
      function findPage(theObj) {
      if (theObj.hasOwnProperty("baseline")) {
      theObj = theObj.parentTextFrames[0];
      }
      while (theObj != null) {
      if (theObj.hasOwnProperty("parentPage")) return theObj.parentPage;
      var whatIsIt = theObj.constructor;
      switch (whatIsIt) {
      case Page : return theObj;
      case Character : theObj = theObj.parentTextFrames[0]; break;
      case Cell : theObj = theObj.insertionPoints[0].parentTextFrames[0]; break;
      case Note : ; case Footnote : theObj = theObj.storyOffset; break;
      case Application : return null;
      }
      if (theObj == null) return null;
      theObj = theObj.parent;
      }
      return theObj
      } // end findPage
    
    
    }());
    


    also, I found another script which release all of the graphic objects, but not objects of text frame. (I get it from AC, but I remember exactly the place where.)


    if(app.documents.length!=0) {
        var ad = app.activeDocument;
        var pgit = ad.pageItems;
        var pgitlg = pgit.length;
        var objprocessed = 0;
        if(pgitlg !=0)
        {
            for(i=0; i<pgitlg; i++)
            {
                if(pgit[i].getElements()[0].constructor.name == "TextFrame")
                {
                    var tfg = pgit[i].allGraphics;
                    var tfglg = tfg.length;
                    for(j=0; j<tfglg; j++)
                    {
                        var rec = tfg[j].parent;
                        rec.anchoredObjectSettings.releaseAnchoredObject();
                    }
                }
            }
        }
    }
    


    all codes work well for me, but I need to try to merge or make a new code [as I mentioned that I don't have experiences in JS, so I do not know how to compile a new code that do the 2 steps of the 2 codes.]


    my request is, could you please help me to do this new code, or merge to compile a new code in the new file.


    I saw this topic releasing objects anchored and want to make a new script.


    Please try to help me as soon as POSSIBLE because I need this script to all my object anchored to begin working on the output file.


    I need the code works on any version of INDESIGN.


    Thanks guys, waiting for you.


    AMR

    AHA. If you need test whether a line is an anchor. If this is the case, use. releaseAnchoredObject(), if it is not, the simplest is to make an anchor, then release it:

    if (pageItems[i].parent instanceof Character) {
        if (pageItems[i].anchoredObjectSettings.anchoredPosition !== AnchorPosition.ANCHORED) {
            pageItems[i].anchoredObjectSettings.anchoredPosition = AnchorPosition.ANCHORED;
        }
        pageItems[i].anchoredObjectSettings.releaseAnchoredObject();
    }
    

    It works, but I don't know if the results are what you're after.

    Peter

  • Disable all the object

    How can I have disabled all the object in the scene of coding?

    Thank you

    use:

    function disableAllF(dobjC:DisplayObjectContainer):void {}

    for (var i: int = 0; i<>

    If (dobjC.getChildAt (i) is InteractiveObject) {}

    InteractiveObject (dobjC.getChildAt (i)) .mouseEnabled = false;

    }

    }

    }

  • Push all the objects in a tablespace to another

    Hello

    on the 11g R2 (11.2.0.3)

    We need to move all the objects in one tablespace to another.

    Is this possible?

    How can we push all the objects of a logical disk space to a different tablespace?

    Thank you.

    Generate the

    ALTER TABLE TableName MOVE TABLESPACE new_tbsname
    and

    ALTER INDEX REBUILD new_tbsname IndexName

    orders.  You can use "SQL Generation of SQL" or write a PLSQL WHERE USER_SEGMENTS loop.

    If you have some LOBs you must move the LOBs using
    ALTER TABLE TableName MOVE LOB (lobname) STORE AS LOBSEGMENT (TABLESPACE new_tbsname)

    Hemant K Collette

  • Export all the objects with PowerCli

    Hello

    I'm not in VSphere or vmware but a Director of SCOM and I am currently working on a solution to monitor our VCenter with SCOM server. To be able to automatically resolve alerts, I would need to find a way to export a list with all the objects of the VCenter server to create them as instances in SCOM and map the error directly state events to these objects.

    I think that this should be possible with PowerCli so the plan was to have a script export this list frequently and run a discovery of the SCOM Agent Script to automatically create related instances. Does anyone know how this export could be made with PowerCli? Since I'm not in vmware / vsphere and we don't have a test environment, but only the Production System in our office, I am somewhat limited in trying just by the cmdlets to discover this.

    No matter what pointer in the right direction which cmdlets can achieve this is as welcome as script ideas that could help me out here.

    Thanks and greetings

    Marco

    OK, I see.

    When you want to display a map, it is better to load the objects requested in advance and update them regularly.

    Have you ever thought about what you want to see on the map?

    A hierarchy of the sample could be

    vCenter(s)                                     <- in $defaultVIServer after a Connect-VICenter
      datacenter(s)                              <- Get-Datacenter -Server 
       cluster(s)                                   <- Get-Cluster -Server 
          resource pool(s)                     <- Get-Resourcepool -Location (Get-Cluster )
             guest(s)                               <- Get-VM -Location (Get-Resourcepool )
          vmhost(s)                               <- Get-VmHost -Location (Get-Cluster 
             datastores                           <- Get-Datastore -Location (Get-VMHost )
             network
                vswitches                         <- Get-VirtualSwitch -VMHost (Get-VMHost )
                    portgroup(s)                 <- Get-VirtualPortgroup -VMHost (Get-VMHost )
       standalone host(s)
          guest(s)
          datastores
          network
             vswitches
                 portgroup(s)
    

    I added some of the cmdlets that you can use to get items for a specific branch of the hierarchy.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Transparently adding a criterion to all the objects in an application view

    Hi all

    We are migrating an application based on the forms in Oracle ADF and JDeveloper 11 g R2.

    In our application Forms, we add transparent business to all the blocks of data code where clause property by using the following expression: company_code = SYS_CONTEXT('erp$security_mgmt_ctx','company'). How this can be achieved in Oracle JDeveloper and Oracle ADF.

    Any help will be much appreciated.

    Thank you
    Bilal

    Hello

    You can have a method on the AOS, that is the place where clause to the view of all the objects and run the query.

    Ex:

    public void setWhereClause2AllVOs(String compName){
    this.getVO1().setWhereClause("='" + compName + "'");
    this.getVO1().executeQuery();
    this.getVO2().setWhereClause("='" + compName + "'");
    this.getVO2().executeQuery();
    .....
    }
    

    You can call this method at the start (e.g. as an activity in your workflow by default methodCall)

    Arun-

  • How to tune all the privilege of a specific to a user schema?

    How to tune all the privilege of a specific to a user schema?
    I have already create a new schema and import the data necessary for this scheme.
    Now I want to affect all the privilege for this schema to user HR (let the user HR become owner of this schema). How to deal?

    Published by: qkc May 13, 2011 10:45

    qkc wrote:
    How to tune all the privilege of a specific to a user schema?
    I have already create a new schema and import the data necessary for this scheme.
    Now I want to affect all the privilege for this schema to user HR (let the user HR become owner of this schema). How to deal?

    Published by: qkc May 13, 2011 10:45

    It is no way - by definition - that a user can 'ownership' of another schema. A schema is, by definition, the collection of objects that belong to one owner.

    but it's maybe just semantics in the context of what you really want.

    Use sql to generate the sql:

    spool doit.sql
    select 'grant select on someuser.' || table_name || ' to someotheruser;'
    from dba_tables
    where owner = 'SOMEUSER';
    spool off
    
  • How to recompile all invalid objects apps?

    Hi all:
    How to recompile all invalid objects apps? my environment is ORACLE 9.2.0.5 32bits.





    Concerning
    Terry

    Yes,

    Compile the drawing APPS

  • How to remove all the photos from my iphone 5?

    How to remove all the photos from my iPhone 5?

    1. Open the Photos app.
    2. Click on the photo or video you want to delete.
    3. Type > delete the Photo.

    Delete several photos

    1. Open the Photos app and press Select.
    2. Click on each photo or video that you want to remove.
    3. Type > delete Photos.

    Delete photos on your iPhone, iPad and iPod touch - Apple Support

  • How to remove all the pictures imported from my I phone 6

    How to remove all the pictures imported from my I phone 6

    Imported from the place where?

    If they were imported from your computer, you remove the same way that you put on there: by syncing with iTunes. to remove them, you need to synchronize an empty folder, or simply turn off the Photo in the form of synchronization option summary pane when the iPhone is connected.

  • How to add all the tabs open as I used to?

    How to add all the tabs open as I used to?

    You can go to bookmark all tabs by right-clicking a tab, or use the hotkey Ctrl + Shift + D

Maybe you are looking for

  • brightness of Reg

    I can't adjust the brightness pls solve 15-d006tu

  • Why I can't add more than 195 email addresses to blocked emails section

    My Yahoo Server allows to 500 addresses be added to the blocked section but I can't add more than 195 - why is this and how I overcame this problems I received many many spam

  • write on the screen turned upward on the side?

    Hi, I have a toshiba laptop with windows vista. Stupidly I wiped the keyboard while my computer was turned on, now everything on the screen is sideways like its been toggled. It's on my main screen as well if I go into something like the internet, et

  • Develop on a disconnected phone

    If I cut off the service at my BB Torch, I would still be able to make a HttpConnection using wifi? or use the GPS?

  • Windows 8 no sound at all

    Help, I turned on my laptop mode 'sleep' everything seemed fine is past on my fault as my things, so I went to play a video from hulu. I'm no sound at all. I thought it was my headphones, I have not disconnected the no sound tried another pair of hea