Resizing objects and groups in CS4 - different from CS3

Hi all,
In CS3 I used to be able to resize objects or groups of objects by just using the solid select tool and just grabbing a corner or side of the object and resizing it.  That doesn't work in CS4.  Doing the same thing only moves the image around.  I have to actually use the scale pop-up.
I can still do the same thing an anchor or path at a time with the outline select tool.
I'm sure there's a way to do this in CS4 and there's probably a switch buried deep in some menu to allow this, but darned if I can figure it out.

I'm still on CS3 so I don't know for sure, but I don't think so.  It's always been a pretty easy key shortcut to hit by accident though. 

Similar Messages

  • Account assignment for group asset is different from that in asset

    Dear experts,
    I have creted one main asset . and i have created group asset. and my main asset class and group asset class are both are different.If i continue that error assets are shoud be craeted .but the depreciation key and usefull life and ordinary depreciation will going and it's showing grey.
    My question at the time of assighning the group asset for the particular assets the below error is comming.
    Account assignment for group asset is different from that in asset
    Message no. AA810
    Diagnosis
    The account allocation 14000 of the group asset 140000001 0 is different from account allocation 1000 of the asset.
    System Response
    This error needs to be corrected for balance sheet valuation (usually determined in depreciation area 01). For all other depreciation areas, this is only a warning you should check.
    Procedure
    Check your entry. When an individual asset has a different account assignment than the group asset, it is not possible to reconcile the individual asset to the group asset in reporting by means of accounts.
    kindly help on this issue
    regards
    venkataswamy

    Hi sudhakar
    Thanks for your reply
    1) for example i have buliding asset class and i have one group asset class.under the building asset account determination i have assighned the gl a/c for both b/s and book deprecitaion
    In groups asset class also i have done same things. i have craeted asset under building asset class and created one asset under group assets.
    then assighned the group asset to main assets. the error is comming like this Account assignment for group asset is different from that in asset
    I have serched in sdn forum and service .sap.com . they are saying you can use same gl a/c for both asset class.for depreciation .i have tried this scenario. still i am getting the same error and same problem.
    The most important thing is we are working on ECC 6 versions
    sap note 76186.
    Kindly help me
    Regards
    venkataswamy
    Edited by: venkataswamy bathini on Jul 6, 2009 9:22 AM

  • Wat is work flow and how is it different from bpm

    wat is work flow and how is it different from bpm

    Hi, please put a bit more effort in your quest for knowledge. This link:
    <a href="https://wiki.sdn.sap.com/wiki/display/HOME/BusinessProcessManagement">https://wiki.sdn.sap.com/wiki/display/HOME/BusinessProcessManagement</a>
    is accessible from this forum and has everything you need to know. I suggest you first read everything there is to find there.
    Kind regards, Rob Dielemans
    Message was edited by:
            Rob Dielemans
    Rob Dielemans

  • What are Crypto Cards, and what are they different from Java Cards?

    Hi,
    I just heard the name 'Crypto Card'. I thought Java Card is the only standard for smart card. Could anyone tell me what are Crypto Cards, and what are they different from Java Cards? Thanks in advance.
    Joey

    Probably any card that offers cryptographic capabilities (crypto coprocessor) could be called "Crypo Card", but likely the term was referred to cards offering a pkcs#11 interface.
    Pkcs#11 is the standard for accessing crypto devices, like tokens, cards, or accelerators. Such a device can be easily accessed for example from your browser to perform cryptographic and digital signature operations.
    A Javacard can operate as a pkcs#11 device in you install on it an applet dealing with the pkcs#11 requests.

  • CS4 upgrade from CS3

    Hallo,
    Hope this is the right place to post this.
    I have Encore CS3 installed now. I am not sure if it is worth for me to upgrade to CS4.
    I mostly use the flash export to web from encore. Will I get much more in this function in CS4 compared to CS3?
    I tried to install the trial, but apparently only Premiere works as trial :-(
    Thanks in advance.
    /Ulf

    >I mostly use the flash export to web from encore. Will I get much more in this function in CS4 compared to CS3
    It all depends on what you mean by "much" more, but yes, I think so.
    You get a much larger selection of output settings for Flash, including several widescreen resolutions, and you can export streaming video for use if you have a Flash Media Server (Encore CS3 can only export progressive download). You can also choose to export F4V (H.264 for for higher quality video, but requiring Flash Player 10 - Encore CS3 only exports FLV) It's also easier to set a link to a web page than it was in Encore CS3.
    If these features aren't very important to you, then little else has changed in Encore CS4 Flash export.

  • How to move and resize a whole layer with different objects and groups

    Ok, I am a bit confused here.Things are not working like I thought they would and the documentation has confused me more.
    currently in my code I have
    var embedLeftSleeve = new File(folderPath+"/LeftSleeve.ai");
    var leftSleevePlaced = doc.groupItems.createFromFile(embedLeftSleeve);
                            leftSleevePlaced.top = currentHeight;
                            leftSleevePlaced.left = 0;
    I am importing an AI file and trying to put it into its own layer. I want it (the imported ai file) into into it's own layer. And I would like the layer to be setup the exact way it was in the original. But, after the import it seems to group non-grouped items, some of the objects are not showing the same way they did (like a shape with a gradient fill in it).
    And finally, I want to scale all of the items in that layer as if I selected the layerer in illustrator and scaled it by hand (but scripting it to a set scale).
    Can someone please help me. I am digging deep into the documentations and looking all over online to find what I want with little luck.
    John

    Any chance of a sample of your art? I had a quick and my test art does NOT break up or look any different.
    I've been trying to build myself a set of library functions so my methods may appear a little odd.
    This was fine for me…
    #target illustrator
    var sleveArt = new File ('~/Desktop/Untitled-2.ai');
    var artName = sleveArt.name;
    var docRef = app.activeDocument;
    with (docRef) {
    pageOrigin = [0,0];
    rulerOrigin = [0,0];
    var docHeight = height;
    myLayer = layers.add();
    myLayer.name = artName;
    myGroup = myLayer.groupItems.createFromFile(sleveArt);
    myGroup.top = docHeight;
    myGroup.left = 0;
    resizeObject(myGroup, 140, 140, 100, 'BL');
    selection = null;
    function resizeObject(obj, sX, sY, clw, tr) {
    if (verifyObject(obj)) {
    var transAbt = getAnchor(tr);
    obj.resize(sX, sY, true, true, true, true, clw, transAbt);
    return true;
    function verifyObject(obj) {
    if (obj.typename == 'CompoundPathItem'||'GraphItem' || 'GroupItem' || 'PathItem' || 'PlacedItem' || 'PluginItem' || 'RasterItem' || 'SymbolItem' || 'TextFrame') return true;
    else return false;
    function getAnchor(x) {
    var thisTrans;
    switch(x) {
    case 'B' : thisTrans = Transformation.BOTTOM; break;
    case 'BL' : thisTrans = Transformation.BOTTOMLEFT; break;
    case 'BR' : thisTrans = Transformation.BOTTOMRIGHT; break;
    case 'C' : thisTrans = Transformation.CENTER; break;
    case 'DO' : thisTrans = Transformation.DOCUMENTORIGIN; break;
    case 'L' : thisTrans = Transformation.LEFT; break;
    case 'R' : thisTrans = Transformation.RIGHT; break;
    case 'T' : thisTrans = Transformation.TOP; break;
    case 'TL' : thisTrans = Transformation.TOPLEFT; break;
    case 'TR' : thisTrans = Transformation.TOPRIGHT; break;
    return thisTrans;

  • What is Object based Programming Language and How it is different from OOP

    I want to know the basic difference between these two techs.

    This forum doesn't work like the way you are thinking. For the basic questions, you better search it on the net or refer some book.

  • Render tab thumbnail (and output) is very different from the viewer in main color tab.

    I'm having a really strange issue with one of my projects. I can't seem to output my footage correctly as seen in the "color" tab in speedgrade. The result is much more blue in hue.
    Color tab main viewer:
    Render tab thumbnail:
    As you can see the thumbnail is much colder than the main color tab viewer, and the final output (both DPX and proRes4444) is just like the thumbnail.
    Has anyone here experienced this issue? Is it a known bug? Workaround?
    I should mention that I'm working with several gradinglayers. 5 to be exact, doing different adjustments. Does this potential bug have to do with that?
    Thank you,
    Joan

    For starters, it would be good to know which version (especially a build number) you're using of SpeedGrade. You're clearly running in "native" mode to render directly from Sg but could be doing that in anything from the ol' Iridas through CS6 SpeedGrade to a CC version. There are some few changes that came in along the line. Subtle mostly. But useful to know.
    It would also be handy to know the codec/s you're grading, and any out-board devices you might have in the video chain from AJA, Kona, MB, whoever ...
    I've had gamma shifts at times that were a PAIN to nail down, but I've not had color/hue shifts so much. At least, while there was a slight change in color/hue of a render at the wrong gamma, once I'd corrected the export settings to get the correct gamma the color/hue problems disappeared. There is a very experienced user of Sg for years who might be good at helping ... if Joost van der Hoeven is available.
    Neil

  • Objects and text cannot be moved from top left

    I just merged my website from some other drag and drop editor to DW.
    I am determined to learn how to work everything (Or at least enough to get by).
    But I have hit a snag along my learning path, and am hoping it is something simple.
    I am trying to add text, and graphics. And it would seem I cannot simply drag it around the page like in other designers? Because it defaults to the top left of my page, and cannot be moved by dragging. On the images, when I edit the tag, I was able to change the virtical and horizontal attributes and place the image where I wanted it. but text I add has no such option.
    I would post you the code, but I don't know which piece to post.
    Forgive me, I am very novice, having no experience with html, and less than a week experience with DW.
    But I learn quickly, and with your patience, even quicker.
    Thank you so much!

    You need to get a grasp of the basics. Dragging and dropping into DW will not place things where you want.  I just noticed that ZaBeth posted this in another post, start here, then find some other beginner CSS and HTML tutorials.
    Have a look at David Powers's CSS book. It is very accessible and easy to get into: http://gettingstartedwithcss.com/ (palgerized from ZaBeth69)
    And keep reading this board, there are alot of new comers that post very basic questions, so you get some good information here.
    Gary

  • BP currency and transaction currency is different from Local currency.

    Hi,
    I have this confusing scenario here and really appreciate some share of ideas.
    I have a scenario here.
    Local currency + system currency = AUD
    There is some New Zealand (NZ) customers (eg: C00001), set up with multicurrency, because we process transactions with them in USD.
    We hedge USD and NZ currencies.
    Let's say today is 29/9/2008 and I have the following rate:
    Spot rate 1 USD = 1.207 AUD
    Spot rate 1 NZD = 0.82293 AUD
    Forward rate 1 USD = 1.10 AUD
    Forward rate 1 NZD = 0.9 AUD
    process NZ customers in USD
    When a sales transactions is processed against C00001 in USD, forward rate 1.10 is used, SAP recorded the transactions in USD and AUD.
    To see how much NZD it is, forward rate 0.9 should be used.
    (ii) process NZ customers in NZ
    Spot rate 0.82293 is used.
    Now, we need to provide a Profit and Loss in NZD to NZ Tax Department for those sales transactions to New Zealand customers.
    This is what I have considered but stuck.
    (a) I cannot make use of P & L statement - revalutaion function,  because there is a combination of rate (forward and spot) in the same day. 
    (b) To manually enter the 'Fixed Exchange Rate' in Journal Entry and then use  "Refer to rates in Journal Entry" when running P & L statement - revaluation funciton won't work, because the volume of transactions each day is massive.
    (c) I have considered setting up a seperate database with local currecy = NZ, system currency = AUD and then processed all NZ transactions here.
    That will resolve the issue for reporting to NZ Tax Department.
    However, I will then again be stuck with the problem to convert from NZ to AUD in order to produce AUD P & L because there is combination of forward rate and spot rate being used.   The reason for producing AUD P & L is so that we can consolidate the AUD database and NZD database.
    Appreciate some help here.
    Kind regards,
    Shwu Hua

    I am afraid you may have to go through SDK programming in order to solve this problem.  Even the current available add-on may not have solution yet.
    You are talking about two exchange rates in one day.  That is not easy to achieve.  In my opinion, all rates are not exact numbers per se. You may just use the middle rate to post all your transactions.  The others should be Exchange Rate Gain/Loss.  That will be the easiest work around before any SDK work done.
    Thanks,
    Gordon

  • What is JHeadstart and how it is different from Jdeveloper

    Hello everbody
    I am new to JHeadstart but iam quite aquinted with Jdeveloper 10.1.3, so can any body please tell how JHeadstart is better than Jdeveloper and what extra thing can we do with it

    JHeadstart is a plug in to use with JDeveloper. If you go to the JHeadstart product center you can read all about its features and benefits. http://www.oracle.com/technology/consulting/9iServices/JHeadstart.html
    Good luck!

  • CS5 Indents Different From CS3? Help Please

    I'm completely stumped.
    I recently switched over from dreamweaver cs3 to cs5 because it had been running slow. As soon as I made the switch I noticed that in design view EVERYTHING is indented weird. I know this doesn't explain much, but please see the images below. As soon as I publish and check the page live, the indents vanish. I have been searching for a way (maybe in preferences) to remove the weird indents from the design view in cs5 for the sole fact that it irritates me. If it helps, each item is seperated by <dd>. Anyone know what is going on here?
    CS3 View
    http://i42.tinypic.com/xq9a14.png
    CS5 Views
    http://i41.tinypic.com/i1ljyg.png
    http://i41.tinypic.com/1494aqf.png
    Thanks so much!
    Brian

    Unfortunately screenshots don't tell us much other than there's apparently a problem.
    Hard to comment without seeing the code.

  • Why do my Organizer & Editor pages look different from those in books and the brochure that came?

    Why do my Organizer and Editor screens look different from the ones in books and in the brochure that came with installation cd?

    Which version of the photoshop elements are you using.
    You can get the help files of the latest version of photoshop elements 11 from the following link:
    http://helpx.adobe.com/photoshop-elements.html
    Thanks
    Harshit yadav

  • My selection tool stopped working, it won't let me resize objects. Yes, show bounding box is on. Please help

    The selection tool won't let me resize objects. I have read different forums where they all say I just have to show bounding box, but not even this works. I have been using Illustrator for a long time and never had this problem before. Please help me fix this

    kimoen,
    In addition to what Larry said, the Adobe team are working on the Live Rectangle bug which is limited to the MAC versions starting with 10.7 and 10.8, but not 10.9 (Mavericks).
    So a switch to Mavericks with a reinstallation might be the way to solve it here and now, if that is an option, in which case you should reinstall after upgrading the OS.
    But you may get round it in a couple of ways while using your present OS.
    In each case, it is possible to Expand the Live Rectangles to get normal old fashioned rectangles, or to Pathfinder>Unite, or to use the Scale Tool.
    A more permanent way round that is to create normal old fashioned rectangles, after running the free script created by Pawel, see this thread with download link:
    https://forums.adobe.com/thread/1587587

  • Tidying up objects and listeners (basic)

    A newbie wannabe-AS3 question. My difficulty is (I think)
    removing unwanted objects and listeners as I move from one mode to
    another in my project ... altho my difficulty behind that is
    probably inadequate understanding of Display List basics.
    In one 'mode' of my project I have generated the following
    structure:
    1.... Sprite ("reviewPage");
    2a......... Some graphics on reviewPage
    2b......... TextField ("commentBox");
    2c......... A number of Sprites ("displayCard_1",
    "displayCard_2", ... "displayCard_n");
    3a............. Some graphics on each displayCard;
    3b............. Several EventListeners on each displayCard
    (e.g. displayCard.addEventListener(MouseEvent.CLICK,
    gotoReviseCardMode, false, 0, true))
    3c............. TextField ("questionBox_1" ...
    "questionBox_n");
    3d............. TextField ("equationBox_1" ...
    "equationBox_n");
    3e............. TextField ("answerBox_1" ... "answerBox_n").
    One of the eventListeners attached to each displayCard Sprite
    calls a function intended to tidy-up the unwanted objects and
    eventListeners and then shift the activity to a different mode,
    defined by another function.
    There is only one child on the stage. I assume this will be
    my reviewPage with all the objects it holds. However when I trace
    it, and it's name, I get "root1 [object MainTimeline]". Using
    stage.removeChildAt(0) removes all the visible objects from the
    Display List and leaves me with no children on the stage.
    I've tried to 'explore' my structure by writing a small
    function to identify each object/container and the hierarchy of
    objects attached to them ... but have as yet been spectacularly
    unsuccessful in that effort and overwhelmed with error messages.
    I have a couple of concerns / questions:
    1. Do I remove all the eventListeners when I
    stage.removeChildAt(0)?
    2. Do I still need to remove these objects from memory? If
    so, how? How can I explore what listeners and objects are using
    memory after I've attempted a clean-up like this?
    3. How do I remove just one of the TextField objects, say
    answerBox_212, or one of the eventListeners attached to one of the
    "displayCard" Sprites, from the Display List and/or from memory?
    Any guidance would be greatly appreciated.
    Cheers
    Dougal

    Hi John,
    Many thanks for your reply, where can I find out what the default setting is? In the style sheet, margin is set to 0. Do you mean the  <p> </p> on the first line of text? The code for that section is below, do I not need the <p> </p>?
    <h6>Heding 1</h6>
        <p>An image placeholder was used in this layout in the .header where you'll likely want to place  a logo. It is recommended that you remove the placeholder and replace it with your own linked logo. </p>
        <h3>Logo Replacement</h3>
        <p> Be aware that if you use the Property inspector to navigate to your logo image using the SRC field (instead of removing and replacing the placeholder), you should remove the inline background and display properties. These inline styles are only used to make the logo placeholder show up in browsers for demonstration purposes. </p>
        <p>To remove the inline styles, make sure your CSS Styles panel is set to Current. Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties. (Of course, you can always go directly into the code and delete the inline styles from the image or placeholder there.)</p>
    Many thanks for your help.
    Regards
    Nick

Maybe you are looking for

  • Firefox won't open on WIndows vista & it has worked for years.

    Used task manager, closed firefox.exe & restarted, worked twice & I disabled Norton Toolbar. Now firefox won't open. I uninstalled firefox and redownloaded it & still won't open. Search for the Profile Manager doesn't show anything. I did download an

  • Display of chinese character in AL11

    Hi, When viewing the file in application server with some chinese character the font display appears to be different.Is there any solution to avoid the different display of character when asian character appears in the application server. Regards, Ma

  • IPhoto can't find pics - asks for each one individually

    I imported 750 pics from a CD, but didn't have the iPhoto "copy files to iPhoto library" turned on. When I went back to edit the photo's after I had ejected the disk, iPhoto couldn't find the files. I realized what I had done, so I remounted the CD,

  • Only allowed 1 simple list of web portal?

    Hi all, I have 4 simple lists as user prompts for a Service request. From the the web portal all is fine and seperate. When i log the same request from the console the 4 list are now 1 big list. Any way to seperate these out for the console other tha

  • BLOB Insert into SQL Server2000

    Dear All, I have problem with  insert the BLOB object into MSSQLServer 2000 in WebDynpro. Please help me how to solve it? Best Regards, Mukesh.