Control Height&Width of pages in Acrobat doc

I want to reduce the size of some pages in a pdf document.
The document contains both searcheable text and pictures.
But right now some of the pictures have ended up being to large.
I don't understand how to control this.

Sorry I used the wrong word in the first post, and there is no Edit option.
The sentence should read:
But right now some of the pages have ended up being to large.
I am sure that Adobe would not overlook something basic like this!
If I compile a number of existing pdfs into one pdf, surely I can then standardise their size, so that one page isn't twice the size of the next?

Similar Messages

  • How to control width an height of a page region

    Hi all.
    How do i control width an height of a page region?. Say you have 4 regions on a page and want to tightly control these attributes, for example as a percentage of page dimension.
    Is that possible?, Also can it be manipulated dynamically?
    Best regards, Luis ....!

    Hi Luis,
    I don't know about dynamically but in the Region Attributes you can add 'style="width:100px" (or whatever value you want 10%, 25% etc.) to control the width
    and to control the height you need to add:
    <div style="overflow: auto; height: 450px;">(again or whatever size)
    to the region header and
    </div>to the region footer
    regards
    barney
    Edited by: barneyonfire on 27-Jan-2012 16:58
    sorry it didn't show the tags before...

  • Wpf/webbrowser:-how to get height,width,scroll height and scroll width of render html/xhtml/xml pages.

    hi I am using to web browser control to get  height,width,scroll height and scroll width in wpf c#.
    Could You please tell me how to achive this information if .pages contain this css on body.
     style="-webkit-column-width:800px;  margin-right:800px; -moz-column-width: 800px; column-width: 800px; -webkit-column-gap: 0px; -moz-column-gap: 0px; column-gap: 0px; -webkit-column-rule: 0px solid #000;-moz-column-rule: 0px solid #000;column-rule:
    0px solid #000; height:800px; overflow:visible !important; ; margin:0px; -moz-margin:0px;-webkit-margin:0px;display:block;"
    I have to get height,width,scroll height and scroll width  on on complete event.
    this is MainWindow.xaml page
    <Window x:Class="WPFWebBrowserInvokeScript.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="MainWindow" Height="820" Width="820" Loaded="Window_Loaded">
        <Grid>
            <WebBrowser HorizontalAlignment="Left"
       Height="800"
       Margin="10,10,0,0"
       VerticalAlignment="Top"
       Width="800"
       Name="MainBrowser"/>
            <!--<Grid x:Name="grid1"></Grid>-->
        </Grid>
    </Window>
    this  MainWindow.xaml.cs
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    using System.IO;
    namespace WPFWebBrowserInvokeScript
        /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class MainWindow : Window
            public MainWindow()
                InitializeComponent();
            private void Window_Loaded(object sender, RoutedEventArgs e)
                string strHtml = "";
                using (StreamReader sr = new StreamReader("D:/epubunzip/ePub2_Sample03a_USgovernment_SE_Gr9-12_EN_U1/OPS/9780547451381_c01.html"))
                    strHtml = sr.ReadToEnd();
                    strHtml = strHtml.Replace("<body>", "<body  style=\"-webkit-column-width:800px; overflow:visible !important;  -moz-column-width: 800px; column-width: 800px; -webkit-column-gap:
    0px; -moz-column-gap: 0px; column-gap: 0px; -webkit-column-rule: 0px solid #000;-moz-column-rule: 0px solid #000;column-rule: 0px solid #000; height:800px; ; margin:0px; -moz-margin:0px;-webkit-margin:0px;display:block;\">");
                    string str = "<script> function execScript(){return document.body.scrollWidth;}</script></head>";
                    strHtml = strHtml.Replace("</head>", str);
                    byte[] bytes = Encoding.UTF8.GetBytes(strHtml);
                    MemoryStream ms = new MemoryStream();
                    ms.Write(bytes, 0, bytes.Length);
                    ms.Position = 0;
                    MainBrowser.NavigateToStream(ms);
                    //MainBrowser.NavigateToString(strHtml);
                    MainBrowser.LoadCompleted += new LoadCompletedEventHandler(MainBrowser_LoadCompleted);
            void MainBrowser_LoadCompleted(object sender, NavigationEventArgs e)
    //here I am trying to get  height,width,scroll height and scroll width
    //It's gtting wrong info
              WebBrowser webBrowser = (WebBrowser)sender;
                //mshtml.htmld webDocument = (mshtml.HTMLDDElement)webBrowser.Document;
                //mshtml.HTMLBody webBody = (mshtml.HTMLBody)webDocument;
                //    var dd = webDocument.InvokeScript("execScript");
                //    //  string script = "document.body.style.overflow ='hidden'";         
                //    // var dd = webDocument.InvokeScript("execScript", new Object[] { script, "JavaScript" });
                //    var elems = webBrowser.Document.GetElementsByTagName("body");
                //    System.Windows.Forms.HtmlElement webBody = (System.Windows.Forms.HtmlElement)webDocument.Body;
           

    >>if i am rendering html from MemoryStreamor string in webbrowser control in wpf It's not applying this css
    Yes it does. If you for example add background-color: yellow; to the stlyle you will see that the page turn yellow:
    strHtml = strHtml.Replace("<body>", "<body style=\"-webkit-column-width:800px; background-color: yellow; overflow:visible !important; -moz-column-width: 800px; column-width: 800px; -webkit-column-gap: 0px; -moz-column-gap: 0px; column-gap: 0px; -webkit-column-rule: 0px solid #000;-moz-column-rule: 0px solid #000;column-rule: 0px solid #000; height:800px; ; margin:0px; -moz-margin:0px;-webkit-margin:0px;display:block;\">");
    If the styles doen't get applied as expected it is a browser issue. The WebBrowser control emulates Internet Explorer in IE7 rendering mode by default.  You will have to change some registry settings to change this behaviour. Please refer to the following
    links for more information:
    http://weblog.west-wind.com/posts/2011/May/21/Web-Browser-Control-Specifying-the-IE-Version
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/cf66e0cd-ab6f-45b8-b230-1d78f26670d2/opening-links-from-wpf-webbrowser-control-in-default-browser-instead-of-ie?forum=wpf
    -moz-column-width only works in FireFox for example.
    You may also navigate to an actual page and inject some javascript function that for example adds the styles to the body element dynamically or set the style properties of the body element directly:
    private void Window_Loaded(object sender, RoutedEventArgs e)
    MainBrowser.Navigate(@"E:/Epubs/ePub2_Sample05_Biology_SampleChapter_EN/OPS/ch01.xhtml");
    MainBrowser.LoadCompleted += new LoadCompletedEventHandler(webb_DocumentCompleted);
    private void webb_DocumentCompleted(object sender, NavigationEventArgs e)
    WebBrowser webBrowser = (WebBrowser)sender;
    dynamic doc = webBrowser.Document;
    //int _scrollWidth = (int)webBrowser.InvokeScript("execScript");
    //mshtml.HTMLDocument webDocument = (mshtml.HTMLDocument)webBrowser.Document;
    mshtml.HTMLScriptElement script = (mshtml.HTMLScriptElement)doc.createElement("script");
    script.setAttribute("type", "text/javascript");
    script.innerHTML = "function doSomething(){ /* do something here... */ }";
    //add script to the head
    dynamic head = doc.getElementsByTagName("head")[0];
    head.appendChild(script);
    mshtml.HTMLBody body = (mshtml.HTMLBody)doc.getElementsByTagName("body")[0];
    body.style.background = "yellow";
    //set any body.style property here...
    webBrowser.InvokeScript("doSomething");
    That's about it as far as WPF is concerned.
    Please remember to mark helpful posts as answer and/or helpful.

  • [AS] using [JS][OSX] find page height/width

    I've been struggling to find a way to determine the page count, height, and width of a PDF without requiring Acrobat. I've stumbled up a JS that can count pages using Finder. Now I need to determine the page height/width in order to find which is the greater number. It can be using Photoshop 7.0 of Finder. The reason I'm looking for a JS script and not AS script is because it doesn't seem AS is robust enough [yet] to read this.
    current working code for page count:
    tell application "Finder"
    set theItems to choose file
    do shell script "/usr/bin/mdls -name kMDItemNumberOfPages " & quoted form of POSIX path of result & " | /usr/bin/grep -o '[0-9]\\+$'"
    return result as integer
    end tell
    Know of anything similar to find and or compare page height/width??

    The height and width of a PDF can be different on every page -- it's not
    something fixed for a whole document.
    Shane Stanley

  • Controlling background width/height in 3.5

    Hello all, I'm stuck on a problem I've been trying to solve in 3.5.  I've seen a few solutions in 4.0 and above, but that doesn't help my situation.
    I want the application background image to maintain its aspect ratio, while still being as large as possible in the screen.  It should update as I stretch and resize the screen.  I can't find a way to do this in CSS or with the MXML.  I feel like the solution might have to do with overloading updateDisplayList(), but I just can't figure out what I need to do in there. 
    Thanks in advance!

    After re-reading my post, I feel like additional clarity is needed. 
    As an example, if i have a png for my background that is 800X600, It should fit perfectly in a 800X600 window.  Then, if I shrink the window down horizontally, the image should shrink down as well, but maintain a 4:3 aspect ratio, leaving empty space at the top and bottom. 
    My problem is:  I do not know how to manually control the width and height of the background image.  the backgroundsize style seems to scale uniformly with width AND height, so I cannot control them individually.

  • Skillbuilders Modal Page Plugin - Help in setting Modal window height/width

    Hello Apex Experts,
    I have downloaded the Skillbuilders Modal Page Plugin. I have tried to implement the same but my modal window is not showing correctly. I can see all the fields and scroll bar. I also tried to set the initial height/width settings but no luck.
    Can anyone help me?
    Your help would be appreciated.
    FYI: I'm using Apex v4.2 on Google Chrome.
    Many Thanks,
    Bhavin

    Bhavin,
    Go into the setting in the Shared Components for the plug-in and change the theme from custom to a number (1-5). Also, make sure to read this:
    http://www.danielmcghan.us/2011/08/new-browser-security-attributes-in-apex.html
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • Is there any way to get the height/width of an image before importing it in the indesign document.

    Hi All,
    I need to obtain an image's attributes such as dimensions (height, width in pixels) without placing image in indesign document.
    I have full path of the image (say abc.jpg is stored at c:\my pic\abc.jpg).
    I have obtained the IDFile for this image, tried getting size using GetFileSize() which correctly return size in bytes.
    Is there any way to get the height/width of image without importing it in the indesign document.
    Please, give me some hints. I have spent quite a lot time digging in CHM. I have searched in FileUtils, IDFile API's but found no method which serves this purpose.
    At this point I am clueless where to search next.
    Any help will be appriciated.
    Just a point to mention, I am able to get image height and width for an image in indesign doc though Its not my requirement.
    Thnx,
    D.

    You might be able to examine the contents of the PlaceGun after calling kImportAndLoadPlaceGunCmdBoss without actually placing the image in a document. Not sure, but would be worth looking at.
    Otherwise you will probably have to write platform specific code, ideally with a generic platform-independant wrapper (see SDKSamples/paneltreeview/PlatformFileSystemIterator).
    For the Mac, look at CGImageGetWidth() etc., not sure what the best option is for windows.
    Perhaps Quicktime could provide you with a platform independant solution.

  • Allow the user to control the width of the edit forum post input box

    I would like to control the width of of the edit-forum post input box.  This could be:
    automatically adjust the width of the box so that the box doesn't run off the right edge of the window.
    have a user global preference to set the preferred width
    at least, allow the user to change the width via the change size icon.  The three horizontal bars at the lower left of the input box. You can adjust the vertical dimension, but not the horizontal. TenFourFox 4.0.1. This is probably being blocked for some obscure reason.
    Here is an example of an over extended right margin:
    Curiously enough, the "software" let's me adjust the width & height of the add reason to edit text, but not adjust the width of the more important edit text box.
    Robert

    Testing
    Standard Reply box can be height adjusted but not width.
    Same with Advanced Editor
    No Adjustment at all in HTL Editor
    Edit.
    The Edit uses the Advanced Editor
    Only Height Adjustment again.
    I do seem to remember someone posting about the width and saying they could drag it over the edge of the right hand edge (Into the grey surround)
    This may have been a post in the lounge.
    It didn't actually try it at the time but have played with it since and have not seen it.
    Maybe it is something they "Fixed" in both senses of the word.
    Second edit.
    I can't alter the box that currently reads "Message Edited by:- ..."
    I also can't get this box to accept New lines  (they appear in the box but don't post that way)
    Corrected Spelling
    9:51 PM      Wednesday; May 11, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously
    Message was edited by: Ralph Johns (UK)
    Message was edited by: Ralph Johns (UK)
    and new line with a line space as well

  • How do I ungroup the pages in my doc, I need to move the first to the end, and it shows me all the pages are in a group

    On Pages:  I need to move the first page of my document to the end, and it shows me all the pages are in a group.  How do I ungroup the pages in my doc. 

    Hello there, linafrompereira.
    The following portion of the online Pages Help for Mac provides information on grouping items in Pages:
    Layer, group, and lock objects - Pages Help for Mac
    http://help.apple.com/pages/mac/5.2/#/tan5eab46568
    Group and ungroup objects
    Shift-click to select multiple objects.
    In the Arrange pane of the Format inspector, click Group (or choose Arrange > Group from the Arrange menu at the top of your computer screen).
    To ungroup an object, select it, then click Ungroup or choose Arrange > Ungroup.
    Tip: You can Control-click objects, then choose Group or Ungroup from the shortcut menu. You can also add these buttons to the toolbar: Group and Ungroup.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Have to display a dynamic table on specific height of JSP page

    I have large data.
    I have to show this data in dynamic table on jsp page.
    the JSP page is logically divided in different pages (as this page is used for printing on specified size of page)
    I can only display atmost 12 single rows on one page
    but some times text of one column of row become so large that rows expands vertically and occupies space of 2 or 3 rows (thats why now i have to display 8 or 9 rows on first page and then remaining on next )
    becoz of this i cant implement this check (only show 12 rows on a page).
    so what can i do to show specified height of table on one page and remaining move to next page.

    hi,
    its not so easy ...i had this problem once befor 2 months in the work
    i think u have to implement a Controller.java class that controll the iterating between pages ...
    u should have an pageIndex and just play with this index (increment and decrement)

  • Disorganized forums (with bonus of how to add a blank page in acrobat)

    Gee wiz these forums are disorganized.
    Hey adobe, want to see how a forum should be organized? Then go to any of the bazillion websites that are set up on a hierarchy and EASILY searchable within a topic, instead of the convoluted mess that you have here.
    Here is another answer to "how to a add a blank page" to a doc in acrobat.
    Since it has already been "answered" (how absurd is that) I am posting it here, in hope that someone can find it because THIS solution is no where else on the web as far as i can tell.
    Option click & drag a page to duplicate it then delete the page contents with the “touch up object” tool. then duplicate the page to your hearts content. note you will need to remove password if any first.
    .

    I've been usin acrobat since Version 4. Currently have last updated version 9.
    Just recently made some pdfs. The last time I did a multipage PDF has been a while (but still after version 9).
    But in order to see a full 8.5x11 page I had to do the dot trick I spoke of, there has to be some type of content even if same color as background, more than halfway down the page in order for it to show as a full page, you do nothing if it even creates one, shows as a half page or less.
    And if you want it to look professional, you type either in middle or just bellow middle, the words:
    THIS PAGE INTENTIONALLY LEFT BLANK
    set color to a pale gray (as shown above). I've seen PDF Manual for software using this.

  • XMPTextInput control height ignored in Flex 3 Properties

    I need to set my XMPTextInput controls so that they have a height of 32.  I have tried this in many different ways and none of them work.  In Flex 3 in "Design" mode I select the control, open the properties tab and set the height to 32.  The control changes to the correct height.  When I run the panel the control height of 32 is ignored and a small height is used.
    I even tried starting from scratch with a form that contains only one XMPTextInput field and I am still unable to increase the height.
    Any ideas??
    Fred

    Jorg,
    Thanks for the info.  Will this be addressed in Flash Builder 4?.  I am using  the canvas form layout.  What would be the best way to incorporate the xmpRead and xmpWrite events.  Does this have to be done for every instance of an TextInput control?  If so what would be the code to do this.
    This is the code that I am currently using. 
    Fred
    <?xml version="1.0" encoding="utf-8"?>
    <fi:XMPForm
            xmlns:mx="http://www.adobe.com/2006/mxml"
            xmlns:fi="com.adobe.xmp.components.*" width="1386" height="1000"
            label="Image Info" fontSize="14">
            <!-- Each namespace prefix that is used within an xmpPath-attribute,
             MUST BE registered at the top of EACH panel where it is referenced -->
                <fi:XMPNamespaces>
                <fi:XMPNamespace prefix="dc" value="http://purl.org/dc/elements/1.1/"/>
                <fi:XMPNamespace prefix="xmp" value="http://ns.adobe.com/xap/1.0/"/>
                <fi:XMPNamespace prefix="xmpRights" value="http://ns.adobe.com/xap/1.0/rights/"/>
                <fi:XMPNamespace prefix="my" value="http://ns.adobe.com/MyNamespace/"/>
                <!-- Create namespace for Fisher Fotos specific metadata information -->           
                <fi:XMPNamespace prefix="FileInfoPanel" value="http://ns.fisherfotoshots.com/FileInfoPanel/"/>
            </fi:XMPNamespaces>
                <mx:Canvas fontFamily="Verdana" fontSize="14" cornerRadius="1" id="sep01" height="974" width="1362" fontStyle="normal" textAlign="left">
                <mx:Label paddingLeft="10" paddingTop="10" text="Image Information" fontWeight="bold" fontStyle="italic" toolTip="This section contains general image information." width="50%" x="0" y="0"/>   
                    <mx:Label text="Image Type" id="ImageType" fontStyle="italic" textAlign="right" toolTip="Select the image type." width="93" x="128" y="39.5"/>   
                        <fi:XMPComboBox width="396" id="cboImageType" xmpPath="FileInfoPanel:ImageType" fontSize="14" x="239" y="32" height="36">
                        <mx:ArrayCollection id="arrayImageType">
                            <mx:Object label="Select Image Type" data="Select Image Type"/>
                            <mx:Object label="Single" data="Single"/>
                            <mx:Object label="Panorama" data="Panorama"/>
                            <mx:Object label="Collage" data="Collage"/>
                            <mx:Object label="High Dynamic Range" data="High Dynamic Range"/>
                            <mx:Object label="Other" data="Other"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>           
                    <mx:Label text="# Of Images" width="136" fontStyle="italic" textAlign="right" id="NumberImages" toolTip="Select the number of images or use the default 01." top="44" left="756"/>       
                    <fi:XMPComboBox x="900" y="32" width="219" id="cboNumberImages" xmpPath="FileInfoPanel:NumberImages" height="36">
                        <mx:ArrayCollection id="arrayImageNumber">
                            <mx:Object label="Select Number Of Images" data="Select Number Of Images"/>
                            <mx:Object label="01" data="01"/>
                            <mx:Object label="02" data="02"/>
                            <mx:Object label="03" data="03"/>
                            <mx:Object label="04" data="04"/>
                            <mx:Object label="05" data="05"/>
                            <mx:Object label="06" data="06"/>
                            <mx:Object label="07" data="07"/>
                            <mx:Object label="08" data="08"/>
                            <mx:Object label="09" data="09"/>
                            <mx:Object label="10" data="10"/>
                            <mx:Object label="11" data="11"/>
                            <mx:Object label="12" data="12"/>
                            <mx:Object label="13" data="13"/>
                            <mx:Object label="14" data="14"/>
                            <mx:Object label="15" data="15"/>
                            <mx:Object label="16" data="16"/>
                            <mx:Object label="17" data="17"/>
                            <mx:Object label="18" data="18"/>
                            <mx:Object label="19" data="19"/>
                            <mx:Object label="20 Or More" data="20 Or More"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>    
                    <mx:Label x="67" y="86.75" text="Orientation" width="154" id="Orientation" fontStyle="italic" textAlign="right" toolTip="Select the image orientation.  Horizontal=Landscape and Vertical=Portrait"/>       
                    <fi:XMPComboBox x="239" y="79.25" width="396" id="cboOrientation" xmpPath="FileInfoPanel:Orientation" height="36">
                        <mx:ArrayCollection id="arrayOrientation">
                            <mx:Object label="Select Image Orientation" data="Select Image Orientation"/>
                            <mx:Object label="Horizontal" data="Horizontal"/>
                            <mx:Object label="Vertical" data="Vertical"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>       
                    <mx:Label x="767.5" y="86.75" text="Calendar Usage" width="126" textAlign="right" fontStyle="italic" id="CalendarUsage" toolTip="Enter the month and year (ie. 10/2009) image was used in the calendar."/>
                    <fi:XMPTextInput x="901.5" width="395" height="27" xmpPath="FileInfoPanel:CalendarUsage" id="txtCalendarUsage" fontSize="14" allowCommas="true" xmpType="Text" fontFamily="Verdana" y="86"/>
                    <mx:Label x="76" y="133.5" text="Category" width="145" fontStyle="italic" textAlign="right" id="Category" toolTip="Select the primary image cateogry"/>   
                    <fi:XMPComboBox x="239" y="126" width="396" id="cboCategory" xmpPath="FileInfoPanel:Catagory" height="36">
                        <mx:ArrayCollection id="arrayCategory">
                            <mx:Object label="Select Primary Category" data="Select Primary Catagory"/>
                            <mx:Object label="Landscape" data="Landscape"/>
                            <mx:Object label="Wildlife" data="Wildlife"/>
                            <mx:Object label="Underwater" data="Underwater"/>
                            <mx:Object label="Architecture" data="Architecture"/>
                            <mx:Object label="People" data="People"/>
                            <mx:Object label="Other" data="Other"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>
                    <mx:Label x="746" y="133.5" text="Sub-Category" width="144" fontStyle="italic" textAlign="right" id="SubCategory" toolTip="Select the secondary image category or use the default None."/>
                    <fi:XMPComboBox x="900.5" y="126" width="396" id="cboSubCategory" xmpPath="FileInfoPanel:SubCategory" height="36">
                        <mx:ArrayCollection id="arraySubCategory">
                            <mx:Object label="Select Secondary Category" data="Select Secondary Catagory"/>
                            <mx:Object label="None" data="None"/>
                            <mx:Object label="Landscape" data="Landscape"/>
                            <mx:Object label="Wildlife" data="Wildlife"/>
                            <mx:Object label="Underwater" data="Underwater"/>
                            <mx:Object label="People" data="People"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>       
                <fi:XMPSeparator x="10" y="180" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
                </fi:XMPSeparator>
                <mx:Text x="10" y="200" text="Copyright And Release Information" id="txtCopyrightReleaseInfo" fontWeight="bold" fontStyle="italic" toolTip="Items in the section deal with copyright filing and releases."/>   
                <mx:Label x="48" y="231" text="© Registration Number" width="173" fontStyle="italic" textAlign="right" id="CopyrightNumber" toolTip="Enter the number provided by the Copyright Office."/>
                    <fi:XMPTextInput y="227" width="250" xmpPath="FileInfoPanel:CopyrightNumber" id="txtCopyrightNumber" height="27" x="239" borderThickness="1" cornerRadius="0" alpha="1.0" fontSize="14"/>
                <mx:Label x="710" y="224" text="© Registration Name" width="180" fontStyle="italic" textAlign="right" id="CopyrightName" toolTip="Enter the name that you used to file this copyright application"/>
                    <fi:XMPTextInput  x="898" y="220" width="398.5" height="27" xmpPath="FileInfoPanel:CopyrightName" id="txtCopyrightName" fontSize="14"/>
                <mx:Label x="97" y="274.95" text="Model Release" width="124" id="ModelRelease" fontStyle="italic" textAlign="right" toolTip="If a model release was necessary for this image and was obtained select Yes.  Otherwise leave this option set to No"/>   
                        <fi:XMPComboBox x="239" y="267.45" width="107" id="cboModelRelease" xmpPath="FileInfoPanel:ModelRelease" height="36">
                        <mx:ArrayCollection id="arrayModelRelease">
                            <mx:Object label="Release?" data="Release?"/>
                            <mx:Object label="No" data="No"/>
                            <mx:Object label="Yes" data="Yes"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>
                <mx:Label x="746" y="267.4" text="Property Release" width="144" id="PropertyRelease" fontStyle="italic" textAlign="right" toolTip="If a property release was necessary for this image and was obtained select Yes.  Otherwise leave this option set to No"/>
                    <fi:XMPComboBox x="898" y="259.85" id="cboPropertyRelease" width="107" xmpPath="FileInfoPanel:PropertyRelease" height="36.1">
                        <mx:ArrayCollection id="arrayPropertyRelease">
                            <mx:Object label="Release?" data="Release?"/>
                            <mx:Object label="No" data="No"/>
                            <mx:Object label="Yes" data="Yes"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>
                <mx:Label x="27" y="319" text="Date Of First Publication" width="194" id="DateOfFirstPublication" fontStyle="italic" textAlign="right" toolTip="Select Date of First Publication."/>
                    <fi:XMPDateField x="239" y="318.95" width="250" id="datDateOfFirstPublication" xmpPath="FileInfoPanel:DateOfFirstPublication" height="27" showToday="true" dateFormatString="MM/DD/YYYY"/>
                <mx:Label x="647" y="319" text="Country Of First Publication" width="243" id="CountryOfFirstPublication" fontStyle="italic" textAlign="right" toolTip="Select or enter the Date of First Publication."/>
                    <fi:XMPTextInput x="898" y="318" width="250" id="txtCountryOfFirstPublication" xmpPath="FileInfoPanel:CountryOfFirstPublication" height="27" fontSize="14"/>
                <fi:XMPSeparator x="10" y="354" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
                </fi:XMPSeparator>
                <mx:Text x="10" y="374" text="Stock Agency and Website Information" width="712" fontWeight="bold" fontStyle="italic" id="txtStockAgencyWebsiteInfo" toolTip="Items in this section are for Stock Agency and Website information"/>
                <mx:Label x="77" y="421.5" text="Stock Agency" width="151" fontStyle="italic" textAlign="right" id="StockAgency" toolTip="If the image has been uploaded to a stock agency, select the stock agency name.  Otherwise leave the option set to None."/>
                    <fi:XMPComboBox x="239" y="414" width="250" id="cboStockAgency" xmpPath="FileInfoPanel:StockAgency" height="36">
                        <mx:ArrayCollection id="arrayStockAgency">
                            <mx:Object label="Stock Agency" data="Stock Agency"/>
                            <mx:Object label="None" data="None"/>                           
                            <mx:Object label="Alamy" data="Alamy"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>
                <mx:Label x="710" y="421.5" text="Agency Upload Date" width="182.5" fontStyle="italic" textAlign="right" id="AgencyUploadDate" toolTip="Enter the date when the image was uploaded."/>
                <fi:XMPDateField x="902" y="422" width="267" id="datAgencyUploadDate" xmpPath="FileInfoPanel:AgencyUploadDate" height="27" dateFormatString="MM/DD/YYYY"/>
                <mx:Label x="129" y="466.75" text="Website" width="95" id="lblWebsite" fontStyle="italic" textAlign="right" toolTip="If the image has been uploaded to the company website select Yes.  Otherwise select No."/>   
                    <fi:XMPComboBox x="239" y="459" width="132" id="cboWebsite" xmpPath="FileInfoPanel:Website" height="36.5">
                        <mx:ArrayCollection id="arrayWebsite">
                            <mx:Object label="Uploaded?" data="Uploaded?"/>
                            <mx:Object label="No" data="No"/>
                            <mx:Object label="Yes" data="Yes"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>
                <mx:Label x="710" y="466.75" text="Website Upload Date" width="182.5" fontStyle="italic" textAlign="right" id="WebsiteUploadDate0" toolTip="Enter the date when the image was uploaded."/>
                <fi:XMPDateField x="902" y="466.75" width="267" id="datWebsiteUploadDate" xmpPath="FileInfoPanel:WebsiteUploadDate" height="27" dateFormatString="MM/DD/YYYY"/>              
                <fi:XMPSeparator x="10" y="512.5" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
                </fi:XMPSeparator>
                <mx:Text x="10" y="532.5" text="Art Print Information" fontWeight="bold" fontStyle="italic" id="txtArtPrintInfo"/>
                <mx:Label x="129" y="563.5" text="Art Print" width="102" id="ArtPrint" fontStyle="italic" textAlign="right" toolTip="If the image is to be sold as an Art Print select Yes, otherwise leave the default No selected."/>
                <fi:XMPComboBox x="239" y="556" width="107" id="cboArtPrint" xmpPath="FileInfoPanel:ArtPrint" height="36">
                        <mx:ArrayCollection id="arrayArtPrint">
                            <mx:Object label="ArtPrint?" data="ArtPrint?"/>
                            <mx:Object label="No" data="No"/>
                            <mx:Object label="Yes" data="Yes"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>
                <mx:Label x="77" y="607.5" text="Limited Edition" width="148" id="LimitedEdition" fontStyle="italic" textAlign="right" toolTip="If this is a limited edition select Yes, otherwise leave the default No selected."/>
                <fi:XMPComboBox x="239" y="600" width="107" id="cboLimitedEdition" xmpPath="FileInfoPanel:LimitedEdition" height="36">
                        <mx:ArrayCollection id="arrayLimitedEdition">
                            <mx:Object label="Limited?" data="Limited?"/>
                            <mx:Object label="No" data="No"/>
                            <mx:Object label="Yes" data="Yes"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>
                <mx:Label x="459" y="607.5" text="Edition Size" width="101" id="EditionSize" fontStyle="italic" textAlign="right" toolTip="Select the edition size."/>
                <fi:XMPComboBox x="568" y="600" width="140" id="cboEditionSize" xmpPath="FileInfoPanel:EditionSize" height="36">
                        <mx:ArrayCollection id="arrayEditionSize">
                            <mx:Object label="Edition Size" data="Edition Size"/>
                            <mx:Object label="N/A" data="N/A"/>
                            <mx:Object label="100" data="100"/>
                            <mx:Object label="250" data="250"/>
                            <mx:Object label="500" data="500"/>
                            <mx:Object label="1000" data="1000"/>
                            <mx:Object label="2500" data="2500"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>       
                <mx:Label x="733" y="607.5" text="Sold Out" width="154" id="SoldOut" fontStyle="italic" textAlign="right" toolTip="If print is sold out, select Yes, if not leave it selected to No."/>
                <fi:XMPComboBox x="902.5" y="600" width="120" id="cboSoldOut" xmpPath="FileInfoPanel:SoldOut" height="36">
                        <mx:ArrayCollection id="arraySoldOut">
                            <mx:Object label="Sold Out?" data="Sold Out?"/>
                            <mx:Object label="No" data="No"/>
                            <mx:Object label="Yes" data="Yes"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>
                <mx:Label x="77" y="654.5" text="Finish Options" width="151" id="FinishOptions" fontStyle="italic" textAlign="right" toolTip="Select the print finish type."/>
                <fi:XMPComboBox x="239" y="647" width="107" id="cboFinishOptions" xmpPath="FileInfoPanel:FinishOptions" height="36">
                        <mx:ArrayCollection id="arrayFinishOptions">
                            <mx:Object label="Options?" data="Options"/>
                            <mx:Object label="N/A" data="N/A"/>                       
                            <mx:Object label="Gloss" data="Gloss"/>
                            <mx:Object label="Satin" data="Satin"/>
                            <mx:Object label="Matte" data="Matte"/>
                        </mx:ArrayCollection>
                    </fi:XMPComboBox>       
                <mx:Label x="768.5" y="654.5" text="Paper Options" width="126" textAlign="right" fontStyle="italic" id="PaperOptions" toolTip="Enter the print paper options for the image."/>
                <fi:XMPTextInput x="902.5" y="653.5" width="426" id="txtPaperOptions" xmpPath="FileInfoPanel:PaperOptions" height="27" fontSize="14" fontFamily="Verdana"/>
                <mx:Label x="77" y="700" text="Printer Profile" width="151" id="PrinterProfile" fontStyle="italic" textAlign="right" toolTip="Enter the printer profile(s) used to print image."/>
                <fi:XMPTextInput x="239" y="699" width="469" id="txtPrinterProfile" xmpPath="FileInfoPanel:PrinterProfile"  allowCommas="True" height="27" fontSize="14" fontFamily="Verdana"/>
                <mx:Label x="752.5" y="701" text="Release Date" width="142" fontStyle="italic" textAlign="right" id="ReleaseDate" toolTip="Enter the original release date for the image."/>
                <fi:XMPDateField x="902.5" y="696" width="266.5" id="datReleaseDate" xmpPath="FileInfoPanel:ReleaseDate" height="27" dateFormatString="MM/DD/YYYY"/>
                <mx:Label x="86.5" y="741" text="Print Size Options" width="142" textAlign="right" fontStyle="italic" id="PrintSize" toolTip="Enter available print sizes."/>
                <fi:XMPTextInput x="239.5" y="740" width="468.5" id="txtPrintSize" xmpPath="FileInfoPanel:PrintSize" allowCommas="True" height="27" fontSize="14" fontFamily="Verdana"/>
                <mx:Label x="705.5" y="741" text="Print Framing Options" width="188" id="FramingOptions" fontStyle="italic" textAlign="right" toolTip="Enter available framing options."/>
                <fi:XMPTextInput x="901.5" y="740" width="395" id="TxtPrintFrame" xmpPath="FileInfoPanel:FramingOptions" allowCommas="True" height="27" fontSize="14" fontFamily="Verdana"/>
                <fi:XMPSeparator x="10" y="782" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
                </fi:XMPSeparator>
                <mx:Text x="10" y="802" text="Price Information" fontWeight="bold" fontStyle="italic" id="txtPriceInfo"/>
                <mx:Label x="115" y="830" text="Wholesale Price" id="PrintWholesalePrice" fontStyle="italic" textAlign="right" toolTip="Enter the print Wholesale price."/>
                <fi:XMPTextInput x="238" y="829" width="138" id="txtWholesalePrice" xmpType="Text" xmpPath="FileInfoPanel:PrintWholesalePrice" height="27" fontSize="14"/>
                <mx:Label x="115" text="Retail Price" y="865" width="113" textAlign="right" fontStyle="italic" id="PrintRetailPrice" toolTip="Enter the print Retail price."/>
                <fi:XMPTextInput x="239" y="864" width="137" id="txtRetailPrice" xmpType="Text" xmpPath="FileInfoPanel:PrintRetailPrice" height="27" fontSize="14"/>
                <mx:Label x="736" y="862" text="Retail Framed Price" id="RetailFramePrice" fontStyle="italic" textAlign="right" width="158" toolTip="Enter retail framed print price."/>
                <fi:XMPTextInput x="902" y="861" width="159" id="txtRetailFramedPrice" xmpType="Text" xmpPath="FileInfoPanel:RetailFramePrice" height="27" fontSize="14"/>
                <fi:XMPSeparator x="5" y="1022" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
                </fi:XMPSeparator>
                <mx:Label x="10" y="921" text="Image Info Panel © 2009 Fisher Fotos.  Version 9.3.5.  Last Modified 02/04/2010." id="txtPanelInfo" fontWeight="bold" fontStyle="italic" textAlign="center" width="1363"/>
                <fi:XMPSeparator x="0" y="901" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
                </fi:XMPSeparator>
                <fi:XMPSeparator x="0" y="952" width="1373" themeColor="#11110F" borderStyle="none" cornerRadius="2">
                </fi:XMPSeparator>           
            </mx:Canvas>
    </fi:XMPForm>

  • Gradient background is not extending the full height of the page

    Hi, I'm an extreme novice with dreamweaver - still figuring it all out. I'm needing to edit a website that was set up by someone else and I can't figure out why the gradient won't extend the full height of the page. It originally was fine but when we added lengthier text this problem popped up. I've fiddled with the css but nothing I'm doing is working - I hope it's something basic as I'd like to get this done asap.
    The H1 titles are also centred in their columns despite the css saying 'left align' so this also confuses me - can we get them to be left aligned?
    The URL is: www.petrohamman.co.za
    Thanks!
    Ash

    Did this other person leave to take up another career, because the set up is shocking?
    Amend your body css to as below:
    body {
    margin:0;  
    padding:0;
    font-family: Helvetica,arial,sans-serif;   
    color:#E6A9CC;
    You don't need height 125% on your #background css selector so either delete it or comment it out using /*   */ as shown below PLUS add overflow: hidden; as also shown below, that will take care of the gradient issue.
    #background
        width:100%;
        /* height:125%;*/
        background: -webkit-linear-gradient(#FFFFFF, #F4DCEB); /* For Safari */
        background: -o-linear-gradient(#FFFFFF, #F4DCEB); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(#FFFFFF, #F4DCEB); /* For Firefox 3.6 to 15 */
        background: linear-gradient(#FFFFFF, #F4DCEB); /* Standard syntax (must be last) */
        overflow: hidden;
    Amend text-align: center; which is currently declared in the h1 css selector to text-align: left; OR just delete it completely as the default alignment is already set to left.
    h1
        margin:0;
        padding:0;
        color:#E6A9CC;
        text-align: left;
        font-size:30pt;
    Importantly delete height: 500px; from the #content css selector or comment it out as shown below using /*   */. This is important as any information in the 'content' container will not scroll if the height is deeper than 500px, which it will be. The general rule is you should never set heights on any container, only in special circumstances where you know what the height will be or you want to show a restricted area such as a scrolling frame.
    #content
        width:100%;
        /* height:500px; */

  • Controlling table width for printing

    Is there a way I can use Dreamweaver, perhaps with CSS, to
    add a table to my site that is set to a fixed width of, say 850
    pixels but have the text inside the table wrap properly when
    printing? I know that fixed width tables beyond about 760 pixels
    cause the text to flow off the page when printed from some
    browsers, and we usually control this using a percentage to
    determine the table width. In this case, though, we'd like to use a
    fixed width when the content is viewed on screen, but have the text
    wrap when printing before it reaches the right margin of the fixed
    width table. Make sense?

    Have two stylesheets which control the width of the table.
    Make the screen
    media stylesheet set its width in pixels and the print media
    stylesheet set
    it in percents.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Klytus" <[email protected]> wrote in
    message
    news:e7hh5a$59n$[email protected]..
    > Is there a way I can use Dreamweaver, perhaps with CSS,
    to add a table to
    > my
    > site that is set to a fixed width of, say 850 pixels but
    have the text
    > inside
    > the table wrap properly when printing? I know that fixed
    width tables
    > beyond
    > about 760 pixels cause the text to flow off the page
    when printed from
    > some
    > browsers, and we usually control this using a percentage
    to determine the
    > table
    > width. In this case, though, we'd like to use a fixed
    width when the
    > content is
    > viewed on screen, but have the text wrap when printing
    before it reaches
    > the
    > right margin of the fixed width table. Make sense?
    >

  • How to controll column width in report ?

    Dear All,
    i have created Classic Report but here Column width is too large.
    i want to controll column width in report .
    How can i do this..
    Thanks

    Hi Vedant,
    There are two possibilities in your case.
    1.width of your column heading is too large.
    include break in your column heading
    for ex .. column heading is employee department number then write it as *[Employee(br)Department(br)Number]* // replace ( with < and ) with > in br
    2) Value is too large
    Go to Report Attributes->edit your column->column formatting->css style
    In CSS style put this display:block;width:100px;white-space:wrap
    Hope this will helps you,
    Thanks,
    Jitendra

Maybe you are looking for

  • Mac Pro 2.66 Dual Core Intel Xeon (April 2007) - Hard Drive Upgrade

    My hard drive is making rather worrying clicking noises so I think it's time to (very quickly) pick up a new drive. I'm a little confused about what kind of drive I should order. The drive it came with is a Seagate Barracuda ATA. Would anyone be kind

  • No output from executable using JNI

    Hi, Guys - New to JNI, have a question: I can get both my C and Java code to compile, a .dll to build, and the program to run, but I get no output. Execution seems to endl at the System.loadLibrary() call. I've tried to get it running in both cmd and

  • Printer prints only crap

    what i am describing here has happened with a powermac G4 running panther as well as with the new macbook (black) with tiger. both these computers as well as the printer are connected to the university network, the printer (HP laserjet 4250n) has an

  • Which Project Photos are in Albums

    I'm new to Aperture. I have many photos in a single project, and I have many albums in the project. When I look at my photos in the project, how do I tell which (if any) album they have been placed in? I'm trying to make sure all photos in a project

  • Dynamic setting of weblogic Classpath

    Hi All, As usual I have an unusual requirement. I need to set the classpath dynamically from within an application running on weblogic 6.0 and want the class loader to take notice of the change for future class loading, without bringing down the serv