URGENT Help ! What size to chose 8.5x11(paper) also, rulers not changing

I have some graphics that are 10.5" long and 1.25 inches high....
When I go to keynote, I get a bit lost - - as with Powerpoint (uggg) you can set it up for paper viewing.
So I need to know at what size do I choose to make it like a piece of paper only in LANDSCAPE mode? = 11x8.5
Lastly, while I changed the rulers to INCHES in preferences, when I go to show rulers, the change won't take, even if I close the program, its still showing up in cm or pixels.
Thanks for the help!

" Hello Jeff. Here at Oki Data, we do not support programming.  I would recommend contacting Adobe for further assistance. You can also browse their website at http://www.adobe.com/products/postscript/.

Similar Messages

  • Very urgent :how I order by my report within the report option not change i

    Hi master
    Sir I design the report but I need my report order by cheq_no now my report order by voucher no but If I change in query then my format must be change that very problem for me I again design
    Is any option in report through which I order by my report as per my require column I is if I need on cheq_no , voucher_no or date
    Please give me idea how I order by my report within the report option not change in report query
    Thanking you
    aamir

    Use a lexical parameter (see online help):
    select ...
    order by &sort_parameter

  • Urgent help, what do these exceptions mean

    I was wondering what it means exactly when a InternalError(Ex02),
    VirtualMachineError are thrown. im designing a programme which was working fine now suddenly it is throwing those errors, and for the life of me i cant figure out why and what they mean.
    Please can someone help.

    It means something really bad happened inside the JVM. And unless you want to mess with the JVM source code you are unlikely to fix it, nor usually figure out exactly what caused it.
    It might also be caused by your environment, like trying to run a class file created with java 1.0 on a 1.3 jvm or something like that. Not likely, but possible.
    Try redesigning your code and hope it goes away.
    If you can reduce the code to a very small sample you could post it here and someone might be able to provide a more specific answer and/or a work around. (You need to provide the jvm version you are running under too.)

  • ****urgent help*** What is AII system ?

    Hi,
    Our client wanted to run AII application . but we are not sure what is this for ?
    What is AII system ?
    How we can use this ? Is there a seperate license for this instance . Can we install AII on exsting R/3 or XI system?
    Please suggest asap.We have client discussion very soon.
    - Kristene

    Hi
    AII (Auto Id Infrastructure) is an application that helps in a RFID integration.
    You can connect RFID hardware devices to AII application and run business rules to enable tracking of assets to which RFID tags are applied.
    Yes there's a separate license for it. You can install AII on existing R/3. But better way is to install separately and connect to it via XI.
    For more details refer to these links:
    http://service.sap.com/scm
    http://help.sap.com/saphelp_autoid40/helpdata/en/index.htm
    New to RFID
    Hope this helps.
    Regards,
    Ashish

  • URGENT HELP! - The prefix "xsi" for attribute "xsi:type" is not bound

    Hi! i createD a WebService using the JWSDP 1.2. In the server-side i read a xml file, create another empty Document and using the importNode() method i populate the empty created doc. The problem is when i try to send client this created document. I'm using the DOMSource to send it to client side. Both client and WS method code are below! Does anyone know the answer??
    And I'm getting this error:
    [java] Endpoint address = http://localhost:8080/cm/ContextManager
    [java] [Fatal Error] :2:42: The prefix "xsi" for attribute "xsi:type" is not bound.
    [java] javax.xml.transform.TransformerException: org.xml.sax.SAXParseException: The prefix "xsi" for attribute "xsi:type" is not bound.
    [java] at org.apache.xalan.transformer.TransformerIdentityImpl.transform(TransformerIdentityImpl.java:469)
    [java] at contextclient.CMClient.main(Unknown Source)
    [java] Caused by: org.xml.sax.SAXParseException: The prefix "xsi" for attribute "xsi:type" is not bound.
    [java] at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1139)
    [java] at org.apache.xalan.transformer.TransformerIdentityImpl.transform(TransformerIdentityImpl.java:452)
    [java] ... 1 more
    [java] ---------
    [java] org.xml.sax.SAXParseException: The prefix "xsi" for attribute "xsi:type" is not bound.
    [java] at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1139)
    [java] at org.apache.xalan.transformer.TransformerIdentityImpl.transform(TransformerIdentityImpl.java:452)
    [java] at contextclient.CMClient.main(Unknown Source)
    ====================CLIENT CODE================================
    Source getdevice = manager.getDevice("How");
    DOMResult domResult = new DOMResult();
    // getting a transformation factory instance
    TransformerFactory transformerFactory = TransformerFactory.newInstance();
    Transformer transformer = transformerFactory.newTransformer();
    transformer.transform(getdevice, domResult);
    Node node = domResult.getNode();
    DOMSource domSRC = new DOMSource(node);               
    StreamResult streamResult = new StreamResult(System.out);
    transformer.transform(domSRC, streamResult);
    ===============================================================
    ===================WebService Method CODE======================
         public Source getDevice(String primaryContext)
              Source src = null;
              try
                   String uri = "C:\\foo\\DeviceInstance.xml";
                   DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                   DocumentBuilder builder = factory.newDocumentBuilder();
                   //create the first Document
                   Document doc1 = builder.parse(uri);
                   //create the second Document
                   Document doc2 = builder.newDocument();
                   //create the second doc's root element and append it
                   Element rootDoc2 = (Element)doc2.createElement("device");
                   doc2.appendChild(rootDoc2);               
                   //get root of first document
                   Element rootDoc1 = doc1.getDocumentElement();
                   NodeList list = rootDoc1.getElementsByTagName(primaryContext);
                   for(int i = 0; i < list.getLength(); i++)
                        Element nodeToMove = (Element) list.item(i);
                        Node newNode = doc2.importNode(nodeToMove, true);
                        rootDoc2.appendChild(newNode);
                   src = new DOMSource(doc2);          
              catch(DOMException dome)
                   dome.printStackTrace();
              catch(Exception e)
                   e.printStackTrace();
              return src;
    ===============================================================
    Does anyone know what could it be? Please, it's very urgent!
    Tks in Advance,
    Rodrigo.

    The xml i'm trying to send is below. It's important explain that in a standalone app it works perfectly. Unfortunately, when i perform the same actions in the WS world, it doesn't work. See, i tried to put the attributes inside the root element with the setAttributeNS() method but i got the same error again. How could i bound the attribute with no errors like that said before???
    <?xml version="1.0" encoding="UTF-8"?>
    <device xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="context.xsd">
    <Identity xsi:type="fooType">
                   <Name>
                        <GivenName>Rodrigo</GivenName>
                        <FamilyName>Felicio</FamilyName>
                   </Name>
              </Identity>
    <Identity xsi:type="foowType">
                   <DeviceID>dev00345</DeviceID>
              </Identity>
    </device>
    Regards,
    Rodrigo.

  • I followed directions of arrowing down and hitting delete, but cannot get certain addresses out of by address/location bar. What am I doing wrong? I also have not been able to figure out how to move existing bookmarks into folders.

    I am running Windows Vista, Firefox 3.6.13, on a 18 month old HP a6700f. I read the embedded help, but the instructions for deleting addresses doesn't work and it doesn't tell how to move existing bookmarks to a folder.

    See:
    * http://kb.mozillazine.org/Sorting_and_rearranging_bookmarks_-_Firefox
    Entries in the location bar drop down list with a yellow (blue on Mac) star at the right end are bookmarks.<br />
    You can remove such a bookmarked item that shows in the list if you open that url in a tab and click the yellow star in the location bar.<br />
    This will open the Edit This Bookmark dialog and you can click the Remove button to remove the bookmark if you want to remove such a bookmarked entry.<br />
    * [[Clearing Location bar history]]
    * [[Cannot clear Location bar history]]

  • How do I set the size of the font so that it does not change from site to site or page to page?

    The font size happens when I visit a new site or move from page to page in any given site. I want to have the same size font at all times with out having to manually change it all the time.

    If you need to adjust the font size on websites then look at:
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • My iPhone 3G has suddenly lost vibration and sound/ringtones(also does not change aspect when tilted). An incoming phone call can be answered but no sound is heard from the speakers9even though the caller can hear what I am saying). Any ideas?

    My 3G iPhone has suddenly lost all sound and vibration, it has also lost the "tilt" capability on-screen. An incoming call is registered without a sound, however, the caller can hear everything being said by me(whilst I hear nothing at all from his/her call).
    Any suggestions??

    *Update*
    I thought I had found the offending 'app' namely "Songpop."
    I regularly use "Songpop" on my phone late at night via my wifi connection.
    All enteries on my phonebill are at midnight (even though I have a data allowance it was excluded from allowance). I switched 3G off on Friday, played "Songpop" at midnight and at the exact time I got a "Server Error" message.
    I posted a message on the "Songpop" support forum.At first they said this was a problem relating to my ISP.
    I have spoken to my ISP and asked if there are connection drops at the time I have been billed (ie to establish if my wifi dropped and 3G kicked in without my knowledge) and have been advised that there aren't any connection drops at that time.
    "Songpop" have now responded that "This is an issue to take up with Apple Support"  see: http://support.songpop.fm/songpop/topics/playing_songpop_on_phone_via_wifi_but_i ncurring_download_data_charges_for_3g_useage?utm_content=topic_link&utm_medium=e mail&utm_source=reply_notification
    Hopefully someone at Apple can respond ....

  • HT1338 I receive this message ,repeatedly,when I try to update an App through App store:Error code 1009.Please help,what should I do?

    I receive this message ,repeatedly,when I try to update an App through App store:Error code 1009.Please help,what should I do?

    The App Store is not available in Iran.

  • Sqlplus SPOOL broken.  Urgent help.

    I have never seen this before.
    I am running a spool of a small query. It returns 7 rows and they are displayed. I go to look at the .lst file and the first row is gone from the spooled .lst file. I have tried this multiple times, and the results vary- sometimes it removes the first row and sometimes it removes the first column of data form the first row.
    ??????????????? Any idea where to start looking for trouble other than the alert.log?

    > Urgent help.
    My usual soapbox response (again).
    Please do not call your problem urgent. Why?
    Because you are saying that your problem is more important and more deserving attention than other people who post problems here. That is just a rude and arrogant thing to do. Your problem is by no means more important than any other person's problem in this forum - as you are in no position to compare and judge that.
    You are also demanding a quick response from those here that assist people like you. You have no right to demand anything as paid professionals are giving you their free time in assisting you. How can you claim that they must be "quick-quick" in spending their free time, without any payment, to assist you?
    So, practice some netiquette and remember that this is a PUBLIC forum and "staffed" by volunteers.

  • 11x17 PDF on 8.5x11 paper front and back?

    Is it possible to print a 11x17 PDF on 8.5x11 paper front and back?  Thanks!

    Assuming you are asking about printing either from Adobe Reader or Acrobat, it certainly is possible. And such printing has been possible for many, many years.
    Simply select the fit or shrink oversize pages option (or some similar wording for earlier versions of these products) and set the printer to print on both sides of paper (or duplex from printer setup from earlier versions of these products).
    However, if you really mean that you want to print an 11x17 page on 8.5x11 paper such that one half appears on the front and the other half appears on the back of the 8.5x11 paper, that is not directly possible with the current versions of Reader or Acrobat. In Acrobat (not Reader), you would need to duplicate the single 11x17 page and then crop each of the pages to 8.5x11 with one half of the original page on the first 8.5x11 page and the other half on the second 8.5x11 page. Save as a new document and then print normally with the duplex option to 8.5x11 paper.
              - Dov

  • Urgent help please, I made an file with the size 1024x768, then i made two folios, one for retina 2048x1536 and one for non retina 1024x768, i have alot of video content in it, everything works perfect on my retina ipad, but when i open it on ipad 2 an er

    Urgent help please, I made an file with the size 1024x768, then i made two folios, one for retina 2048x1536 and one for non retina 1024x768, i have alot of video content in it, everything works perfect on my retina ipad, but when i open it on ipad 2 an error appears on the pages with video content?

    its in german:
    der Vorgang könnte nicht abgeschlossen werden.
    something like the process coundnt be completed

  • Urgently, Help. Stuck on this issue when unable to figure out what methods to use...

    Urgently, Help. Stuck on this issue when unable to figure out what methods to use...
    Attachments:
    enquiry.jpg ‏101 KB

    so sorry about that
    I have an example attached.
    How to control the pause function automatic control by the system timing? when only reaches 0000hrs, pause function execute?
    Attachments:
    pause_button.vi ‏16 KB

  • I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    Do you have a Time Machine backup or clone?  If not,
    all is lost if you have in fact deleted your OSX partition
    and you will have to do a reinstall from Recovery HD
    and install all else.

  • What is system notice urgent (helps)

    I keep getting calls from ( system notice URGENT (HELP.S4
    PLEASE HELP.

    This is a phishing attempt.
    To avoid receiving any Calls like this, you can adjust your privacy to, Change Allow Callss from... "anyone" to "people on my Contact list only".
    http://community.skype.com/t5/Windows/Does-anyone-know-what-quot-sys-help-bn3-quot-is/m-p/967658#M71...
    You may also block and report the scammers.
    https://support.skype.com/en/faq/FA10488/how-do-i-block-or-report-a-contact
    Regards,
    Tamim
    Location - Dhaka | Bangladesh - Standard Time Zone: GMT/UTC + 06:00 hour
    If one of my replies has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.

Maybe you are looking for

  • Mouse over HTML link causes single frame to display at top of page Netscape only

    Having a wierd problem. When you run the mouse over HTML links on the page a single frame of the flash movie apears at the top center of the page. It only happens in netscape in firefox mode. IE, Opera, and Firefox do not have the problem. Problem si

  • UnmarshalException for large byte array :: Weblogic 8.1 SP2

    Hi, 1) We have a application running on Weblogic 8.1SP2. 2) Our scenario consist of Client code which reads a input file via Stream and converts it to a byte array before sending it to the Server. When the server side code calls the Remote Bean (with

  • Nokia E62 and iSync

    Does anyone know of a way to get these two to work. I just purchased an E62 assuming it would be supported because the E61 is. Anyone know of a plugin or hack. I've tried all the ones for the E61 but cant get any to work

  • Play one track then stop - please !

    Hi Is it not possible ( Using windoes version) to make Itunes only play one track - we use itunes for a simple form of djing, but do not need mixing cross fading etc. - Iust need it to play one track from the library, and while thats playing I want t

  • AT&T 2 Year Contract, Help..

    Okay I'm 8-9 months into the standard 2 year contract with AT&T. What I'm wonder is, can I carry my current contract over to my iPhone? I don't want to end with a new 2 year contract. Thanks.