Reg: Layout size & position

Dear All,
iam very new to development of Adobe PDF forms
i had encountered with one issue while setting the size of master page in CM by default its resetting it to INCHES
give me proper input to change from INCHES to CM
Highly Appreciated
Regards
Jaipal.E

Hi,
Go to Palletes in Menu bar.. Choose Drawing aids.. there from Grid and Ruler Settings.. Choose 'CM'
Thanks,
Rakesh

Similar Messages

  • HT4356 My Ipad prints to my airprinter that works OK but how do I set picture size/position etc

    My Ipad prints to my airprinter that works OK but how do I set picture size/position etc. At the moment from the photos app it prints an A6 photo in top left corner. How do I change that to something different.

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    If you put photo paper in the printer it will print correctly on the paper. Also, some photo printers will adjust the size photo printed when you put different size photo paper in the tray.

  • Remembering Window Sizes/Positions in Windows 7

    Hi
    I've read this thread regarding windows folder position/size (http://social.technet.microsoft.com/Forums/en-US/w7itproui/thread/5b524d53-df97-405d-835f-f081d106a19b)
    however it doesn't address my issue.
    For me, anytime I open a software, position it, play around in it and then close it, and reopen it again, it never goes back to the size/position I set it to. Same with Outlook. When I open a new email window, set its size and position, the next new email
    window is never where it needs to be.
    Is there a way for windows/outlook to remember where my software windows should be based on a position/size I give it?

    Hi,
    I would like to share the following link with you.
    http://support.microsoft.com/kb/235994
    You can know that how windows remembers the Window size.
    Regarding your outlook issue, you may close outlook then delete the frame key from HKCU\Software\Microsoft\Office\12.0\Outlook\Message\ and restart outlook. This will reset the window to the default size.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Filter folios by device / layout size on Windows 8.1?

    Yet another Windows 8.1 question...
    Is it possible to enable the app to only pull one layout size in Windows 8?  I'm trying to avoid creating a second app account to cut done on production time.  Our Android app sorts our iOS folios by their size and serves the proper layout based on the device, but on Windows 8.1 using the same app id the user is displayed both phone and tablet folios.

    I think you're going to have to call Enterprise Support again. I confirmed:
    Your Windows app is pointed to the same account as in your screenshot ([email protected])
    The app is still getting folios from the server with incorrect renditions.
    Here's an example from the actual server response the viewer gets when it asks for a list of folios:
          <manifestXRef>2015.03.W5 - AL Weekly - iPhone</manifestXRef>
    See how it still has "- iPhone" in it? The viewer is behaving correctly with what it is given from the service. I'm not sure why the service is returning something other than what you see in the portal. That's something Enterprise Support should be able to help chase down.
    Neil

  • Changing layout size of the Interactive Script in the Appl. Area

    Hi Experts,
    I need to change the standard size of the layout of the interactive script WinClient in the Apppl. Area. The screen has more space to increase the layout of the view of the Interactive Script but i don't know how to make this change.
    Thanks for your help

    hi!
    create a variable window and write this code there
    /: POSITION XORIGIN '2' CM YORIGIN '10' CM
    /: SIZE WIDTH '18.05' CM HEIGHT '18' CM
    /: BOX FRAME 10 TW
    /: POSITION XORIGIN '2.05' CM YORIGIN '10.05' CM
    /: BOX WIDTH '18' CM HEIGHT '1' CM INTENSITY 15
    /: POSITION XORIGIN '3.5' CM YORIGIN '10' CM
    /: BOX FRAME 10 TW WIDTH '0' TW HEIGHT '18' CM
    /: POSITION XORIGIN '9.2' CM YORIGIN '10' CM
    /: BOX FRAME 10 TW WIDTH '0' TW HEIGHT '18' CM
    /: POSITION XORIGIN '11.5' CM YORIGIN '10' CM
    /: BOX FRAME 10 TW WIDTH '0' TW HEIGHT '18' CM
    then create a main window with same height and width as that of the varaible window (overlapping the variable window on to it).
    now on looping in the main table and displaying the data boxes will come it self....
    here the main window dimensions are
    MAIN 00 Main Window 2,00 CM 10,00 CM 18,00 CM 18,00 CM
    [then with the help of data element call the box
    /: BOX WIDTH '18' CM HEIGHT '1' CM FRAME 10 TW
    in loop where write_form is called....]
    u will get the box with the data printed in the form......
    keeping same for the variable window....
    and try it....
    this will be done....

  • Simple layout issue: positioning text atop a JButton image

    (I apologize for the cross-post; I assumed that this forum was for relatively advanced Swing topics, and therefore initially posted this question in the "New to Java Technology" forum.)
    I've got a newbie Swing problem that I just can't seem to figure out. Basically, I'd like to place text for a JButton in a certain location within the image I'm using for the button. If I use the following code:
    String buttonText = MyStringFactory.getString();
    JButton myButton = new JButton(buttonText, new ImageIcon("myimage.png"));
    myButton.setHorizontalTextPosition(SwingConstants.CENTER);
    myButton.setVerticalTextPosition(SwingConstants.CENTER);The text will display within the button, but it will be exactly centered atop the image. What I'd like is to have the text displayed on top of the image, but to be left-aligned. So, instead of:
    |        Test        |
    ----------------------I want:
    | Test               |
    ----------------------Where the image behind the word "Test" is the image specified when I created the myButton JButton object. The string can be of varying length and must support various fonts (i.e., simply using a monospaced font and padding on the right-side of the string with spaces isn't an option). In more explicit terms, what I want is a way to center the text vertically with respect to the background image, and place it (the text) X pixels from the left-hand side of the background image.
    I've looked at using OverlayLayout to solve this problem, creating a JButton and a JLabel and placing them both within a JPanel. However, when I do this, the JLabel is always rendered behind the JButton, so I can't see it. Is there any way to specify the z-ordering of objects in a JPanel when using OverlayLayout?
    Or is there a much simpler solution to this (seemingly) simple problem?
    Thanks in advance for any assistance!

    hello guy,
    well, you seem to want your text to be in a very specific position since you mention x pixels.
    i don't think you can tell a JButton where exactly to draw the text and icon.
    if you want to do that, you'll have to create you own button.
    something like that:
    class CustomButton extends JButton {
    String text;
    ImageIcon icon;
    public CustomButton(String text, ImageIcon icon) {
    // only use the default constructor of the JButton
    // and save the text and icon separately
    super();
    this.text = text;
    this.icon = icon;
    // set some preferred size so that the layout
    // manager has some idea of how big your button will be
    this.setPreferredSize(new Dimension(
    icon.getIconWidth(),
    2*icon.getIconHeight()));
    // override paintComponent()
    public void paintComponent(Graphics g) {
    // first call this method in the super class
    // this will draw your button color, outline, borders..
    super.paintComponent(g);
    // now draw your icon whereever you want it on
    // your button
    g.drawImage(icon.getImage(),5,
    getHeight()/2-icon.getIconHeight()/2,null,this);
    // and draw your string.
    // using FontMetrics to get the dimensions of your
    // string will allow it to be independent of
    // font type and size
    g.drawString(text, icon.getIconWidth()+10,
    getHeight()/2+g.getFontMetrics().getAscent()/2);
    hope that helps a bit :)
    cheers, alex.

  • GUI component size/position control

    Hi, everyone. I am trying to write a board game in Java. From my previous experience (I wrote a oscilloscope control interface using JFrame last year), most (or all?) of the GUI components (such as buttons and slider) change their sizes and positions automatically, when I used FlowLayout or BoardLayout layout manager. I also tried the BoxLayout layout manager, but it didn't work well.
    Are there any way that I can control the size and the position of GUI components? By using a specific layout manager? or are there any way other than using different layout manager?
    When I create my board game, I want my buttons to sit on the exact location I want, and appear at the size I want.
    Thanks a lot.
    Davidson

    Absolute positioning or writing your own layout manager is easier than you think, especially in the case of a board game.
    Here is what you can do to use existing java class:
    1. extends a JPanel with GridLayout, and overide all methods involving get size and set Size to fixed size. This is your actual game board.
    2. use another JPanel with horizontal BoxLayout, add the panel in step 1 first, then add a Horizontal Glue, so in this new Panel, the width of your game board is honored here.
    3. use another JPanel with verical BoxLayout, add the panel in step 2 first, then add a vertical glue. The height of the game board is honored here.
    4. Both the width and the height are guarantteed to be fixed when the painting area is larger than the actual board.
    5.To handle the case where the painting area is smaller than the board, you can use a JScrollPane, or to set the minimum size of the parent container so that it won't happen.

  • Swing layout/size problem with JFrame and JApplet.

    I have a class that extends a JFrame, the classes layout is BorderLayout. I then have a class that extend JApplet, this classes layout is GridBagLayout (this class has a JTabbedPane - which contains JPanels). The problem I'm having is no matter how big I make the size of the applet or frame (using setSize), the applet/frame stays the same size - no matter how large I make it.
    Can anyone please help?
    Thanks,
    dosteov

    Here is the basic code:
    Thanks in advance,
    dosteov
    public class EADAdm extends JApplet
    EADAdmFrame theFrame = new EADAdmFrame(this);
         public void init()
              // Take out this line if you don't use symantec.itools.net.RelativeURL or symantec.itools.awt.util.StatusScroller
    //          symantec.itools.lang.Context.setApplet(this);
              // This line prevents the "Swing: checked access to system event queue" message seen in some browsers.
              getRootPane().putClientProperty("defeatSystemEventQueueCheck", Boolean.TRUE);
              // This code is automatically generated by Visual Cafe when you add
              // components to the visual environment. It instantiates and initializes
              // the components. To modify the code, only use code syntax that matches
              // what Visual Cafe can generate, or Visual Cafe may be unable to back
              // parse your Java file into its visual environment.
              //{{INIT_CONTROLS
              getContentPane().setLayout(new GridBagLayout());
              setEnabled(false);
              getContentPane().setBackground(java.awt.Color.lightGray);
              setSize(800,800);
              getContentPane().add(AdmTab, new com.symantec.itools.awt.GridBagConstraintsD(0,1,2,1,0.5,0.5,java.awt.GridBagConstraints.CENTER,java.awt.GridBagConstraints.HORIZONTAL,new Insets(3,12,4,14),120,120));
              AdmTab.setFont(new Font("Dialog", Font.PLAIN, 12));
              titleLbl.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
              titleLbl.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
              titleLbl.setText("EAD Administration");
              getContentPane().add(titleLbl, new com.symantec.itools.awt.GridBagConstraintsD(0,0,1,1,0.0,0.0,java.awt.GridBagConstraints.CENTER,java.awt.GridBagConstraints.NONE,new Insets(12,36,0,0),307,15));
              titleLbl.setForeground(java.awt.Color.blue);
              titleLbl.setFont(new Font("Dialog", Font.BOLD, 15));
              exitBtn.setText("Exit EAD Administration");
              exitBtn.setActionCommand("Exit EAD Administration");
              getContentPane().add(exitBtn, new com.symantec.itools.awt.GridBagConstraintsD(0,2,2,1,0.0,0.0,java.awt.GridBagConstraints.CENTER,java.awt.GridBagConstraints.NONE,new Insets(6,371,10,14),66,8));
              exitBtn.setFont(new Font("Dialog", Font.PLAIN, 12));
         //theFrame.setVisible(false);
         login();
         AdmTab.addTab("Administration", new LogoPanel() );
         userPanel = createUserPanel();
         AdmTab.addTab("Edit Users", userPanel );
         fpoPanel = createFPOPanel();
         AdmTab.addTab("Edit FPO", fpoPanel );
         regulationPanel = createRegulationPanel();
         AdmTab.addTab("Edit Regulations", regulationPanel );
         rolloverPanel = createRolloverPanel();
         AdmTab.addTab("Rollover", rolloverPanel );           
              //{{REGISTER_LISTENERS
         SymMouse aSymMouse = new SymMouse();
              this.addMouseListener(aSymMouse);
              SymAction lSymAction = new SymAction();
              exitBtn.addActionListener(lSymAction);
              SymKey aSymKey = new SymKey();
              this.addKeyListener(aSymKey);
         theFrame.getContentPane().add(this);
    public class EADAdmFrame extends JFrame
    EADAdm theApplet;
    public EADAdmFrame(EADAdm theMainApplet)
              //{{INIT_CONTROLS
         //     theApplet = theMainApplet;
         //     this.getContentPane().add(theApplet);
              getContentPane().setLayout(new BorderLayout(0,0));
              getContentPane().setBackground(java.awt.Color.lightGray);
              setSize(1000,1000);
              setVisible(false);
         theApplet = theMainApplet;
              //{{REGISTER_LISTENERS
              SymWindow aSymWindow = new SymWindow();
              this.addWindowListener(aSymWindow);
              SymComponent aSymComponent = new SymComponent();
              this.addComponentListener(aSymComponent);

  • Best Practices for image layout and positioning using anchored frames in Framemaker 10

    Hi,
    I'm looking for the best practices in how to layout my images in Framemaker 10 so that they translate correctly to Robohelp 9. I currently have images inside of Anchored frames that "Run into" the right side of my text. I've adjusted the size of the anchored frame so that my text flows correctly around the image. Everything looks good in Framemaker! Yeah! The problem is that when I link my Framemaker document to Robohelp, the text does not flow around my image in the same manner. On a couple of Robohelp screens the image is running into the footer. I'm wondering if I should be using tables in Framemaker in order to get the page layout that I'm looking for. Also, I went back and forth...is this a Framemaker question or is this a Robohelp question. Any assistance would be greatly appreciated.

    I wish I could offer some advice, rather than simply adding to your question. I think there is something odd that happens with anchored frames.
    I have been going through fits trying to figure out why the placement of my graphics shifts when I run them through Frame 10-to-RoboHelp 9 conversion. The placement in our books is flush left to the body text area. However, when they convert, some are flush left, some are centered, and a very few are flush right. My boss is very unhappy with me, as I have been unable to figure out why this is happening. I didn't create these files, so I don't know if it's something that goes back to how the graphics were initially imported. But I can't figure out why everything looks right in Framemaker, with the frame attached to an anchor tag, etc. but the placement goes hinky when they convert.
    Any insights are appreciated. I'm wondering if it's going to come down to deleting them and recreating the graphic frame.

  • Window size/position

    The new iTunes wont remember window size and position. Every time I open it I have to maximize the window. Why wont the program let the user and not Apple set the window size??

    I have the same problem....hopefully Apple will address it soon.

  • Text Field layout/size issues

    Has anyone else noticed that when you add a text field component onto a layout, the view of it inside of JSC2 is not how it appears in browser? For example, I am staring at a JSC2 screen where the bottom of the line of text(label) aligns with the bottom of the text-field. However, once in the browser, the text field is a good amount larger (reader below) the label's bottom. From exploring, it seems like the text-field gains an extra grid size when translated from JSC2 to web. (My grid is set to 5 px, and the text-field only aligns once I make it 1 grid space too small). Is this the case? Possibly known bug, and is there any solution other then just make all of the text fields too small?
    Thanks

    I have a similar problem, and I think it is a bug to. The IDE display of a text field is about two times the size of the actual size of the text field displayed in the browser. I tried both IE 6.0 and Firefox and the result is the same, so it is not a browser specific issue.
    I have to set the columns attribute of the text field almost twice as big big in the IDE display to get half as much in the browser. Overall it is irritating since my design view looks like my text fields are over lapping other components when that is actually not the case when I deploy it.

  • Lightbox 2 -size & position of  image

    By default, the new image opens in the centre of the page and
    is cropped to a default size. How can I adjust the code so that it
    opens at a specific location and expands to specific size, please?
    I want to use the code for single images of same size and to open
    always at the same location..

    thanks. they have a forum, named huddletogether, but that is
    pretty well useless. Although same problem has been posted many
    times, the developer and others have not replied.... Apparently,
    the developer is TOO BUSY to attend to trivia like replying to
    questions about his OWN product. Pretty poor... I say...Not
    everyone wants the box to open in the centre of the page..:-((
    Hence my post here, in hope that someone might have the solution?
    UPDATE at 16.00gmt. I have played around with the code in the
    lightbox.js file. Line 237 has a line :
    this.lightbox.setStyle({ top: lightboxTop + 'px', left:
    lightboxLeft + 'px' }).show();
    I have added couple values, which position the image exactly
    where I want it. As:
    this.lightbox.setStyle({ top:160+ 'px',
    left:(-100+lightboxLeft)+ 'px' }).show();
    However, I am still looking for the code which gets the
    image's dimensions.... Maybe, there is no such a thing, as the
    enlarged images are always shown the same size; they are
    increased/decreased to the default value...
    Any ideas, please?
    UPDATE: That's all sorted. But as a result, the 'close' and
    'load' images are now showing far, far too big and in wrong
    position...

  • Reset gradient size/position in AI CC

    I'm not sure if I've missed a setting or gradients are behaving differently in AI CC.
    After filling a shape with a gradient fill and then modifying it's angle/position/size with the Gradient Tool (G)... then going to create a new shape, I want to reset the gradient back to the default angle/position/size. Usually I'd just click/double-click on the gradient I was using in the Swatches panel and it would reset. However this isn't working anymore.
    I was wondering if I've missed a setting to make this possible or there is a new way to do this? Any ideas?

    Works same way in CS5 as you described. But to answer your question fill with a non-gradeint swatch (temporarily) to clear the gradient tool positions, then fill with your final gradeint fill.
    This is easier to follow if you view >> show gradient annotator while doing this.

  • Window size/position and title question

    I can't work out how to control the position of my site
    within it's window, or the size of the window. I've tried all the
    settings in the Publish panel. I'm trying to get the flash stage
    (750 x 500) to occupy the centre of a slightly larger window (900 x
    600) which opens to that exact size.
    I also can't work out how to set the window title to anything
    other than index.
    thanks, URL below
    www.jasonfisherjones.com

    I have the same problem....hopefully Apple will address it soon.

  • Design template, setting size & position for success caption etc

    Hi
    We have a Design template but it only seems to template certain elements of a Quiz slide (which is what our template is for).
    I'd like to be able to set the size and position of:
    Question
    Review Area
    Question number 1 of x
    Success/Fail captions
    Back, skip, clear, submit buttons etc
    Can this be done?
    Thanks
    Anita

    Hi Leslie
    Thanks for taking the time to reply.
    There's four in my team using CP4 so having a template is helpful to make sure everyone is using the same standards in our projects.  We need consistency across the company and the template allows us to achieve this.
    I've just been reading more from the help file and it appeas you can only make changes to the object itself.  The Size and Position tab you see when you're in a project is missing when you go to change the properties in the Design Template.
    One of my team created the template and found these limitations so I thought I'd see if anyone had come across the same "want" and how they might have resolved it.
    I think in this case the answer is NO, it can't be done.
    Cheers
    Anita

Maybe you are looking for

  • Purchase Requisitions Approval Error

    Hi, We are working in Oracle Applications 11i. We have the follwoing modules installed and used: Purchasing, Inventory, HRMS(Payrol), General Ledger, Assets, Payables. I am trying to fill in the gaps in our initial setup in order to enable the user t

  • Custom Filename for Export Data from a Query

    Hi, Would like to define a custom filename for the file to be download as a csv from the web query, Is it possible? Regards Chocks

  • ORA-12015:  cannot create a fast refresh materialized view from a complex q

    Hi, I'm facing very strange problem. Please help me why this error is coming I'm creating a simple materialized view, but it is giving below error since this is simple select * from. CREATE MATERIALIZED VIEW EFMS.MS_TASK BUILD IMMEDIATE REFRESH FAST

  • F SFR France operator disappeared in PC Suite 7.1....

    Hi, I was until recently a happy user of 3G access with PC Suite 7.1.40.1 and One Touch Access. My operator F SFR France was listed in the prefigured operators, and properly detected when using my N97 mini. Unfortunately, on one of my machines - the

  • Adobe wont activate- Invalid serial number?

    Im confused. I bought CS5 extended from a seller on Ebay, when I tried to use it, the box came up "invalid serial number". I can do a "trial for 30 days", but apparently thats it. The box was sealed from Adobe, has the genuine Adobe sticker, its all