How to make an existing drawing fit to its page scale

I made a draw in visio 2010 and after finishing it, I noticed that it was longer than the height of A4. I'd like my draw to be split to seperated parts, so each part of them won't exceed the size of A4. Is it possible?
I pressed in the Design tab on size and set it to A4 but nothing happened, my draw size hasn't been changed.
GuyR

Visio will do nothing to stop you from drawing off-page. Visio 2010 will actively increase the drawng page for you, unless to turn it off. All Word has to do is to flow text from one page to another. Visio is a totally different kettle of fish, it cannot
automatically flow your diagrams to a new printing page.
Limit each drawing page to whatever size you want i.e. A4, If the diagram starts to go over A4 then create a new page and draw on that.
-- Paul Herber, Sandrila Ltd. http://www.sandrila.co.uk/ Engineering and software shapes for Visio.

Similar Messages

  • How to make a text "drawer" in iWeb

    Does anyone know how to make a text "drawer" in iWeb? What I mean is when you click on a hyperlink to read more text, but instead of opening up a new page, it makes the text appear below the link on the same page.

    Anything fancy with iWeb has to be done in the HTML Snippet or after publishing the page.
    Find the code for the drawer, apply it and show us the result.
    Perhaps not the drawer you had in mind but this is something near:
    http://www.wyodor.net/Ajax/
    Here's another one with drawer in the title:
    http://jqueryfordesigners.com/slide-out-and-drawer-effect/
    http://jqueryfordesigners.com/demo/plugin-slide-demo.html
    Found with : [text drawer|http://www.google.com/search?client=safari&rls=en&q=text+drawer&ie=UTF-8 &oe=UTF-8]

  • Adobe pro 8: how to make an existing secure encrptyed form unfillable after editing

    Hello,
    as the discussion topic says.
    adobe pro 8: how to make an existing secure encrptyed form unfillable after editing?  Is it even possible to do in adobe pro 8?
    For work there's a secure and encrptyed form.  I want to write in the form and save it so it will be unfillable / uneditable.
    this form is not created by myself, and already secure and encrypted.
    I am aware that in other recent adobe pro versions on how to do this, since they have a " save as a copy" function in the file menu. (adobe 8 doesnt have)
    I've also tried printing as a PDF, but due to encryption of the form, that doesn't come out great.
    Upgrading to a recent version of adobe pro is not an option.
    I've also tried exporting as a picture files and then recombinding them to a pdf.  I dont like this method and find it time consuming.
    If possible please inform me of a way to solve this problem , step by step with adobe pro 8's features.
    or
    show me the equivalent method to how recent versions "save a copy" of a secure encrypted form on adobe pro 8.
    Thanks in advance for reading this thread and helping.

    Well after you use save a copy, and the security is disabled, you could then re enable security features and disable editing of the form.
    EDIT: I just tested , with a PDF is in secure mode, even using a "save a copy" feature wouldn't work.
    Would finding a program to desecure the pdf be a possible option?
    Or is there a way to copy the form (with all it's editable fields) and paste it as an unsecure pdf?
    You would then be able to make new security features.
    thanks for replying and viewing this problem.

  • How to make multi user drawing application

    how to make multi user drawing application in as 3.0

    I'd suggest using Flash Media Interactive Server if you wish to make this type of application and use Flash as the interface.  I can't give you the details on exactly how to implement it, but using Remote Shared Object and FMIS would serve as the basis.  I believe that the package comes with examples of Shared Objects that can serve as a simple basis from which to proceed.  After that you might want to see if you can find an available whiteboard app that can be leveraged to do as you wish.
    I apologize in advance if using this type of solution is a non-starter, I've been using FMIS locally and have plans to eventually implement something similar to this type of drawing app as well.

  • How to make lines I draw as an objects??

    Hi friends:
    I met a problem here, I find a similiar code below, but cannot solve it.
    How to make lines I draw as objects in this application??
    ie the lines I draw will be selectable as other JLabels, can be highlighted, can be deleted etc, just like any other components or object,
    How to do this??
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.util.Vector;
    import java.lang.reflect.Array;
    import javax.swing.*;
    import javax.swing.event.*;
    public class Drawines
         public static void main(String[] args)
            JFrame f = new JFrame("Draw Lines");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new ConnectionPanel());
            f.setSize(400,300);
            f.setLocation(200,200);
            f.setVisible(true);
    class Drawines extends JPanel
        JLabel                                       label1, label2, label3, label4;
        JLabel[]                       labels;
        JLabel                                       selectedLabel;
        protected              JButton btn            = new JButton("DrawLines");
        protected              JButton btn1           = new JButton("Clear");
        protected              JButton btn2           = new JButton("No Draw");
        protected                      boolean isActivated = false;
        protected           int      stoppoint     = 0;          
        int cx, cy;
        Vector order                     = new Vector();
        Vector order1                     = new Vector();
        Object[] arr                    = null;
        public ConnectionPanel()
            setLayout(null);
            addLabels();
            label1.setBounds( 25,  50, 125, 25);
            label2.setBounds(225,  50, 125, 25);
            label3.setBounds( 25, 175, 125, 25);
            label4.setBounds(225, 175, 125, 25);
            btn.setBounds(10, 5, 100, 25);
            btn1.setBounds(100, 5, 100, 25);
            btn2.setBounds(200, 5, 100, 25);
                add(btn);
             add(btn1);
             add(btn2);
            determineCenterOfComponents();
            ComponentMover mover = new ComponentMover();
             ActionListener lst = new ActionListener() {
                 public void actionPerformed(ActionEvent e) {
                     ComponentMover mover = new ComponentMover();
                           addMouseListener(mover);
                           addMouseMotionListener(mover);
                           isActivated = false;
            ActionListener lst1 = new ActionListener() {
                       public void actionPerformed(ActionEvent e) {
                           isActivated=true;
              btn.addActionListener(lst);
              btn1.addActionListener(lst1);
        public void paintComponent(final Graphics g)
             super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
             Point[] p;
                System.out.println("order.size()"+ order.size());
                System.out.println("order1.size()"+ order1.size());
                     if (!isActivated && order1.size()==0) {
                         for(int i = 0 ; i < order.size()-1; i++) {
                                JLabel l1 = (JLabel)order.elementAt(i);
                               JLabel l2 = (JLabel)order.elementAt(i+1);
                               order1.add(order.elementAt(i));
                               order1.add(order.elementAt(i+1));
                               System.out.println();
                               p = getCenterPoints(l1, l2);
                               g2.setColor(Color.black);
                                            g2.draw(new Line2D.Double(p[0], p[1]));            
                     }else if(!isActivated && order1.size()>0){
                             order=order1;
                         for(int i1 = 0 ; i1 < order.size()-1; i1++) {
                               JLabel l1 = (JLabel)order.elementAt(i1);
                               JLabel l2 = (JLabel)order.elementAt(i1+1);
                               System.out.println();
                               p = getCenterPoints(l1, l2);
                               g2.setColor(Color.red);
                                g2.draw(new Line2D.Double(p[0], p[1]));    
                                System.out.println(" order1.size() = " + order.size());
                     }else {
                          order1 = order;
                         for(int i1 = 0 ; i1 < order1.size()-1; i1++) {
                                    JLabel l1 = (JLabel)order1.elementAt(i1);
                                    JLabel l2 = (JLabel)order1.elementAt(i1+1);
                                    p = getCenterPoints(l1, l2);
                                    g2.setColor(Color.blue);
                                    if (order.elementAt(i1) !=null){
                                         g2.draw(new Line2D.Double(p[0], p[1]));    
        private Point[] getCenterPoints(Component c1, Component c2)
            Point
                p1 = new Point(),
                p2 = new Point();
            Rectangle
                r1 = c1.getBounds(),
                r2 = c2.getBounds();
                 p1.x = r1.x + r1.width/2;
                 p1.y = r1.y + r1.height/2;
                 p2.x = r2.x + r2.width/2;
                 p2.y = r2.y + r2.height/2;
            return new Point[] {p1, p2};
        private void determineCenterOfComponents()
            int
                xMin = Integer.MAX_VALUE,
                yMin = Integer.MAX_VALUE,
                xMax = 0,
                yMax = 0;
            for(int i = 0; i < labels.length; i++)
                Rectangle r = labels.getBounds();
    if(r.x < xMin)
    xMin = r.x;
    if(r.y < yMin)
    yMin = r.y;
    if(r.x + r.width > xMax)
    xMax = r.x + r.width;
    if(r.y + r.height > yMax)
    yMax = r.y + r.height;
    cx = xMin + (xMax - xMin)/2;
    cy = yMin + (yMax - yMin)/2;
    private class ComponentMover extends MouseInputAdapter
    Point offsetP = new Point();
    boolean dragging;
    public void mousePressed(MouseEvent e)
    Point p = e.getPoint();
    for(int i = 0; i < labels.length; i++)
    Rectangle r = labels[i].getBounds();
    if(r.contains(p) && !isActivated )
    selectedLabel = labels[i];
    order.addElement(labels[i]);
    offsetP.x = p.x - r.x;
    offsetP.y = p.y - r.y;
    dragging = true;
    repaint(); //added
    break;
    public void mouseReleased(MouseEvent e)
    dragging = false;
    public void mouseDragged(MouseEvent e)
    if(dragging)
    Rectangle r = selectedLabel.getBounds();
    r.x = e.getX() - offsetP.x;
    r.y = e.getY() - offsetP.y;
    selectedLabel.setBounds(r.x, r.y, r.width, r.height);
    //determineCenterOfComponents();
    repaint();
    private void addLabels()
    label1 = new JLabel("Label 1");
    label2 = new JLabel("Label 2");
    label3 = new JLabel("Label 3");
    label4 = new JLabel("Label 4");
    labels = new JLabel[] {
    label1, label2, label3, label4
    for(int i = 0; i < labels.length; i++)
    labels[i].setHorizontalAlignment(SwingConstants.CENTER);
    labels[i].setBorder(BorderFactory.createEtchedBorder());
    add(labels[i]);
    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    2 choice, bundle your app in a jar, or get a native compiler.
    executable jar
    http://java.sun.com/j2se/1.3/docs/guide/jar/jarGuide.html
    http://developer.java.sun.com/developer/qow/archive/21/index.html
    native
    http://gcc.gnu.org/java/
    http://www-106.ibm.com/developerworks/library/j-native.html
    http://icafe.sourceforge.net/
    http://www.towerj.com/
    http://www.xlsoft.com/en/products/development/jet/jetpro.html

  • How to make report high 3.33 inch per page(11g report)

    Dear all,
    How to make report high 3.33 inch per page
    so if there are more than one page in the report it will start printing in the correct position on the next page,
    i make generate to PDF then print
    Thanks,
    Sakr

    Hello Sakr,
    This is a good question:
    You can visualize:
    http://1.bp.blogspot.com/_KYY-OV98iIo/S4-7ISbC5NI/AAAAAAAAAGw/bmelGzNg6UI/s1600-h/MainSection.bmp
    You can change Height that shows 11 in the visual aid.
    Mark Correct or Helpful !
    Edited by: New Yorker on Aug 26, 2011 11:40 AM

  • How to make session invalid when user refresh the page?

    How to make session invalid when user refresh the page?

    I have a <form> in a JSP file that has another JSP file as an action.
    I have main.jsp that has <form> with action.jsp file as an action.
    Now when I submit the <form>, request forwarded to action.jsp and it will take the action. But this file is taking so long, hence user refresh the page again and again, hence duplicate request processing is occuring.
    I want to prevent this.

  • How do I make a long table fit on one page?

    I do a community newsletter, one page of which is a directory of residents. On this page, I have a table with 3 columns: name, address, and phone. There are 61 rows, which is too big to fit on an 8 ½ x 11 page. As people move in and out, I need to be able to change the name for the particular address and re-sort by name. Retaining this ability, how can I make this fit on one page? Ideally, I would be able to "break" the table into two parts of 30/31 rows each, with each part side by side on the 8 ½ x 11 page. I can't find a way to do this. Any help would be appreciated. I am working in Yosemite 10.10.1, and Pages 5.5.1. I have also created a Numbers 3.5 version of this table, but still cannot find a way to do what I want to do.

    Hi Saundra,
    Do you have to print it, or are you sending this out via E-mail/PDF?
    The fix below, should work, either way:
    If you are actually not printing it, and are E-mailing/posting online, Export as PDF, and E-mail address will still be active...
    If it must fit on a smaller page, for printing or for whatever reason, drag the aforementioned PDF into a 8.5 x 11 document, open Inspecter to Metrics, click to not constrain proportions, resize to fit then Export again as a PDF. The E-mail addresses will remain active. Here's screenshot of one with 61 rows, I made in less that 2 minutes as a mock-up. Links/E-mail still works.
    Luck!
    Lena

  • How do I make the form/pdf fit to one page?

    I designed my first form today and it's two pages long.  How do I get it all to fit on one page?  It will be saved as a pdf.

    While designing the form it will help to be in Page View.  This gives a very close approximation to how your fields will appear in the resulting pdf.  In the Design tab use menu View-> Page View.  All page breaks will now appear as dotted lines.  To aid in fitting more fields you can place forms side by side or reduce the font size.  Eliminating the Header also helps.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • How to make J2EE engine auto load The JSP Pages

    After I modify some JSP pages, If I just copy them to  the folder in the Server, The pages didn't update.
    How to make it auto update?

    Hello Shen,
    please take in consideration, that JSP page is translated to HttpServlet  component when deployed. It's not accessed via original JSP file.
    You can try to modify the final HttpServlet class file, but then you have to go through pre-compiling.
    Hope it helps,
    regards.
    mz

  • How to make thumbnails smaller on Mozilla Firefox start page

    thumbnails of websites I visited are too large, just few of them fit on the screen, I want to make them smaller

    Firefox should adjust the size of the thumbnails automatically to make them all nine fit in the browser window
    I can decrease the dimensions of the about:newtab window to 700x624 without seeing scroll bars.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems with the localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • How to make a progress bar or a waitting page?

    page1.cfm
    <form action="InputDB.cfm" method="post">
    <input id="inputdb" type="submit" value="InputNow">
    </form>
    InputDB.cfm
    <cfloop from="1" to "9000000" index="x">
    if it inputs the 9000000 records into the database,
    it will spend a lot of time,how to do make a progress bar
    or a waitting page when Users wait for the time?
    </cfloop>
    Thanks a lot.

    Waiting pages are easy.
    Step 1, convert form variables to session variable.
    Step 2, display something.
    Step 3, use js window.location to call the action page. Don't
    use cflocation. Even though it works, you lose your display.

  • How to make an anchor link also refresh the page?

    I'm trying some new things with some widgets (compositions) and I'd like to make certain anchor links also refresh my page (on the mobile version of my website). I tried putting the entire link in instead of just selecting my anchor (.com/mypage#myanchor) but that only works the first time (maybe because the user already is on .com/mypage#myanchor ?)
    A bit of Googling found me a way to do this:
    window.location.href = 'mypagetoreload.htm#jumptosection1';
    window.location.reload(true);
    but I don't know how to use this in Muse..
    Thanks in advance!

    Im experimenting with some different versions of a mobile version of my website. In this one I'm trying to put all content (everything except the header and footer) in a composition slideshow. I made the triggers invisible and placed them over my menu buttons in the header, so that the content scrolls horizontally. I like this because people only need to load 1 page (my mobile version only has about 6 pages) and they can also swipe between content, like my product pages.
    This all worked out fine, but now every "page" is the same length (because in reality its just one page with a slideshow on it). So now I had to add content to some pages (like home and about us) to kinda fill all space (the pages with my products on it have alot more content). I decided to put pages together, like put "about us" on the same page as "home". I made an anchor and linked to that anchor with my "about us" menu button. But, as "about us" is on slide 1 with home, the slideshow must also reset when people click it (otherwise you would only scroll down on the wrong slide). If I make my website refresh the slideshow resets (it would also work if i open the link in a new window, but that'd be very annoying).
    English isn't my first language, please excuse my bad grammer.
    Thanks in advance!

  • How to Make the label of the active tab-page BOLD?

    Hi All
    I am working on forms 10g(version 10.1.2.0.2 ) with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 on windows 2000 platform.
    My requirement is to make the label of the active tab-page either in italics or with a different color or make it BOLD than the other pages of the canvas.
    Any suggestions ?
    Regards
    Mohan

    there are no properties for those requirements on tab-pages. You can't do it.
    Setting italic for all Tabpage-Labels is possible, when you change it in the canvas-properties. But you can't change only one tabpage.
    One Solution is, what Jeneesh said: Active-Style. But only "Bold" and for the active tab.
    Gerd

  • In ibooks author how to make an existing page start a new section

    I have imported a Pages document into ibook authors (version 2.1.1 in OS 10.9.1) using the Classic Text Template. The original Pages document was basically a book, with title and table of contents and forward and several sections. Now everything is one huge unit. During the import I can choose a layout, but only a chapter or a section. Then all of the document is regarded as having that layout -- every page is regarded as having the section layout, for example, though only the first page has the smaller text area and the large text as a header. I can see all the layout possibilities in the Layouts sidebar, and they include section and forward and 1 column. When I hover the cursor over a particular page the book sidebar I see the little triangle that has been mentioned, and it offers options for changing layout,  but it does not allow me to make that page a new section or a forward. I can only make the page 2 column or put a sidebar on it. I cannot see how I can import the book and be able to create chapters and sections with ibooks author. I can insert a new section layout, or a new page, but I do not see how to  to change a page, after it is imported and is considered to be the text of a chapter or section, into the start of a new chapter or section.  I do not find anything in the inspector or on the menubar or in the help center that makes this change. The "add a chapter title" does not change the layout to make the text box smaller, as it should for a layout.   Is it actually possible to convert a Pages book into an ibook authors book, or must I create the blank chapters and sections in ibook authors and then cut and paste each section from Pages?

    The advice given for  iBA, is to preplan your book. Modify an exsiting template as your layout  suits you,  to present a quality book to your readers. 
    iBooks Author is really more "app"  than a book maker like inDesign or even Pages,  - and users should really  get to know how to use it before starting out on a serious project.
    The insert options are clear - you can insert a Chapter from MS Word or Pages  in iBA  a "chapter" is a distinct "standalone" part of a book which can include sections and pages as required. Sections can  be  moved up or down within their chapter or can be copied from one chapter to another. The pages in any chapter are static and the only way to change content location is copy and paste.
    From your post, its seems you decided to  create you book using Pages and in one chapter expecting iBA to reformat it.
    I would suggest a solution is to count your  chapters and  add that number into an iBA  new book, then  copy your Pages chapters.  I would guess that the whole process would  take less than 30 minutes.
    Apple recieves feedback and suggestions for improvements, however the last update made very few changes to  the application and none of  those seen in many posts - such as being able to move pages. This indicates that Apple at  least,  are satisfied that the version is functional enough for  how Apple see books being made for its store. 12 months ago this  forum was  taking  hundreds of posts  per day asking advice, its now a trickle- which I take to be in indicator that  as a group, iBA users have taught themselves how to use the application and its  many options and third party add on's. iBA is more suited to the interactive side of publications as Apple intended, creating a mainly text only "novel" seems to be considered by Apple as the easy part!

Maybe you are looking for

  • Why won't my iPhone 5s allow me to answer FaceTime calls on the new iOS 8.0.2?

    In addition to my iPhone 5s not allowing me to answer any FaceTime calls, my iPad Air freezes the FaceTime screen and has to be restored to be able to use it again. My Macbook Pro freezes the FaceTime screen and the visual is always blurry. In additi

  • How can I tell if my iPhone 4 was bought at apple

    Here is the thought if you buy a phone form manufacture and it is not tied to any carrier. That allows me to choose a carrier for my phone. So what makes it right that once I use a carrier it becomes locked to them and I have no choice

  • Any guess as to what's wrong with the display? Glows but no image.

    Helping a friend with the A1226 (15 inch Macbook pro). LCD is lit (glows), but a few light lines/bars on left side, no real image at all that I can see. Works fine on my external display. I removed the top case, and played with the connections a litt

  • Unable to see attachment attached in SRM in R/3

    Hello Experts, We are in SRM 7.0 classic scenario using DMS. We are facing an issue as described below:- When we are trying to open the attachment attached in SRM in backend R/3 system,we getting an error message "NO application exists".We are gettin

  • My 5.1 T5900 speakers is causing my monitor to flicker

    I bought this speaker of mines a few days ago. Installed it around the perimeter of my computer and it worked fine. Then i shifted my computer just by a bit and that's when the problem started. My monitor started flickering like crazy. I thought "deg