How to scale objects in a layer while keeping each object in the same position

I have a map with symbols on it, placed precisely where they need to be. Is there a way to scale all of the objects in a layer or group so that they are larger, but without treating them as a layer that is stretched out to scale proportionately? Basically, how could I make each symbol larger as though each is being scaled from their centers?
I've tried to select a layer so that each object is selected, then transforming them (specifiying a scale percentage). As a result, the objects are enlarged, but this produces the same results as a normal click and drag from the corner registration point. Any ideas?

Yes, o.k., sort of. But you are not allowed to select individual objects that are parts of a group or groups. It's also quite all right to select, say, Same Fill Colour and Transform Each will work as long as the selection does not contain parts of groups.
To my way of thinking it would be better if it worked the other way, with anything selected with the Direct Selection tool, because sometimes you want to transform things even though they are parts of groups. But that's just the way the Illy cookie crumbles.

Similar Messages

  • Can you have different I cloud accounts on different devices. Like 4 phones with different numbers while keeping them all on the same I tunes account?

    Can you have different I cloud accounts on different devices. Like 4 phones with different numbers while keeping them all on the same I tunes account? My family shares one I tunes account but it would be nice to be able to have a different I cloud for family member. Is there a way to do this. Because the I cloud part on the setting on the phone and I pad are greyed out on the phones so you can't change the user.

    If they are greyed out then usually this means that the account is not validated on that device.  The Delete Account button at the bottom should still work and allow you to remove the current account form the iCloud Section of Settings.
    To answer your question, yes.  There are four places you can use an Apple ID on an iOS device:
    Settings > iCloud
    Settings > Messages
    Settings > FaceTime
    Settings > iTunes & App Stores
    The iTunes & App Stores is the only one you want to use a shared (family) Apple ID account.  The other three you will want a unique Apple ID for that person to prevent info merging or messages getting shared, etc.
    Using Different Apple IDs for iCloud and iTunes

  • How to sync phone to (new) computer and keep everything on it the same?

    I want to put music onto my iphone (the music is on my laptop, and on itunes).
    When I connect my iphone to my laptop it asks me to set it up as a new iPhone.
    I cannot risk losing any of my data on the phone (eg. contacts, messages, notes, apps, etc).
    The phone is connected to my icloud account, and everything is checked to be saved on icloud.
    On the computer there is no option to restore from the icloud account.
    Do I restore from the icloud account via my phone (and then will it sync the music onto my phone via computer?)? Or set it up as a new iphone via my laptop?
    The end result I need to have is for the phone to remain the same (apps, information, contacts, etc.), except with my music (that is on my laptop) playable in the music app.
    Thanks so much in advance for any help that could be given!

    This is assuming all the music on your  iPhone is from iTunes, if not, get iTunes Match.
    When your phone is connected to the computer, right click the icon of your phone under "devices" and choose "transfer purchases"
    This should pull everything you have from the app store/iTunes store on your computer
    Transfer pictures over manually using image capture, iPhoto, or from your autoplay option on a windows computer
    Once everything on your computer matches your phone, you can go ahead and sync
    Whenever you sync from the computer, remember that "syncing" pretty much means your phone will mimic the computer
    iCloud will back up your text messages too. Don't worry. If you want to go the iCloud route, your music on your computer would either need to be iTunes purchases or you need to be using iTunes match.
    To restore from an iCloud back up, you'd have to erase your phone by going to settings>general>reset>erase all content and settings and choose "restore from iCloud back up" when the phone prompts you. Note: this will restore your phone to factory and kick it into the set up assistant, so triple confirm that iCloud user in
    I'd recommend the easy route and just getting your computer's music coded over to iTunes purchases  (with iTunes match) if it isn't already. That way, you can just download it on your phone through the iTunes app.

  • How do I save as a pdf while in acrobat cloud?  the "save as" function only lets me save as a complete webpage or html

    how do I save as a pdf while in acrobat cloud?  the "save as" function only lets me save as a complete webpage or html

    What application are you using?
    Acrobat's Save As has 21 choices available.
    Be well...

  • How do I print to wifi printer while keeping data from cellular?

    How do I print to wifi printer while keeping data from cellular?

    If you print to a WiFi printer no Cellular Data will be used.

  • I disabled my iPhone 4 and while doing a restore via iTunes,  it is downloading and timing out so the download is not completing. any idea how to get past that?  I have tried many times and the same error keeps happening.

    I disabled my iPhone 4 and while doing a restore via iTunes,  it is downloading and timing out so the download is not completing. any idea how to get past that?  I have tried many times and the same error keeps happening.

    You need to force the phone into recovery mode, as described here, & restore it:
    http://support.apple.com/kb/ht1808
    Sorry, you've already lost all data on your phone.

  • HT4628 My macbook pro doesn't connect to the Wi-Fi at home while my iPad connects to the same Wi-Fi. When I try connecting my macbook to my iPhone's personal hotspot, the internet works but the issue is connecting my macbook to the Wi-Fi. Please help!!

    My macbook doesn't connect to the Wi-Fi at home while my iPad connects to the same Wi-Fi. When I try connecting my macbook to my iPhone's personal hotspot, the internet works but the issue is connecting my macbook to the Wi-Fi. Please help!!
    I don't understand how to fix this and I don't seem to understand where the problem is coming from.

    Let's try the simple approach first. Restart your router. Any change?

  • How do I get System.out.format to print out doubles with the same precision

    Using the System.out.format, how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println.
    For example, take the following code:
    double d = 12.48564734342343;       
    System.out.format("d as format: %f\n", d);
    System.out.println("d as   sout: " + d);Running the code, I get:
    <font face="courier">
    d as format: 12.485647
    d as sout: 12.48564734342343
    </font>
    The precision of d has been lost.
    I could bump up the precision as follows:
    double d = 12.48564734342343;
    System.out.format("d as format: %.14f\n", d);
    System.out.println("d as   sout: " + d);That appears to work, I get:
    <font face="courier">
    d as format: 12.48564734342343
    d as sout: 12.48564734342343
    </font>
    However, that solution fails if d has a different precision, say 12.48. In that case I get:
    <font face="courier">
    d as format: 12.48000000000000
    d as sout: 12.48
    </font>
    So how do I get System.out.format to print out doubles with the same precision as System.out.println?
    Thanks..

    YoungWinston wrote:
    Schmoe wrote:
    Interesting, but this is not what I am looking for...Your original question was "how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println", and you've been told how to do that (although the pattern given by sabre may be a bit excessive - you should only need 15 '#'s).The initial phrase from my question was "Using the System.out.format, how do I..".
    It's worth remembering that, unlike the Format hierarchy, 'format()' is NOT native to Java. It's a convenience implementation of the 'printf()' and 'sprintf()' methods provided in C, and first appeared in Java 1.5. Those methods were designed to produced fixed-format output; 'println()' was not.Perhaps it is the case that this can't be done.
    Furthermore, Double.toString(), which is what is used by println() does not produce the same format in all cases; format("%.14f\n", d) does. TrySystem.out.println(1.8236473845783d);
    System.out.println(1823647384.5783d);and you'll see what I mean.I am fine with that. It still displays all the precision.
    I am simply looking for a way to quickly print out multiple variables on a sysout while debugging. I want it as syntactically sweet as possible. System.out.println can be a pain when outputting multiple variables like the following:
    "System.out.println("a: " + a + "; b:" + b + "; c: " + c);"
    For some reason, my fingers always typo the plus key.
    I was hoping that System.out.format would be easier,along the lines of:
    "System.out.format("a: %f, b: %f, c: %f\n", a, b, c);"
    From a syntactical sweetness point of view, it is easier. However, the %f on doubles truncates the precision. I figured there must be a way to get the full precision.
    DecimalFormat is syntactically sour for this purpose, as you need to instantiate the DecimalFormat.
    fwiw I have enjoyed reading the suggestions in this thread...

  • TS3280 How can i enable both paired bluetooth and ios keyboard input at the same time?

    How can i enable both paired bluetooth and ios keyboard input at the same time?
    This is needed for the app im working on. Need some user input via keypad as well as scanner input via a paired bluetooth scanner.

    You probably should not be using a keyboard bluetooth profile for a scanner, I am not a developer for apple so do not know the location for you to find out the correct profile you should be using for an input device that is not a keyboard. Sorry,
    I am sure if you navigate the apple developer site you will probaly finmd what you're looking for.
    https://developer.apple.com

  • We had one family apple id. I want to keep all devices on the same apple id for itunes but separate ones for everything else.  How do I change the others now.  We have 3 iphones and an ipad.

    We had one family apple id.  I want to keep all devices on the same apple id for itunes but separate for everything else on the cloud. How can I change the other apple ids now? We have 3 iphones and an ipad.

    Hi, thank you for this post.  I hope you might be able to help me too? 
    I am relatively new to apple (have an iPad) and having been a PC user for years I was pleasantly surprised with the apple experience and am now trying to work out the best set up for me, my husband and young son as I am buying them both of them apple products this Christmas.  New Mac laptop/ ipad for hubby and then an ipod touch for my son oh and a new mac laptop for me. We are also thinking of moving from Blackberries to iPhones. Yes we seem to be hooked! but i am unsure about the home family set up and how to replace my PC network that I run off an 8TB server.
    In reading the forums I keep seeing people talk about problems they have with two apple IDs and trying to merge them. I have also heard about a family ID allowing us to share apps legally.  I am really nervous of setting us up wrong and then having problems later and hence i am now looking for some advice on how to share as much as we can legally but also make usage practical and not invading each others privacy. thoughts so far:
    Music - I think we are happy to share the same music and access using one ID (we currently don't buy much music from apple but have lots of CDs we share).
    Photos - It would be nice to share photos - as long as my son or husband cannot accidentally delete photos of mine (which is my biggest concern). I currently load all camera photos onto my 8TB storage box as the network owner and my husband has full access to copy any photo to his laptop but can never delete the original copies by accident.
    Apps - If possible i would like us to share these but they are cheap enough these days to separate if really needed. Would be good to share licence for pages etc though
    cloud, contacts, facetime, email -  this is what is making me consider separate IDs or learning how to have multiple users in one apple ID - I do not want to have to share synced contacts with my husband. I have near 300 contacts now through work etc and he will not want them plus i will not want his or him being able to delete mine by mistake. and then for email and facetime, well I want to give him his privacy so I do not receive his messages etc. especially now that we are considering switching to iPhones
    Then last but not least, i don't know the best solution for my son. he is only 7 years old so even though I don't want to pay for things again I don't want him being able to download "just any" app from the purchased icon in Appstore. Also, is there a child friendly setting to prevent him from viewing inappropriate content on the internet?
    Appreciate I have asked a lot of questions here but I am looking for any genuine advice out there. Thank you or other potential advisers in advance.

  • How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?

    With Acrobat 6.0 I was able to copy a stamp in the same position (I mean "exactly" the same one) of different pages just by using the "copy/past" tool.
    Now I am using Acrobat XI and it seems like it is not possible anymore: I am copying a stamp and I am trying to past it in anoter page, but it appears in the center of the page (or wherever it wants to...).
    Does anyone have a solution?
    Thanks in advance.

    Thank you very much. I'll be waiting for you message.
    Messaggio originale----
    Da: [email protected]
    Data: 26/01/2015 17.56
    A: "Umberto Gangi"<[email protected]>
    Ogg:  How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        created by Gilad D (try67) in Creating, Editing &amp; Exporting PDFs - View the full discussion
    Well, I was in the same situation so I've developed a tool that allows one to do it. I will send you some additional information about it in a private message.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7132586#7132586 and clicking ‘Correct’ below the answer
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7132586#7132586
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, &amp; "Stop Following"
         Start a new discussion in Creating, Editing &amp; Exporting PDFs by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • How do i have an ipod touch and an ipad sync to the same pc?

    how do i have an ipad and an ipod touch sync on the same computer but they have different apps on them?
    i knopw it is possible but i just dont no how to do it. as my ipod touch is only 8gb and my ipad is 16gb so everything off the ipad is making the ipod slow as it has only 8gb memory,
    thanks,

    When you connect each device and select them on the left-hand side of your computer's iTunes, then on the right-hand side you can select what to sync to that device e.g. which apps via the Apps tab, music via the Music tab etc. Those selections for each device should be remembered each time you re-connect the device, so you shouldn't have to go through the selection process each time (unless you want to change what you want to sync).

  • How to integrate bing map for including or displaying multiple locations at the same time

    how to integrate bing map for including or displaying multiple locations at the same time

    Have you aware of the geolocation field that's been introduced with SharePoint 2013?  You can store location data within a list and then integrate this within Bing.  The second tutorial on this Bing team blog will show it well.
    https://www.bing.com/blogs/site_blogs/b/maps/archive/2013/03/26/connecting-a-sharepoint-list-to-bing-maps.aspx
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How do I share photos and music between different user accounts on the same macbook

    How do I share photos and music between different user accounts on the same Macbook? i.e. I want all to be able to access family photos when logged into their respective accounts. Same goes for the iTunes library. Hope this is possible...
    Thanks!

    To give other users read-only access to your iTunes library, use the Sharing features of iTunes. Sharing works over the local network as well as on the same computer. See the built-in help for details.
    To give others selective access to your iPhoto library, you have the option of using iCloud Photo Sharing, if the privacy implications don't bother you. The images will be stored temporarily on Apple servers.
    If you want to give full read/write access to more than one user, see the support articles linked below.
    iTunes: How to share music between different accounts on a single computer
    iPhoto: Sharing libraries among multiple users
    There is a way to share the library without moving it to a secondary volume. If you really need to do that, ask for instructions.

  • HT204053 How do I have my  wife's iphone 4s upload pics to the same icloud used for my ipad and iphone?  Phone does not allow changing icloud ID once established.

    How do I have my wife's iphone 4s upload pics to the same icloud I use for with my 4s and ipad?  Can seem to change her icloud ID to match mine.

    I can tell you how to do this but first wanted to be sure that's what you want to do.  You would then be sharing the same iCloud account and any synced data (contacts, calendars, etc.) would then be merged and the merge data would appear on her phone and your iPad (i.e., you'll end up with each other's contacts on your phone). You would also both be backing up your devices to the same account, sharing the 5GB of free storage (assuming you're both backing up to iCloud).
    There's an alternative setup that would allow her to set up your iCloud account on her phone as her primary account and just turn on photo stream in that account (allowing your to share you photo stream), then set up a secondary iCloud account on her phone that would sync her Mail, Notes, Contacts, Calendars and Reminders.  She would still have to back up her phone to your account, as well as syncing Safari, Documents and Find My iPhone (all of which can only be done in the primary account).  Also, her mail would be fetch, not push as push email is only supported in the primary account.
    I suppose a third option is to leave things as they are and share you photos with each other using shared photo streams.
    Let me know what you want to do and I'll give you the steps.

Maybe you are looking for

  • Purchase order history not displayed in correct sequence

    Hi all, We are on SRM 7.1 ECS. The issue we are facing is that the follow on documents for the PO i.e. confirmatin and Invoice are not displayed in the correct sequence i.e. the sequence in which the documents are displayed is : Invoice>confirmation>

  • 'Internet Connect' keeps coming up

    My internet was down all day yesterday (SBC-Yahoo DSL). Today it is back up. All morning I continue to get the 'Internet Connect' box that comes up and asks if I would like to keep the connection. My 'Location' is set to 'Automatic' and the 'Show' is

  • How to remove a single Archive file

    I have an archive file from April 21st, 2009 in my flash recovery area. This archive file is all by itself and i do not know how to remove it without just deleting the file. I have completed, successfully, nightly backups which removes older backups

  • Safari 1.3.2 Opening My Yahoo/Apple Support

    Imac G5 with OSX 10.3.9 & Imac G4 with 10.4.4 on Airport The G5 is used my DJ business & G4 my office machine Just recently I've had poblems logging into both My Yahoo mail & Apple support with my passwords on the G5. I believe both are set up the sa

  • BSP F4 Help..

    Hi ,   i am facing a problem to use f4 help. the scenario is ,   i have a table called 'ZTABLE' which is having a field called 'Group', the value of this field is 'X' 'Y' 'Z'.   in my view i have an input field called 'Group_Id'. here is my proble be