Problem resizing objects

I really think I may have lost it on this one. I am having
problems resizing any object inside of illustrator. Normally when i
use my selection tool, There is a box around the whole object that
I can click and drag to resize. It's not there, and consequently, I
can resize anything without going to
Object>Transform> Scale... and that's just too much.
Is there a setting I somehow messed with that did this? I am
completely lost. I dont even have a clue what is goin on anymore.
Any help would be much appreciated!

You may have hit CTRL+SHIFT+B which hides the bounding box
around objects. so hit CTRL+SHIFT+B again to see if that fixes the
issue. You can also find it view/ under "Show
Rulers"
Sorry Dreamweaverites for replying to an Illustrator question
in a Dreamweaver forum.
I had to help a brother out. You Know,
Shane

Similar Messages

  • 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

  • Problem resizing Viewport with WebDeveloper in WinXP and Vista

    I'm having a problem resizing the Viewport with WebDeveloper running in FF10 & FF11 on my WinXP and Vista machines. Quite simply, I'm trying to resize the Viewport to 320x420pixels (to represent an iPhone) but can't get it to go below 510px.
    There's no problem in FF1 on Win7. I have contacted Chris Pederick, the developer of WebDeveloper, and he says his code is tha same in all cases, and pretty basic JS. So possibly the fault lies in the browser. I've not noticed this problem in earlier versions of FF (i.e around 3.5)

    Try to hide all toolbars or open a second window and hide them there to see if that allows to make the window smaller.

  • 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. 

  • I'm having problems Sorting Objects

    Hello everyone!
    I'm having problems sorting objects. Here is what I got at moment... I'm trying using "Collections.sort" with objects, and I think my problem is there but I don't know how to do in other way the sorting.
    Some help will be appreciated! Thank you!
    Movie.java
    import java.util.ArrayList;
    public class Movie
             public int itemNum;
             private String title;
             public String director;
             public Movie()
                 itemNum = -1;
                 title = "";
                 director = "";
             public Movie(int itemNum, String title, String director)
                this.itemNum = itemNum;
                this.title = title;
                this.director = director;
             public int getItemNum()
                 return itemNum;
             public String getTitle()
                 return title;
             public String getDirector()
                 return director;
               public void setItemNum(int a)
                  itemNum = a;
             public void setTitle(String b)
                 title = b;
             public void setDirector(String c)
                 director = c;
             public String toString()
                   String MovieInfo = title + "\t" + itemNum + "\t" + director ;
                   return MovieInfo;
    }MovieCollection.java
    import java.util.*;
    public class MovieCollection
        private ArrayList Movies;
         public MovieCollection()
                Movies = new ArrayList();
         public ArrayList getMovies()
                return Movies;
         public void add(Movie aMovie)
                Movies.add(aMovie);
    }MovieCollectionMenu.java
    import java.io.*;
    import java.util.*;
    public class MovieCollectionMenu
              private MovieCollection model;
              public MovieCollectionMenu ()
                   model = new MovieCollection();
            public MovieCollection getModel()
                return model;
             private static Scanner Insert = new Scanner(System.in);
              public static void main (String[] args)
                  MovieCollectionMenu menu = new MovieCollectionMenu();
                   while(true)
                 System.out.println("Movies Menu");
                 System.out.println("");     
                 System.out.println("1 - Add Movie");
                 System.out.println("2 - List Movies");
                 System.out.println("3 - Sort Movies");
                 System.out.println("0 - Exit");
                    System.out.print("\nSelect your option: ");
                 int option = Insert.nextInt();
                      switch(option)
                           case 0:   System.exit(0);break;
                         case 1:   menu.addMovie(); break;
                         case 2:   menu.listMovies(); break;
                         case 3:   menu.sortMovie(); break;
                         default:  System.out.println("Invalid Selection!");
                      System.out.println("\n");
              private void addMovie()
                   Movie aMovie = new Movie();
                System.out.print("\nEnter movie name: ");
                   aMovie.setTitle(Insert.next());
                 System.out.print("Enter number of copies: ");
                aMovie.setItemNum(Insert.nextInt());
                System.out.print("Enter director name: ");
                aMovie.setDirector(Insert.next());
                model.add(aMovie);
            private void listMovies()
                   ArrayList Movies = model.getMovies();
                   for (int i=0; i<Movies.size(); i++)
                        System.out.println(Movies.get(i).toString());
              private void sortMovie()
                 ArrayList Movies = model.getMovies();
                 Collections.sort(Movies);
    }

    JBStonehenge, Melanie_Green, paulcw thank u so much for ur support!!!!
    I did many changes in my code, and I think in a simple way... I can sort the strings, but I'm having problems to sort the integers from the array I created..
    I read a lot of sorting and this was the best I could do, please can you change my code to sort the integers?
    Thank u people!
    Here it is my code:
    import java.io.*;
    import java.util.*;
    public class MyMovies {
         public static void main(String[] args) {
              MyMovies Movies = new MyMovies();
              Movies.runEverything();
         private static final int MAX_SIZE = 100;
         private static int numberOfMovies = 0;
         private static Movie[] array = new Movie[MAX_SIZE];
         public void runEverything(){
              Scanner input = new Scanner(System.in);
              while (true) {
                   Menu();
                   int option;
                   try {
                        option = Integer.parseInt(input.nextLine());
                   } catch (NumberFormatException e) {
                        System.out.println("You must enter a number!");
                        continue;
    switch (option) {
                   case 1:
                        addMovie(input);
                        System.out.println("\nThis movie was added:");
                        printMovie(numberOfMovies - 1);
                        break;               
                   case 2:
                        sortMoviesByTitle();
                        break;
                   case 3:
                        sortMoviesByYear();
                        break;
                   case 4:
                        sortMoviesByDirector();
                        break;
                   case 5:
                        printAllMovies();
                        break;
                   case 6:
                        System.out.println("You logout with success!");
                        input.close();
                        System.exit(0);
                        break;
              default:
                        System.out.println("You entered a wrong option! Please try again.");
                        break;
         private static void Menu() {
              System.out.println("\n1 - Add a movie");
              System.out.println("2 - Sort movies by name");
              System.out.println("3 - Sort movies by year");
              System.out.println("4 - Sort movies by director");
              System.out.println("5 - Display movies");
              System.out.println("6 - Quit");
              System.out.print("\nPlease enter an option:");
              private static void printMovie(int i) {
              if (i < numberOfMovies) {
                   System.out.println("\"" + array.getTitle() + "\", " + array[i].getYear() + ", \"" + array[i].getDirector() + "\"");
         private void printAllMovies() {
              for (int i = 0; i < numberOfMovies; i++) {
                   System.out.print(String.valueOf(i+1) + "-");
                   printMovie(i);
         private static void addMovie(Scanner input) {
              System.out.print("Enter movie:");
              String title = input.nextLine();
              int year = 0;
              while (true) {
                   try {
                        System.out.print("Enter the year of movie:");
                        year = Integer.parseInt(input.nextLine());
                        break;
                   } catch (NumberFormatException e) {
                        System.out.println("You must enter an integer!");
                        continue;
              System.out.print("Please enter the director:");
              String director = input.nextLine();
              array[numberOfMovies] = new Movie(title, year, director);
              numberOfMovies++;
         private void sortMoviesByTitle(){
         boolean swapped = true;
              int i = 0;
              String tempTitle, tempDirector;
              int tempYear;
              while (swapped) {
                   swapped = false;
                   i++;
                   for (int j = 0; j < numberOfMovies - i; j++) {
                        if ( array[j].getTitle().compareToIgnoreCase(array[j + 1].getTitle()) > 0) {   
                             tempTitle = array[j].getTitle();
                             tempYear = array[j].getYear();
                             tempDirector = array[j].getDirector();
                             array[j].setTitle(array[j + 1].getTitle());
                             array[j].setYear(array[j + 1].getYear());
                             array[j].setDirector(array[j + 1].getDirector());
                             array[j + 1].setTitle(tempTitle);
                             array[j + 1].setYear(tempYear);
                             array[j + 1].setDirector(tempDirector);
                             swapped = true;
              System.out.println("The movies are sorted by title.");
         private void sortMoviesByYear(){
         boolean swapped = true;
              int i = 0;
              String tempTitle, tempDirector;
              int tempYear;
              while (swapped) {
                   swapped = false;
                   i++;
                   for (int j = 0; j < numberOfMovies - i; j++) {
                        if ( array[j].getYear().compareToIgnoreCase(array[j + 1].getYear()) > 0) {   
                             tempTitle = array[j].getTitle();
                             tempYear = array[j].getYear();
                             tempDirector = array[j].getDirector();
                             array[j].setTitle(array[j + 1].getTitle());
                             array[j].setYear(array[j + 1].getYear());
                             array[j].setDirector(array[j + 1].getDirector());
                             array[j + 1].setTitle(tempTitle);
                             array[j + 1].setYear(tempYear);
                             array[j + 1].setDirector(tempDirector);
                             swapped = true;
              System.out.println("The movies are sorted by year.");
         private void sortMoviesByDirector(){
         boolean swapped = true;
              int i = 0;
              String tempTitle, tempDirector;
              int tempYear;
              while (swapped) {
                   swapped = false;
                   i++;
                   for (int j = 0; j < numberOfMovies - i; j++) {
                        if ( array[j].getDirector().compareToIgnoreCase(array[j + 1].getDirector()) > 0) {   
                             tempTitle = array[j].getTitle();
                             tempYear = array[j].getYear();
                             tempDirector = array[j].getDirector();
                             array[j].setTitle(array[j + 1].getTitle());
                             array[j].setYear(array[j + 1].getYear());
                             array[j].setDirector(array[j + 1].getDirector());
                             array[j + 1].setTitle(tempTitle);
                             array[j + 1].setYear(tempYear);
                             array[j + 1].setDirector(tempDirector);
                             swapped = true;
              System.out.println("The movies are sorted by director.");
    /* ----- My Movie Class ----- */
    class Movie {
         private String title;
         private int year;
         private String director;
         public Movie(String title, int year, String director) {
              setTitle(title);
              setYear(year);
              setDirector(director);
         public String getTitle() {
              return title;
         public void setTitle(String title) {
              this.title = title;
         public int getYear() {
              return year;
         public void setYear(int year) {
              this.year = year;
         public String getDirector() {
              return director;
         public void setDirector(String director) {
              this.director = director;
    }Edited by: AntiSignIn on Mar 24, 2010 7:30 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to resize object + Text lighting

    Hi,
    1. Lately I can't resize an object.
    The surrounding border of the object is with filled rectanglers and
    not with hollow rectangler.Thus, I can't resize objects - how can I fix it ?
    2. When I try to mark text, it's mark it perfectly but I can't see the higlighting eventhough I choose it.
    How can I mark text and see the text marked (chosen text marked)
    Regards,
    Koko Fiko

    You are welcome, Koko Fiko.
    1) To freely write right to left, you need an AI version where that direction is native. The Middle East version does it (it is worse for anyone using boustrophedon).
    2) If you have Acrobat (not Reader), you may save the first page under the desired name, then save the following page(s) under another name (one by one), switching to Acrobat and using Document>Insert Pages (Alt/Option+D+I) and using After.

  • Problem Resizing Regions

    I'm having a problem resizing regions.
    On some regions, I can make the region shorter, but I cannot lengthen it.
    On other regions, I can make the region longer, but there is not silence in the added length - instead, the first notes of the region repeat (this happens using the little ruler symbol, not the the little circular arrow symbol)
    Does it make any difference if the region is a copied region? Can you only lengthen original regions and not copied regions? I tried changing the resolution as per a prior post about this problem and that did not help.
    Thanks for your suggestions.

    On some regions, I can make the region shorter, but I cannot lengthen it.
    you can not make an audio ("real") region longer then it's total length.
    On other regions, I can make the region longer, {but} the first notes of the region repeat (this happens using the little ruler symbol
    by "ruler" do you mean the Right bracket? something like <]>
    what type of region?

  • Problem resizing group of objects

    I was trying to resize a grouping of simple objects and hit some sort of limit as to how small it would go. It would resize larger but not smaller than some seemingly arbitrary size. Did a cut&paste (with cmd-N) into Preview and then cut&paste back into Keynote. Now the grouping will go smaller in Keynote and also into Pages. Does anyone know what this size limit thing is and how to avoid it?

    It was a grouping of simple shapes; lines, ellipses, a few polygons, some fill here and there. That's it.

  • Problem resizing certain objects

    I converted a project from Captivate 1 to 2. I noticed that I
    am having trouble resizing certain objects. For example, by
    clicking on a highlight box, I expected the sizing handles to show
    up on the object so I could resize it. The handles weren't there. I
    ended up having to delete the object and create a new one.
    Constrain Proportions is "unchecked." By the way, this doesn't
    happen everytime. Sometimes it works; sometimes it doesn't. Is
    there a patch for Captivate 2 I could install?

    Hi Jerilyn
    Indeed a patch does exist for Captivate 2. However, I'm very
    doubtful it will have any effect on what you reported.
    Unfortunately, we see many such reports here in the forums with odd
    behavior related to projects that were "converted" from version 1.
    If you are interested,
    click here to see the
    Technical Note regarding the hot fix.
    Cheers... Rick

  • Image scaling problem with object handles

    Hi,
    I am facing scaling problem.I am using custom actionscript component called editImage.EditImage consists imageHolder a flexsprite which holds
    image.Edit Image component is uing object handles to resize the image.I am applying mask to the base image which is loaded into imageholder.
    My requirement is when I scale the editImage only the mask image should be scaled not the base image.To achieve this I am using Invert matix .With this
    the base image is not scaled but it  is zoomed to its original size.But the base image should not zoomed and it should fit to the imageholder size always. When I scale the editImage only the mask image should scale.How to solve this.Please help .
    With thanks,
    Srinivas

    Hi Viki,
    I am scaling the mask image which is attached to imageHolder.When i  scale
    the image both the images are scaled.
    If u have time to find the below link:
    http://fainducomponents.s3.amazonaws.com/EditImageExample03.html
    u work with this component by masking the editImage.If u find any solution
    for scale only mask ,plz share the same.
    thanks,
    Srinivas

  • Keynote 6.5 Crashes When Resizing Object

    I have been having this problem with the last two versions of keynote on OSX Mavericks/OSX Mountain Lion, the problem is not unique to keynote 6.5 on Yosemite.
    Only objects which have been grouped together, such as a graph w/ legend, will make keynote crash when I try to resize them. This is when I use the cursor or the "Arrange" side menu tools. I can move the object freely, I just cannot change its size.
    Any help is much appreciated on how I can modify the object so that it can be resized.

    Sorry I have no real experience with this, just a thought. Did you use migration assistant to move the old files over from your G4 to your Intel? And did you then perform a "Repair Disk Permissions" upon the entire hard drive from within Disk Utility's "First Aid" panel? (located at Applications>Utilities>Disk Utility)
    If the file move still is causing you a problem afterwards, you could try and work around it by moving the files in a different way. As a test, create a small file on the G4 and then email it to yourself from the G4. Receive that message into the Intel and see if the Intel can then open the file from inside Mail. This might avoid any "bias" created during the move from old to new Mac.

  • Problem dragging objects

    Over the past couple of weeks, a problem has come up in
    Captivate 2 where objects react very slowly when I try to move
    them, resize text boxes, or select timelines. For example, if I try
    to reposition a text box or pointer, I'll click and drag with my
    mouse, but the opbject won't move for a second or two. That makes
    it darn near impossible to accurately place the object. and when I
    click ona time line to move or extend an objects timing, I have to
    hold the mouse down for a second or two before it actually grabs
    the line.
    This problem only occurs in Captivate,

    Hi Rickblack
    I've seen this happen as well. Personally, I believe it to be
    a resource issue as it relates to your PC and the Captivate
    project. I notice it begins to occur once you build a project up
    and it has some substance.
    Not sure what to advise, other than perhaps reporting it back
    to Adobe via official channels. You may do this by
    clicking
    here.
    Cheers... Rick

  • Problems Resizing Project (Captivate 5)

    I am running into a strange problem and I was wondering if someone knew why the following was happening.
    1) I capture my movie at 1280x720
    2) I save it and rescale the project to 889x500 maintaining aspect ratio (which for some reasons ends up being 883x497 after saving)
    3) I add the TOC in overlay mode.  The open/close TOC arrows appear over the browser "x" close button which was not clear so I resized the project so the open/close TOC arrows appear above the main movie (rescale project, uncheck "maintain aspect ratio", added 18 pixels to height, select "keep project the same size...", and positioned Bottom Center).
    4) In edit mode, my mouse and keystrokes look fine
    5) But when I preview or publish, my mouse moves what looks to be 18 pixels below where it should be.  Plus the background acts strange.  You will see in the screenshots below, in the upper left my mouse is clicking in the right place but the buttons are appearing 18 pixels higher (I think where they were originally located).  You will also see the typing appear below where it should be in the box (and what I see in edit mode).
    Any ideas why this is happening?  Everything works fine prior to adding the 18 pixels to the top.
    Thanks!

    In Captivate content when you capture typing text on the screen it ends up as a special type of object that sits on it's own hidden layer and is set to be positioned from the top left corner of the screen.  When you change this positioning reference by resizing your content, it doesn't affect the text typing layer in the same way as other content.  So you end up with this issue.
    If you really MUST do all this resizing (which can also get you into trouble with other Cp issues such as ghost lines) the workaround for the typing text issue is to right click on the typing in Edit mode, convert it to animated text, and then position that as needed.

  • UML Model - Problem Moving Objects

    Hi:
    A co-worker and I both have JDeveloper 9.0.3.10.76, UML Modelers Version 9.0.3.9.73. When creating a new UML Class diagram, I can move objects around, resize them, etc. My co-worker has to cut and paste them back into the diagram, can't resize things, etc. In other words, once a Java class is placed on the diagram, it can't be dragged around, resized, etc. Is this a setting somewhere?
    Thanks,
    Mike

    Lisa:
    I found the problem. When that person got back, we all "upgraded" a bunch of things, and then we all had it. The problem is that we are using Java 1.4.1_03 and set the SetJavaHome line accordingly in the jdev.conf file. Evidently the events used by the UML diagram for the mouse are now slightly different under 1.4.1_03 or something. Easily solved though, we just commented out that line.
    You all might verify this works with the next release though, as I'm pretty sure it isn't shipping with 1.3.1 as the default, correct?
    Mike

  • Problem resizing UI text in Photoshop CC

    I cannot resize UI fonts in Photoshop CC (icons, menu headings etc) - or rather I succeeded in resizing them once, moving from tiny to medium, and since then cannot change. I am using a 27 inch iMac running Windows 8.1. Altering settings in Windows does not solve the problem. Nor does forcing Photoshop to rebuild the preferences file under the roaming directory
    Menu subheads appear smaller than the main navigation
    Has anyone else experienced this bug? There seem to be many issues surrounding Photoshop CC UI display
    UPDATE
    A second resizing has now occurred, back to tiny. Subheads in menus remain unchanged - now significantly bigger than the Menu heads

    Thank you for replying
    I did restart, yes, many many times. And the change to a much larger font (and back again) happened without warning in the midst of these restarts. Almost certainly there is a  bug of some kind because the software behavior was not predictable.
    I tried the experimental setting after reading your message and found that it moved me back and forth between the medium and tiny fonts already seen (at least I assume that is what they were - one is too big the other too small). It is not a sophisticated tool. I need something between the two. Is there a way of setting it in some intermediate scale (call it 'small'), or is there no solution within Photoshop?
    I did not have this problem on my old iMac. The only change between the two machines is that the new one is retina display.

Maybe you are looking for