How do I see stage boundaries within Symbol Edit?

Sorry for lack of terminology but I want to create movie clips with moving graphics or objects and so want to see the boundaries of the stage. At present the whole area is filled with my stage colour. A setting somehwere?
Cheers
Jo

The only way I know to do this is to edit the movieclip in place. In other words, create the clip (or at least a little bit of it) and put it on the stage. Then double click the clip and you will be on its timeline, but you will still see where the stage boundries are.
Or you could also make a layer at the bottom or your movieclip layers with a colored rectangle the size of your stage. In that case it would be good to orient that background layer to align the upper left or right or some such....

Similar Messages

  • How do I see my website within our network with it's proper name

    We can see the website foo.com outside of our network. But to see it within our network we have to go to http://192.168.0.4.
    How do we get it to send requests for foo.com to 192 etc within the network?

    Avoid the /etc/hosts file -- it's just a quick fix that you can use in a pinch. It's only used for client settings. You could add the 192.168.0.4 foo.com line to one of your workstations and they'd be able to see it. It's a workaround for not having DNS service.
    You can use the DNS server on the server machine or, if you have another DNS server on your LAN, you can add the record to that. If you want to use the DNS server included with OS X Server, then yes, you'll have to start the DNS server. If you're totally unfamiliar with DNS, you'll want to read up on it first. (Page 37 of this document starts Apple's documentation of the DNS service. Also, this forum should provide a good archive of DNS questions/answers.)

  • How can I see my entire page when editing?

    When i edit my web page, the far right
    column is over shadowed by the middle column.
    so i can not see any of my text in the rows of that column unless i shrink the middle column
    there is no scroll at the bottom.
    so is there a way to view the entire page durring editing?  thanx

    I tried saving this page locally and edited in Contribute CS4 in both  Windows and Mac, the horizontal scroll bar did appeared. Please find  the same in the screenshot below.
    Windows:
    Mac:
    Or  you can try clearing the preferences and connecting again.
    To  Clear the preference, quit Contribute, and then delete the  Contribute  CS5(or CS4 or CS3) folder in C:\Documents and Settings\<user>\Local   Settings\Application Data\Adobe\ and also run the following command "   reg delete "HKCU\Software\Adobe\Contribute 6 (or 5 or 4.1)" /f " if you are using   Contribute CS5 (or CS4 or CS3).    Reconnect to the site and try the same scenario.
    Note that, if you clear the  preferences then no   connection will be listed in Contribute, you need to recreate the   connections. It will be like a fresh installation.

  • How we can see the abap memory data

    How we can see the abap-memory data
    fine the code below
    import lsind
             report_title
             table_name
             report_field
             change_display
             show_hide
             conversion_exits
             table_description
             form_program
             select_form
             update_form
             line_size
             line_count
             records[]
             fields[]
             header_fields[]
             select_fields[]
             xrep[]
             from memory id 'LZUT5U11'.
    Regards
    santhosh
    mail-id : [email protected]

    Dear Santosh,
    ABAP MEMORY:
    A logical memory model illustrates how the main memory is distributed from the view of executable programs. A distinction is made here between external sessions and internal sessions .
    An external session is usually linked to an R/3 window. You can create an external session by choosing System/Create session, or by entering /o in the command field. An external session is broken down further into internal sessions. Program data is only visible within an internal session. Each external session can include up to 20 internal sessions (stacks).
    Every program you start runs in an internal session.
    All "squares" with rounded "corners" displayed in the status diagram represent a set of data objects in the main memory.
    The data in the main memory is only visible to the program concerned.
    CALL TRANSACTION and SUBMIT AND RETURN open a new internal session that forms a new program context. The internal sessions in an external session form a memory stack. The new session is added to the top of the stack.
    When a program has finished running, the top internal session in the stack is removed, and the calling program resumes processing.
    The same occurs when the system processes a LEAVE PROGRAM statement.
    LEAVE TO TRANSACTION removes all internal sessions from the stack and opens a new one containing the program context of the calling program.
    The ABAP memory is initialized after the program is called. In other words, you cannot transfer any data to a program called with LEAVE TO TRANSACTION via the ABAP memory.
    SUBMIT replaces the internal session of the program performing the call with the internal session of the program that has been called. The new internal session contains the program context of the called program with which it is performed.
    When a function module is called, the following steps are executed:
    A check is made to establish whether your program has called a function module of the same function group previously.
    If this is not the case, the system loads the associated function group to the internal session of the calling program as an additional program group. This initializes its global data.
    If your program used a function module of the same function group before the current call, the function module that you have called up at present can access the global data of the function group. The function group is not reloaded.
    Within the internal session, all of the function modules that you call from the same group access the global data of that group.
    If, in a new internal session, you call a function module from the same function group as in internal session 1, a new set of global data is initialized for the second internal session. This means that the data accessed by function modules called in session 2 may be different from that accessed by the function modules in session 1.
    You can call function modules asynchronously as well as synchronously. To do so, you must extend the function module call using the addition STARTING NEW TASK ''. Here, '' is a symbolic name in the calling program that identifies the external session, in which the called program is executed.
    Function modules that you call using the addition STARTING NEW TASK '' are executed independently of the calling program. The calling program is not interrupted.
    To make function modules available for local asynchronous calls, you must identify them as executable remotely (processing type: Remote-enabled module).
    There are various ways of transferring data between programs that are running in different program contexts (internal sessions). You can use:
    (1) The interface of the called program (standard selection screen, or interface of a
    subroutine, function module, or dialog module)
    (2) ABAP memory
    (3) SAP memory
    (4) Database tables
    (5) Local files on your presentation server.
    For further information about transferring data between an ABAP program and your presentation server, refer to the documentation for the function modules WS_UPLOAD and WS_DOWNLOAD.
    Function modules have an interface, which you can use to pass data between the calling program and the function module itself (there is also a comparable mechanism for ABAP subroutines). If a function module supports RFC, certain restrictions apply to its interface.
    If you are calling an ABAP program that has a standard selection screen, you can pass values to the input fields. There are two options here:
    By using a variant of the standard selection screen in the program call
    By passing actual values for the input fields in the program call
    If you want to call a report program without displaying its selection screen (default setting), but still want to pass values to its input fields, there is a variety of techniques that you can use.
    The WITH addition allows you to assign values to the parameters and select-options fields on the standard selection screen.
    If the selection screen is to be displayed when the program is called, use the addition: VIA SELECTION-SCREEN.
    Use the pattern button in the ABAP Editor to insert a program call via SUBMIT. The structure shows you the names of data objects that you can complete with the standard selection screen.
    For further information on working with variants and further syntax variants for the WITH addition, see the key word documentation in the ABAP Editor for SUBMIT.
    You can use SAP memory and ABAP memory to pass data between different programs.
    The SAP memory is a user-specific memory area for storing field values. It is available in all of the open sessions in a user's terminal session, and is reset when the terminal session ends. You can use its contents as default values for screen fields. All external sessions can access SAP memory. This means that it is only of limited use for passing data between internal sessions.
    The ABAP memory is also user-specific, and is local to each external session. You can use it to pass any ABAP variables (fields, structures, internal tables, complex objects) between the internal sessions of a single external session.
    Each external session has its own ABAP memory. When you end an external session (/i in the command field), the corresponding ABAP memory is released automatically.
    To copy a set of ABAP variables and their current values (data cluster) to the ABAP memory, use the EXPORT TO MEMORY ID statement. The (up to 32 characters) is used to identify the different data clusters.
    If you repeat an EXPORT TO MEMORY ID statement to an existing data cluster, the new data overwrites the old.
    To copy data from ABAP memory to the corresponding fields of an ABAP program, use the IMPORT FROM MEMORY ID statement.
    The fields, structures, internal tables, and complex objects in a data cluster in ABAP memory must be declared identically in both the program from which you exported the data and the program into which you import it.
    To release a data cluster, use the FREE MEMORY ID statement.
    You can import just parts of a data cluster with IMPORT, since the objects are named in the cluster.
    In the SAP memory, you can define memory areas (SET/GET parameters, or parameter IDs), which you can then address by a name of up to 20 characters.
    You can fill these memory areas either using the contents of input/output fields on screens, or using the ABAP statement:
    SET PARAMETER ID '' FIELD .
    The memory area with the name now has the value .
    You can use the contents of a memory area to display a default value in an input field on a screen.
    You can also read the memory areas from the SAP memory using the ABAP statement GET PARAMETER ID FIELD . The field then contains the value from parameter .
    The link between an input/output field and a memory area in SAP memory is inherited from the data element on which the field is based. You can enable the set parameter or get parameter attributes in the input/output field attributes.
    Once you have set the Set parameter attribute for an input/output field, you can fill it with default values from SAP memory. This is particularly useful for transactions that you call from another program without displaying the initial screen. For this purpose, you must activate the Set parameter functionality for the input fields of the first screen of the transaction.
    You can:
    (1) Copy the data that is to be used for the first screen of the transaction to be called to the parameter ID in the SAP memory. To do so, use the statement SET PARAMETER immediately before calling the transaction.
    (2) Start the transaction using CALL TRANSACTION or LEAVE TO
    TRANSACTION . If you do not want to display the initial screen, use the AND
    SKIP FIRST SCREEN addition.
    (3) The system program that starts the transaction fills the input fields that do not already have default values and for which the Get parameter attribute has been set with values from SAP memory.
    The Technical information for the input fields in the transaction you want to call contains the names of the parameter IDs that you need to use.
    Parameter IDs should be entered in table TPARA. This happens automatically if you create them via the Object navigator.
    Programs that you call using the statements SUBMIT , LEAVE TO TRANSACTION , SUBMIT AND RETURN, or CALL TRANSACTION run in their own SAP LUW, and update requests receive their own update key.
    When you use SUBMIT and LEAVE TO TRANSACTION , the SAP LUW of the calling program ends. If no COMMIT WORK statement occurred before the program call, the update requests in the log table remain incomplete and cannot be processed. They can no longer be executed. The same applies to inline changes that you make using PERFORM &#8230; ON COMMIT.
    Data that you have written to the database using inline changes is committed the next time a new screen is displayed.
    If you use SUBMIT AND RETURN or CALL TRANSACTION to insert a program and then return to the calling program, the SAP LUW of the calling program is resumed when the called program ends. The LUW processing of calling and called programs is independent.
    In other words, inline changes are committed the next time a new screen is displayed. Update requests and calls using PERFORM ... ON COMMIT require an independent COMMIT WORK statement in the SAP LUW in which they are running.
    Function modules run in the same SAP LUW as the program that calls them.
    If you call transactions with nested calls, each transaction needs its own COMMIT WORK, since each transaction maps its own SAP LUW.
    The same applies to calling executable programs, which are called using SUBMIT AND RETURN.
    The statement CALL TRANSACTION allows you to
    Shorten the user dialog when calling using CALL TRANSACTION USING .
    Determine the type of update (asynchronous, local, or synchronous) for the transaction called. For this purpose, use the addition CALL TRANSACTION USING UPDATE 'update_mode', where update_mode can have the values a (asynchronous), L (local), or S (synchronous).
    Combining the two options enables you to call several transactions in sequence (logical chain), to reduce their screen sequence, and to postpone processing of the SAP LUW 2 until processing of the SAP LUW 1 has been completed.
    When you call a function module asynchronously using the CALL FUNCTION STARTING NEW TASK ' ' statement, it runs in its own SAP LUW.
    Programs that are executed with a SUBMIT AND RETURN or CALL
    TRANSACTION statement starts their own LUW processing. You can use these to perform nested (complex) LUW processing.
    You can use function modules as modularization units within an SAP LUW.
    Function modules that are called asynchronously are suitable for programs that allow parallel processing of some of their components.
    All techniques are suitable for including programs with purely display functions.
    Note that a function module called with CALL FUNCTION STARTING NEW TASK is executed as a new logon. It, therefore, sees a separate SAP memory area. You can use the interface of the function module for data transfers.
    Example: In your program, you want to call a display transaction that is displayed in a separate window (amodal). To do so, you encapsulate the transaction call in a function module, which you set as to Remote-enabled module. You use the function module interface to accept values that you write to the SAP memory. You then call up the transaction in the function module using CALL TRANSACTION AND SKIP FIRST SCREEN. You call the function module itself asynchronously.
    Type &#8216;E' locks for nested program calls may be requested more than once from the same object. This behavior can be described as follows:
    Lock entries from function modules called synchronously increment the cumulative counter, And are therefore successful.
    Lock entries from programs called with CALL TRANSACTION or SUBMIT
    AND
    RETURN is refused. The object to be locked by the called program is displayed as already Locked by another user.
    Programs that you call using SUBMIT or LEAVE TO TRANSACTION cannot come into conflict with lock entries from the calling program, since the old program ends when the call is made. When a program ends, the system deletes all of the lock entries that it had set.
    Lock requests belonging to the same user from different R/3 windows or logons are treated as lock requests from other users.
    Regards,
    Rajesh.
    Please reward points if found helpful.

  • Help please! How to reposition the stage?

    Somehow I've managed to place my stage in the upper right
    corner of my workspace. I don't know how I did it, but it makes it
    impossible to see symbols placed to the top and left of the stage
    area.
    Can anyone tell me how to get my stage back in the middle of
    my workspace?

    When View > Pasteboard is checked, the gray pasteboard
    area is available on all sides of the stage (the default). When you
    remove the checkmark by selecting "Pasteboard" in the View menu (or
    hitting the keyboard shortcut), the stage aligns to the upper left
    of the pasteboard. Having items outside the stage area is just a
    normal part of animation. For example, if a character comes onto
    the stage from the left, it will begin off the stage to the left.
    So you need to be able to see the pasteboard to create such
    effects. But for the purpose of viewing your animation, it could be
    useful to quickly get rid of the pasteboard area -- and now we know
    how.

  • How do I see all options in the Inspector?

    How do I see all options in the Inspector? I have gone to Preferences and checked Show Advanced Options. I am also selecting a clip in the Project window. But when I pull up my Inspector, I only have options to change the background color or the Duration. I have no options for speed, etc. Please help!

    Hi wemacAU,
    I use a lot of popups. Somewhere in my sheets I have a column that contains the data that each popup is based on. This is nessasary for me because those popups need to be updated from time to time. So I would copy and print/paste that column. Another way would be to just take a screenshot:
    If you want something that will update when the popup is changed Numbers doesn't even do that within the app.
    quinn

  • How can I see all my open tabs?

    When I use the drop-down Windows menu, it only shows the name of the window, not the tabs within each window. And I don't an option for "Activity Window" (like on Safari), or anything else that will show me all open tabs. How can I see them, as flipping through every open window is a pain....

    Does anyone have a response? Or know why even the windows listed in my dropdown list isn't even in alphabetical order? Why does FF make managing open windows and tabs so very, very, cumbersome and difficult?? No other browser is this lame when it comes to that.... Is it really so hard to put them in order, or to add an "Activity Window", which would show all windows and tabs that are open?
    Also, WHY DON'T the tabs and windows that open up when I hit Restore Previous Session show up in the HISTORY???? If they did, then I could simply delete all the other history, and I would have a list of all the tabs/windows, so when the number becomes too big, I can simply close them out, and at least have access to a means of re-opening them, As of now, I'm stuck either writing them all down, or one by one saving them as bookmarks (which i really don't want to do), , or who knows what, but again, this is a royal pain, that other browsers make far easier....

  • How can you see all the open tabs?

    When I use the drop-down Windows menu, it only shows the name of the window, not the tabs within each window. And I don't an option for "Activity Window" (like on Safari), or anything else that will show me all open tabs. How can I see them, as flipping through every open window is a pain....

    Hi,
    You can try to set '''browser.allTabs.previews''' to true in [http://kb.mozillazine.org/About:config about:config]. (In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear. Click '''I'll be careful, I promise!''', to continue to the about:config page.)
    [http://kb.mozillazine.org/About:config_entries about:config Entries]

  • How can I see what has been backed up

    After doing a category BU to my WD Passport Ultra, how can I see what was backed up? The Smartware tells me that what I selected was done.But how and where can I confirm this? Thanksgrowlybear

    Simplest way is to open the drive in Windows Explorer, then in the root you should find a folder WD Smartware.stor. Within that should be a folder for each device you've backed up, and within that a folder for each drive on that device that you've backed up. Within those drive folders you should find the files/folders that have been backed up from that particular drive. You can look through them in the same way that you look through the files/folders on your actual drive itself, and confirm that everything is there that you expect to be.

  • HT204053 How can I see whats in my Icloud account

    How can I see whats in my icloud account

    You can see all of your data from within the apps on your device that are syncing with iCloud (contacts, calendars, reminders, notes, etc.).  You can also see some of it on icloud.com.
    To get an idea what is using your storage, go to Settings>iCloud>Storage & Backup>Manage Storage.

  • HT4890 How do I see what photos are in Icloud?

    How do i see what photos are in icloud?
    I have duplicate photos appearing in my photo library and in another folder underneath the photo library on my Iphone5.  This is killing my free space and i cant delete them from the phone because I dont have that option within those folders.  How do i delete them?

    Good day AMELIASARAH,
    One resolution to your issue would be to update your iPhone using iTunes on your computer rather than over the air. This requires much less space on the iPhone as most of the work is done by the computer. See this article for how to do it -
    If you need more space for an iOS update - Apple Support
    Thanks for using Apple Support Communities.
    Safe computing,
    Brett L 

  • View stage boundaries | select objects in multiple frames/layers

    I've got 2 things where I've typed every query I can think of into Google  and can't find an answer. In both cases I'm sure there's a simple answer that  I'm missing.
    #1
    When I add a graphic or picture that's larger than the stage, the stage is  hidden. I've got no idea where it is and therefore what's viewable.
    At the minute I'm creating a temporary extra layer on top to outline where  the boundaries are, but surely there is a function in the software to show the stage boundaries?
    #2
    I've added a picture, converted it to symbol, created another keyframe,  changed the alpha on that, created another keyframe, changed the alpha on that,  applied lots of tweening. Now I want to move the image elsewhere.
    Currently, I'm applying the transformation independently for each of those  frames which just seems a bit daft.
    Is there a better way?

    1.  right click in the stage region and tick rulers.  you can click and drag vertical and horizontal lines from the left and top ruler.
    2.  create a movieclip of your tweened object.  place as many instances as you like any place you like.

  • How do I resize an image within a drop zone (not the drop zone itself) in motion 5?

    How do I resize an image within a drop zone (not the drop zone itself) in motion 5?

    I think others would be able to help if you describe a little more why you'd like to do this. Given that drop zones are a way of passing images into Motion that you want to manipulate, resizing a drop zone is the equivalent of resizing the image.
    If you're having a problem with an image from Final Cut being too big or too small, select the Drop Zone in the inspector and make sure the Fit parameter is set to 'Fit' - 'Center' will result in images dropped not being scaled to fit the Drop Zone. 'Stretch' will force the dropped image to fill the space defined by the drop zone,
    If the image is already cropped and scaled up in Final Cut Pro, that is the information that Motion gets - you can't scale down the image to see more of the edges that have been cropped off.
    If you want more than one copy of the image passed via the drop zone, use Make Clone Layer from the Object menu.

  • How do i extract pages from within a pdf document?

    how do i extract pages from within a pdf document?

    Hi adobespurs,
    To extract pages from a PDF, you need to use Acrobat. If you don't have Acrobat, you can try it for free for 30 days. Please see www.adobe.com/products/acrobat.html for more information.
    Best,
    Sara

  • How do I see my pictures that are in my aperture library in finder?  I would like I be able to select  photos in finder when I am making photo books online without having to export them first from aperture jinto a new folder. Is there any way to view

    How do I see my pictures that are in my aperture library in finder?  I would like I be able to select  photos in finder when I am making photo books online without having to export them first from aperture jinto a new folder. Is there any way to view and download my pictures directly from finder?

    SamanthaR22 wrote:
    How do I see my pictures that are in my aperture library in finder?  I would like I be able to select  photos in finder when I am making photo books online without having to export them first from aperture jinto a new folder. Is there any way to view and download my pictures directly from finder?  [Emphasis added.]
    The digitization of data has introduced a complexity to our interactions with it that we continue to struggle with.  "Picture" and "Photo" now mean different things in different contexts.  In this case (and in general) defining our terms clearly is the first step towards understanding what we are trying to do.  Understanding is the path that allows us to do it.
    All pedantic, but please stick with me here  .
    You record a set of instantaneous data with a camera.
    That data is processed by your camera and saved to a file.
    The file format is usually either RAW or JPG.
    You transfer those files to your computer, and you import them into the program Aperture (often in one operation).
    From each camera-file imported, Aperture creates a record in its database (called, imho unhelpfully, a Library) and an Image that you see in the Aperture Browser and Viewer.
    Aperture links the Image and the imported file.
    The imported file is called, within Aperture, an Original.
    Every Image has an Original.
    The Image is not the Original.  The Image is what you see in Aperture.
    The Original is a file that is stored on your computer.
    You can make changes to an Image.
    Aperture calls these changes Adjustments.
    Adjustments are saved to another file attached to the record in the database.  Let's call this file the Changes File.
    Aperture uses these two files attached to the record in the database to create the Image.
    Image = Original + Changes File.
    The Image is not a file.
    Because the Image is not a file, it cannot be shared with other programs.  It exists only inside of Aperture.
    In order to share an Image with another program, you must first create a file of the Image.
    You do this by exporting Images ("File ▹ Export ▹ Version" is the command in Aperture; should be, imho, "File ▹ Export ▹ Image").
    You may ask, "Why all the complexity?  Why doesn't Aperture save Images as files?"  The answer is simple:  Images can require less — and in many cases very very much less — storage space than files of Images.  Rather than save a full-size file for every Image, Aperture saves only instructions on how to make that full-size file.  The gain in storage efficiency is huge.  The trade-off is that although your Images are always available to be made into share-able files, you must create those files when needed (which you do by exporting selected Images).
    Here is your question reworded with more precise terms:
    SamanthaR22 might have written:
    How do I access Images in my Aperture Library in the Finder?  I would like I be able to select files in the Finder when I am making photo books online without having to create them by exporting Images from Aperture into a new Finder folder. Is there any way to view and download my Images directly from the Finder?
    No, there is not.  Images exist only in Aperture, and are not accessible for use in other programs.  You must create, for each Image in your Aperture Library, a new file outside of your Aperture Library in order to use it with another program.
    Aperture does allow you to create and save within your Library share-able files of your Images.  These files are called Previews.  You specify the file parameters in Aperture Preferences on the Previews tab.  These files are available to other programs via the OS X Media Browser.  These files are what you get when you drag selected Images out of the Aperture program and drop them on another program or on your desktop (which is part of the Finder).
    HTH.
    —Kirby.

Maybe you are looking for

  • Changing input without creative

    I want to change e.g. from Line-In to Auxiliary. Is it possible to do this via batch or VB or w/e, just outside of the creative program so I can do it with one click?

  • API QUESTION ON FOLDER COPY

    Folder1->Folder2->Family containg versionDoc.txt suppose i have a folder containing a versioned document stored as a family in the folder. When i call Folder1.copy() method then how the version documents will be store in the new copy of folder? as a

  • Removing human workflow tasks

    We have some Composites that involve human workflow tasks. There were some stale instances, and we have removed these composite instances. I still see the human workflow tasks from these instances in the worlist app. How is the easiest way to remove

  • Cannot see buddy in iChat, they see and hear me fine

    Using OS 10.5.7 iChat 4.0.8 Cannot see AIM user (AIM v6.8.14.6, who is on a PC) using iChat when I initiate the session. They see me fine; I only see myself on my iMac. I am running Perian 1.1.2 (not 1.1.3; I read the previous threads on this issue).

  • Reader XI for the Army

    Recently, the XI version of Adobe Reader has been getting pushed out to many workstations globally within Army DOIMs (Directorate of Information Management).  In our case, our application no longer works to allow us to digitally sign PDFs since XI go