Art board bigger than screen

My dartboard disappears off the top and bottom of my screen so I can not grab to adjust. How can I reset? I have tried using multiple screens but it does not appear across more than one screen.

The Tab key toggles the Tool bar and Options bar on and off.
But you might have switched to another view mode.  Tap the 'f' key which has three positions, to toggle through them.  If you turn on the Rulers (Ctrl r) they stay visible in all three modes.
If you have Windows 7 or 8.1 you can make the workspace fit to the screen by using the Windows key along with the cursor keys, but I expect you knew that (if a Windows user).  If you can see the Options bar at any time, you can use the Workspace droop down to Rest the workspace.  That should fix all UI woes.
Finally, if all else fails, you can go back to defaults for most things by resetting the Preferences
Reset Preferences
Windows — Hold down Shift Ctrl Alt immediately after starting Photoshop
Mac — Hold down Shift Cmd Opt immediately after starting Photoshop
BTW  Artboard is an Illustrator term, and sort of like the Photoshop Canvas, (but not really).

Similar Messages

  • I need to write a Java script to make my Art board bigger by 1 (one) inch on the Width and Length, Regardless of the Content?

    Hi,
    I am currently using "Visible bounds" (java script)to add 1 inch to the width and to the Length of my Art board, but when i make a clipping mask it actually reads the hidden content from the Clipping mask and makes conforms my art board to that particular shape. Am using Adobe illustrator cs6 Here is My Code:
    var myDocs = app.documents;
    var i = 0;
    for (i = myDocs.length-1 ; i >= 0; i--)
        var doc = myDocs[i];
        app.activeDocument= doc;
        var myVisibleBounds = doc.visibleBounds; //Rect, which is an array;
        myVisibleBounds[0] -= 36;
        myVisibleBounds[1] += 36;
        myVisibleBounds[2] += 36;
        myVisibleBounds[3] -= 36;
        doc.artboards[0].artboardRect = myVisibleBounds;
    All i Want is to add 1 inch to my width and length and this does it but if i have a clipping mask it will pick up the bounding box i guess? and it will conform it to the shape... any help please... Try my code and you will see that it does add 1 inch but now make you artboard lest say 12" x 12" and make a shape bigger than the art board and you will see how it adds 1 inch to the art board based on that shape...  now if you make a clipping mask to fit that shape in the 12" x 12" art board you will still get 1 inch bigger than the shape thats being clipped ... 

    yes, visible bounds is reading the non-visible masked objects too.
    you're going to have to do it the hard way, loop through all your objects to get your bounds manually, and while you're at it, test for clipping masks and use the masking path instead.

  • Make JFrame bigger than screen size

    I have a JFrame which has several components. I need to print all the contents of this JFrame, but to do that I need to be able to make the JFrame bigger than the screen's resolution.
    When I change the size of my JFrame to anything bigger than the screens resolution it will just resize to the maximum resolution of my screen
    I tried with jFrame.getToolkit().setDynamicLayout(false); but it didn't seem have any effect
    This is the code I'm using for this:
    Some help would be appreciated!
    private void printFIButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
            // prints pay slip cards
            JFrame FIFrame2 = new JFrame();
            FIFrame2.setLayout(null);
            FIFrame2.setResizable(false);
            FIFrame2.getToolkit().setDynamicLayout(false);
            FIFrame2.setSize(594, 280*numPrintFI);
            this.incrementWeeks(cal, 2);
            int FIcount = 0;
            String line ="";
            String str ="";
            //sets up arrays to store swing components
            JPanel[] fip = new JPanel[numPrintFI];
            JTextArea[] fit = new JTextArea[numPrintFI];
            JLabel[] filbl1 = new JLabel[numPrintFI];
            JLabel[] filbl2 = new JLabel[numPrintFI];
            JLabel[] filbl3 = new JLabel[numPrintFI];
            //creates a font
            Font font = new Font("Pik", 0, 26);
            //loop creates the components needed for the pay slip cards
            for(int i = 0;i<numPrintFI;i++){
                BufferedReader in = null;
                try {
                    in = new BufferedReader(new FileReader("c:\\misc.txt"));
                line = in.readLine();
                FIcount = Integer.parseInt(line);
                } catch (FileNotFoundException ex) {
                    Logger.getLogger(CustomerIndexGUI.class.getName()).log(Level.SEVERE, null, ex);
                }catch(IOException e){
                    System.out.println("Something went wrong");
                str="";
                fip[i] = new BackgroundPanel();
                fip.setLayout( null );
    Insets insets = FIFrame2.getInsets();
    fip[i].setSize(594, 272);
    fip[i].setLocation(0 + insets.left, i*272 + insets.top);
    insets = fip[i].getInsets();
    //address field
    fit[i] = new JTextArea();
    fip[i].add(fit[i]);
    fit[i].setSize(230,80);
    fit[i].setLocation(10+insets.left,67+insets.top);
    fit[i].setText(customers[(int)printFI[i].getCustnumber()-1].getAddressee().getName().getFirstName() +
    " " + customers[(int)printFI[i].getCustnumber()-1].getAddressee().getName().getSecondName() +
    "\n" + customers[(int)printFI[i].getCustnumber()-1].getAddressee().getAddress() +
    "\n" + customers[(int)printFI[i].getCustnumber()-1].getAddressee().getPostCode());
    //left price label
    filbl1[i] = new JLabel();
    fip[i].add(filbl1[i]);
    filbl1[i].setLocation(103+insets.left,203+insets.top);
    filbl1[i].setSize(115,20);
    filbl1[i].setFont(font);
    filbl1[i].setText(Integer.toString(printFI[i].getPrice())+" 00");
    //date and price label
    filbl2[i] = new JLabel();
    fip[i].add(filbl2[i]);
    filbl2[i].setSize(370,20);
    filbl2[i].setFont(font);
    filbl2[i].setLocation(233+insets.left,203+insets.top);
    filbl2[i].setText(format.format(cal.getTime())+" "+
    Integer.toString(printFI[i].getPrice())+" 00");
    //botom line on pay slip label
    filbl3[i] = new JLabel();
    fip[i].add(filbl3[i]);
    filbl3[i].setSize(540,20);
    filbl3[i].setLocation(10+insets.left,240+insets.top);
    for(int q=0;;q++){
    if((str.length()+line.length())==15){
    break;
    str+="0";
    str+=line;
    String str2 = "+71<"+str+" +87830861< "+
    str;
    filbl3[i].setText(str2);
    FIcount++;
    String str3 = Integer.toString(FIcount);
    try {
    BufferedWriter bw = new BufferedWriter(new FileWriter("c:\\misc.txt", false));
    bw.write(str3);
    bw.flush();
    bw.close();
    } catch (IOException ex) {
    Logger.getLogger(CustomerIndexGUI.class.getName()).log(Level.SEVERE, null, ex);
    FIFrame2.getContentPane().add(fip[i]);
    FIFrame2.validate();
    FIFrame2.setVisible(true);
    System.out.println("height fiframe2: " + FIFrame2.getHeight());
    PrintUtilities pu = new PrintUtilities(FIFrame2);
    pu.printComponent(FIFrame2);
    this.incrementWeeks(cal, -2);

    Okay I just tried what you said and it doesn't work unfortunately. It will print the whole JScrollPane (e.g. the the scroll bars), but whatever components are on the JScrollPane outside of the screen will not be printed.
    This is the code I used to test it:
    package javaapplication3;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import javax.swing.*;
    * @author Mick
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
           JFrame frame= new JFrame("test frame");
            JPanel panel= new JPanel();
            JLabel label= new JLabel("test");
            JLabel label2= new JLabel("test2");
            panel.add(label);
            panel.add(label2);
            label.setBounds(400, 1400, 60, 20);
            label2.setBounds(10, 10, 100, 100);
            panel.setPreferredSize(new Dimension(500, 1500));
            panel.setLayout(null);
            JScrollPane sp= new JScrollPane(panel);
            frame.getContentPane().add(sp, BorderLayout.CENTER);
            frame.pack();
            frame.setVisible(true);
            PrintUtilities pu = new PrintUtilities(sp);
            pu.printComponent(sp);
    import java.awt.*;
    import javax.swing.*;
    import java.awt.print.*;
    import javax.print.attribute.*;
    public class PrintUtilities implements Printable {
      private Component componentToBePrinted;
      private Paper paper = new Paper ();
      private PageFormat pageFormat = new PageFormat();
      public static void printComponent(Component c) {
        new PrintUtilities(c).print();
      public PrintUtilities(Component componentToBePrinted) {
        this.componentToBePrinted = componentToBePrinted;
        paper.setSize(594.936, 841.536);
        paper.setImageableArea(0, 0, 594.936, 841.536);
        this.pageFormat.setPaper(paper);
      public void print() {
        PrinterJob printJob = PrinterJob.getPrinterJob();
        printJob.setPrintable(this, this.pageFormat);
        if (printJob.printDialog())
          try {
            System.out.println("Calling PrintJob.print()");
            printJob.print();
            System.out.println("End PrintJob.print()");
          catch (PrinterException pe) {
            System.out.println("Error printing: " + pe);
      public int print(Graphics g, PageFormat pf, int pageIndex) {
        int response = NO_SUCH_PAGE;
        pf = this.pageFormat;
        Graphics2D g2 = (Graphics2D) g;
        //  for faster printing, turn off double buffering
        disableDoubleBuffering(componentToBePrinted);
        Dimension d = componentToBePrinted.getSize(); //get size of document
        double panelWidth = d.width; //width in pixels
        double panelHeight = d.height; //height in pixels
        double pageHeight = pageFormat.getImageableHeight(); //height of printer page
        double pageWidth = pageFormat.getImageableWidth(); //width of printer page
        double scale = pageWidth / panelWidth;
        int totalNumPages = (int) Math.ceil(scale * panelHeight / pageHeight);
        //  make sure not print empty pages
        if (pageIndex >= totalNumPages) {
          response = NO_SUCH_PAGE;
        else {
          //  shift Graphic to line up with beginning of print-imageable region
          g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
          //  shift Graphic to line up with beginning of next page to print
          g2.translate(0f, -pageIndex * pageHeight);
          //  scale the page so the width fits...
          g2.scale(scale, scale);
          componentToBePrinted.paint(g2); //repaint the page for printing
          enableDoubleBuffering(componentToBePrinted);
          response = Printable.PAGE_EXISTS;
        return response;
      public static void disableDoubleBuffering(Component c) {
        RepaintManager currentManager = RepaintManager.currentManager(c);
        currentManager.setDoubleBufferingEnabled(false);
      public static void enableDoubleBuffering(Component c) {
        RepaintManager currentManager = RepaintManager.currentManager(c);
        currentManager.setDoubleBufferingEnabled(true);
    }

  • JFrame bigger than screen Size (Width)

    I there a way to make the jframe bigger than the screen dimensions (800 by 800) to say 1200 by 800.
    I used netbeans to create a JFrame. I was using a laptop of screen size 1200 by 800 and I positioned my components according to those dimensions using grouplayout. Now when I run it on my desktop on lesser screen size the JFrame is truncated and I can see n operate on only 3/4 of the width. I have some buttons at the bottom right corner of the screen which I cannot totally see.
    Is there a way to make the JFrame to appear completly (Bigger than the screen size)
    Thanks in advance

    Frame built by netbeans probably uses
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    frame.setSize(screenSize.width.screenSize.height);
    or
    frame.setExtendedState(JFrame.MAXIMIZED_BOTH);you have to type the values you need by hand to setSize(); but you won't be able to get to part not visible on the screen. Better leave that as it is and employ JScrollPane

  • Wallpaper bigger than screen and moves when my mouse moves

    My wallpaper used to be fine but suddenly it became bigger than my screen such that the part of the menu bar or dock etc is out of the screen. And, when I move my mouse, the screen moves too. Anyone knows how to solve this?

    Hi
    It sounds like you might have the Zoom feature turned on. Go to System Preferences, Universal Access, and check Zoom - if it's on, turn it off.
    Matt

  • Copy window bigger than screen

    can I copy a window that is larger than the screen  without buying additional software like snagit ? Thanks. Zww27

    Some applications let you select and scan down without stopping, some do not.  Have you tried taking a screen shot of the to see if that captures content off the page - Command+Shift+3

  • Set startposition of a "bigger than screen site"

    Hi!
    Im doing a site that has a width of 4000 pix and i want to scroll with anchors from the middle to left or right. But where is the option to set the start position of a site?
    It always starts from the top left corner. But I wnt to start from the middle. I have an anchor that I can click for scrolling to the middle of the site but is it possible to activate that anchor when loading the site?
    Thanks a lot.

    I haven't tried this but you could maybe use a redirect when the page loads to go directly to that anchor ....
    Add this to the head section of your page in the Page Properties:
    <meta http-equiv="refresh" content="0; url=http://example.com/index.html#anchor" />
    Replaces the url with your own of course. Again, not sure if it will work in your case but you can try it. Other than that there is no way to set a default anchor so it would not be able to be done with just the domain name.

  • Email replying spanning bigger than screen.

    Hey guys don't really know how to explain this, but when I'm replying to an email through "Mail" the text always spans past the screen size, so I find myself constantly moving the screen side to side just to see what I am writing.
    Very annoying bug.
    I've tried changing the font size and writing to various e-mail addresses does not make a difference.
    Oh and I am just using a standard hotmail account, and never used to have the problem until 3.0.1 update?

    Hi 39Larry,
    If you are having issues with your email not fitting to the screen size on your iPad, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    Force an app to close in iOS
    Next, I would try restarting and if needed resetting the iPad -
    Restart or reset your iPhone, iPad, or iPod touch
    If the issue is still present, you may want to restore the iPad as a new device -
    How to erase your iOS device and then set it up as a new device or restore it from backups
    Thanks for using Apple Support Communities.
    Best,
    Brett L  

  • How do I get the screen to refresh when drawing a line larger than the art board

    How do I get the screen to refresh properly when drawing a line larger than the art board when the screen scrolls? Everything turns white in CS6, CS5 and CS4.

    Existing art - not the new art.  The new art just gets a proxy shape - seen in my example as the blue rectangle.  The existing art is what gets smeared as you drag past the edge of the screen.  If it's anything other than an Ilustrator thing, it's a Mac thing. I've never known it to be any other way other than maybe in the past showing blank white instead of stuttered art on probably 10 different macs over the years.
    Take any art that you've ever created.  Zoom in so that your art is bigger than your screen (so that there's somewhere to scroll).  Rectangle tool (or move, scale, rotate(?) something, or draw a line) Start your rectangle anywhere, drag so that you are at the edge of the screen, causing it to scroll.  The existing art will get all effed up.  The rectangle you're drawing will draw as you expect it to - that's not the issue.
    How does Wade take his videos?

  • Real circles, arcs and bigger art board

    1.) I work with large format graphics and CS3 AI's limitation of around 120" x 120" makes my work difficult. Other graphic applications that are much less mature than AI have almost infinite art boards to work with. I would also be nice to be able to work in scales, too. It is laborious to have to constantly be working at half-, quarter-, or eighth-scale. I wear out a calculator and the possibility for errors shoots through the roof. Lastly, some things just don't scale well. In short, AI is biased toward those whose output is magazine sized. Since it is essentially the only graphics application left standing it should realize that many of its customers need to work is something larger than ledger. At the very least they should have the same limitation for both ID and AI. At present an 120" AI file cannot be placed in ID which has a limit of around 111". Some "suite."
    2.) Make text compatible between AI and ID. As I recall, at present (CS3) the text from one does not conserve its formatting when placed into another. I'd like to have the option.I have to use MSWord as a go-between. Again, some "suite."
    3.) If AI is going to be a complete vector art application perhaps it should start with the ability to draw simple shapes. At present, it can only draw X,Y defined vector paths. The "circle" tool only draws circle-shaped paths. Its size is controlled by changing the X and Y dimensions of an imaginary square into which it is inscribed. A true circle is drawn and manipulated via its center placement, its radius and its diameter---at a minimum! In AI none of these controls are available. Remember compasses from the old drawing board days? At the very least AI should emulate this ancient tool. I don't remember anyone ever trying to draw a circle by drawing a square first and trying to place four arcs in the corners. It is crazy.
    The same is true for arcs. AI only draws crude arc-like paths. In fact, it is even less accurate for arcs than it is for circles. Going back to simple definitions, an arc is a series of points equidistant from a single point. AI's "arc" tool does not draw anything close to this unless you hold down the shift key. Then it draws the arc from one of the end points. This may be helpful sometimes, but 99 percent of the time if you want to draw an arc you are going to want to start at the center and draw from end point to end point. AI acts as if the center does not exist! It is not even indicated; these are not arcs! Lastly, much like a true circle, an arc is manipulated by its center point placement, its radius and its included angle, and/or the location of its end points. None of these are available in CS3. As I said, it only draws X,Y vector paths--very, very primitive.
    The ability to draw fundamental shapes correctly and easily should be the first thing a vector illustration program tackles. It is absurd that it is still missing after 13 versions. Let's hope version 14 finally gets it right. And please don't mention CAD tools. The tools I'm taking about are basic, basic, basic tools.
    MGuilfoile

    I absolutely agree.
    I don't ever recall using a program that created arcs and circles like AI. A circle appears simply to be 4 arcs of 90 degrees. You cannot change the start and end angles, either by dragging the points or by dialog input. I'm not an illustrator by training - I'm a technical writer but I've been doing line illustrations, exploded views, etc. for almost 20 years using various vector-graphics programs. Every program I've used allows you to alter an arc, elipse or both, NOT just size and move!!
    I'm only evaluating AiCS4 for possibly migrating from FreeHand. In Freehand, you cannot change the angle of an arc but you can with elipse. Even the limited graphics package in FrameMaker allows you to define the start/end angles of an arc (not an elipse) via the properties dialog.
    I'm new to AI and I'm just astonished that the arc and elipse tools have been so neglected over the long life-cycle of the program.

  • Image bigger than the screen

    i have a 4rd generation ipod touch and suddenly the image of desktop is bigger than the screen. i dont know how to solve this.

    Double tap the screen with 3 fingers.
    Stedman

  • How do i make the whole veiw of the computer smaller? it seems bigger than the whole screen

    how do i make the whole veiw of the computer smaller? it seems bigger than the whole screen

    often, this happens when you blunder into Accessibility/ Universal Access features, such as screen Zooming.
    System Preferences > Accessibility/ Universal Access > Seeing

  • More than 100 art boards

    Allow more than 100 art boards.

    Agreed. We need more artboards to support more scenarios for UI app development. This would go a long way. 1000 would be precious.
    Also, the ability to add them in in between art boards would be fantastic (agreeing with Marcplaticolab). Currently, if you have less than 100, it auto appends after the last one in your document. This make for hairy situations when trying to update artboards within a scenario.
    I have to set up the document from the beginning to have the max amount of art boards, then move around as needed (a bit of a pain).

  • Imac screen is bigger than display  mouse scrolls

    imac screen is bigger than display like it is magnified mouse scrolls how do i reverse this?  I cannot find the option under display

    Hold the Control key down and scroll with the mouse or trackpad to unzooom.
    Captfred

  • Art board changes from CS3 to CC?

    We are updating our workflow, and with it, software.  Going from CS3 to the creative cloud. For years we have stuck to CS3 as our downstream customers were slow to update and it was beneficial to provide the product in an older format usable to the broadest user base. Now we are upgrading to CC and I'm experiencing difficulty translating older Illustrator documents to Creative Cloud.
    My understanding of the Art board is that it defines the live matter area of the artwork. Along with the Zero Zero point, this would serve as the starting point for image setters. When I preview the translated documents, the art board and the coordinates change. when I distill an eps into a pdf, i get a totally different result than when I save as a PDF within the program. Ive also experinced the zero zero point changing simply by opening the document again. This is making production very difficult as it seems like its not stable.
    Anyone experience this in CC and is there a fix for it? See screen grabs below:
    This is the way the document appears in Illustrator, notice the zero zero point.
    When the document is distilled, the art board shrinks:

    LTU,
    how do I fix it so its consistent?
    I believethe following ways still work:
    A) Install and run the script in the OP of this thread,http://forums.adobe.com/thread/890507?tstart=30
    or
    B) Manually change the relevant preference settings as follows:
    0) Close down Illy (you can only change the preference file with Illy closed);
    1) Find and open the AIPrefs (Win speak) or Adobe Illustrator Prefs (Mac speak) file withe a text editor like Notepad or TextEdit; the preference file is a (hidden) file in the (hidden) folder Adobe Illustrator CS5 Settings
    2): Find and change the following two bits of code:
    /isRulerOriginTopLeft 1 >>> /isRulerOriginTopLeft 0 (change 1 to 0)
    /isRulerIn4thQuad 1 >>> /isRulerIn4thQuad 0 (change 1 to 0)
    This is a global change so you only have to do it once (just as you can undo it once).
    You may find the folder as described in <em><strong><a href="http://www.bugge.com/Family-and-friends/Illy/illy.html"><span style="text-decoration: underline;">Move the folder</span></a></strong></em>.
    Also, it doesn't explain the discrepancy between Distiller and saving as a PDF within CC.
    I have no clue about that one, I am afraid. I hope someone else has.
    Someone?

Maybe you are looking for

  • How do i sync my itunes library with ATV gen1?

    I am trying to sync my itunes library with my Generation 1 Apple TV.  The directions I found on the Apple site said to go to the Summary tab under Apple TV in Devices in itunes.  No such tab exists, only Setting and Photos.  Can anyone help?

  • How do I share a 3G USB modem connected to my Macbook Pro with my Airport Express?

    Hi. I have a 3g USB modem connected to my macbook pro, and I want to try share the signal with my Airport Express (latest model). Now before everybody screams that it can't be done, I was searching the forums and found a discussion in which someone d

  • Apache integrates with Tomcat

    Hi, we have Apache 1.3.19 intergrated with Tomcat 3.2.2 using mod_jk. When we checked with the mod_jk.log file, the file size is very large for just turning on it for 5 days. And the contents of this file are repeating the following two lines: [jk_ur

  • After Effects CC suddenly won't launch

    It's done this twice before, but has been fine lately.  I have a last-minute deadline job that just came in and I can't get AE to even start!  Last time this happened, I just kept trying and after about 15 attempts, it launched...not doing that this

  • Creating Two forms

    I created two forms in Screen painter and I'm stock with the code behind in VB.NET. I don't how to call the 2nd form. My 1st form is for my Main and in this form it has a button save. I want that when I press Save the 2nd form will show. How can I do