Help!...Keynote not scaling correctly in 1.1

Have the recent 1.1 Author update and am using Keynote '09 5.1.1
I made a Keynote presentation at 2048x1536 (Resolution of new iPad with Retina).  All slide sizes are 2048x1536 and have a full page video at 2048x1536.
I imported the Keynote into Author and published to iPad (First Generation)  It plays all the static images fine but when it gets to the video slide, the image goes off the screen. 
I thought the new update would be able to handle this correctly?

So in Keynote just keep the resolution at 1024x768 and scale the video to fit within that? Then it should scale as needed?
Thanks KT

Similar Messages

  • When starting Window XP on my laptop (which was connected, in the past, in a wi-fi network now no more available) appears immediatly this allert: "iTunes Helper was not installed correctly. Please reinstall iTunes. ERROR 7."  Reistallation impossible!

    When starting Window XP on my laptop (which was connected, in the past, in a wi-fi network now no more available) appears immediatly this allert: "iTunes Helper was not installed correctly. Please reinstall iTunes. ERROR 7."
    Reistallation of older or up to date  iTunes versions is impossible because: "Installation package iTunes.msi is located on a network resource not available" and because "It is impossible to remuove thew previous verson of iTunes. Impossible fto find the path."
    Someone can help me ???
    Thank,
    Gerald

    Take a look at iTunes for Windows: "Error 7" message when opening iTunes. Perhaps your .NET Framework needs a repair.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Itunes helper was not installed correctly. Error 7 (windows error 14001) ?

    Upgraded to ITUNES 10 and received following error - Itunes helper was not installed correctly. Error 7 (windows error 14001) - have tried uninstalling all APPLE products, restarting etc and installing ITUNES and QUICKTIME separately yaddah yaddah - NO SUCCESS. Losing patience ?

    have tried uninstalling all APPLE products,
    Doublechecking. Were you using the instructions from the following documents?
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    (Doublechecking, because an error 7 off ituneshelper normally indicates trouble with Apple Application Support. If something else is going on, it's pretty exotic.)

  • Liquid layout site not scaling correctly in large browsers

    I have built a liquid layout Flash site using AS3 but it isn't  scaling correctly once I go above 1280x1024. I am currently using a Mac  screen with dimensions of 2560x1440 and it looks terrible. The menu  pushes to the top and the bg and page info stays central but with no scale.
    The website is: http://www.khawkinsdesign.com
    The HTML is 100% w+h so it's obviously something  within the AS3 code. This is causing me nightmares so if someone could  take a look at the code pasted and see if there is a way to resolve this  it would be greatly appreciated.
    ---//CODE//---
    package {
        import flash.events.MouseEvent;
        import fl.transitions.Tween;
        import fl.transitions.TweenEvent;
        import fl.transitions.easing.*;
        import flash.display.*;
        import FluidLayout.*;
        import flash.events.Event;
        import flash.net.URLLoader;
        import flash.net.URLRequest;
        import Classes.Lights;
         public class Website extends MovieClip{
             public function Website()  // this function ensures that when  the website is added to stage the Website() class is called
                 this.addEventListener(Event.ADDED_TO_STAGE, init);
                 public function init(e:Event):void
                 /* Set the Scale Mode of the Stage */
                 stage.scaleMode = StageScaleMode.NO_SCALE;
                 stage.align = StageAlign.TOP_LEFT;
                 /* Add the symbols to stage */
                 var bg = new bgHome();           
                 addChild(bg);
                 var menu = new Menu();
                 addChild(menu);           
                 var title = new Title();
                 addChild(title);
                 var home = new Home();
                 addChild(home);
                 var subCategory = new homeCategory();
                 //addChild(subCategory);
                 var footer = new Footer();
                 addChild(footer);
                 /* Apply the alignment to the background */
                 var bgParam = {
                     x:0.5,
                     y:0.5,
                     offsetX: 0,
                     offsetY: 0
                 new FluidObject(bg,bgParam);
                 /* Apply the alignment to the title */
                 var titleParam = {
                     x:0,
                     y:0,
                     offsetX: 0,
                     offsetY: 0
                 new FluidObject(title,titleParam);
                 /* Apply simple alignment to the title */
                 /*var titleParam = {
                     alignment: "TOP_LEFT",
                     margin: 0
                 new SimpleFluidObject(title,titleParam);*/
             var menuParam = {
                     x:0.5,
                     y:0,
                     offsetX:0,
                     offsetY:0
                 /* Apply the alignment to the menu */
                 new FluidObject(menu,menuParam);
                 /* Apply the alignment to the content */
                 var middleParam = {
                     x:0.5,
                     y:0.5,
                     offsetX: 0,
                     offsetY: 0
                     //offsetX: -home.width/2,
                     //offsetY: -home.height/2
                 new FluidObject(home,middleParam);
                 var leftParam = {
                     x:0.15,
                     y:0.5,
                     offsetX: 0,
                     offsetY: 0
                 //new FluidObject(subCategory,leftParam);
                 /* Apply the alignment to the footer */
                 var footerParam = {
                     x:0,
                     y:1,
                     offsetX: 0,
                     offsetY: 0
                 new FluidObject(footer,footerParam);
    //-----DEVIN PAGE CODE START ---- \\
                 //buttons
                 eventListeners();  //Turns on button event listeners
                 handCursors();  //Turns on Hand Cursors at site launch
                 //remove home button event listeners since that's the default
                 menu.home_btn.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);
                 menu.homeHit_mc.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);
                 menu.home_btn.removeEventListener(MouseEvent.MOUSE_OUT, btnOut);
                 menu.homeHit_mc.removeEventListener(MouseEvent.MOUSE_OUT, btnOut);
                 menu.home_btn.removeEventListener(MouseEvent.CLICK, btnHome);
                 menu.homeHit_mc.removeEventListener(MouseEvent.CLICK, btnHome);
                 menu.home_btn.useHandCursor = false;  //Turns off Hand Cursor for Home Button (that's the first page)       
                 menu.homeHit_mc.useHandCursor = false;
                 currentButton = menu.home_btn;   // the current Button  variable (declared below) ensures the buttons flip back once another  page is selected
                 menu.homeHit_mc.targetmc = menu.home_btn;  // Creates the targetmc variable so the buttons can flip
                 menu.aboutHit_mc.targetmc = menu.about_btn;
                 menu.webHit_mc.targetmc = menu.web_btn;
                 menu.contactHit_mc.targetmc = menu.contact_btn;
                 menu.infoHit_mc.targetmc = menu.info_btn;
                 menu.home_btn.targetmc = menu.home_btn;  // Creates the targetmc variable so the buttons can flip
                 menu.about_btn.targetmc = menu.about_btn;
                 menu.web_btn.targetmc = menu.web_btn;
                 menu.contact_btn.targetmc = menu.contact_btn;
                 menu.info_btn.targetmc = menu.info_btn;
                 function eventListeners():void
                     menu.homeHit_mc.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.aboutHit_mc.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.webHit_mc.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.contactHit_mc.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.infoHit_mc.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.home_btn.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.about_btn.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.web_btn.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.contact_btn.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.info_btn.addEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.homeHit_mc.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.aboutHit_mc.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.webHit_mc.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.contactHit_mc.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.infoHit_mc.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.home_btn.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.about_btn.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.web_btn.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.contact_btn.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.info_btn.addEventListener(MouseEvent.MOUSE_OUT, btnOut);
                    menu.homeHit_mc.addEventListener(MouseEvent.CLICK, btnHome);
                     menu.aboutHit_mc.addEventListener(MouseEvent.CLICK, btnAbout);
                     menu.webHit_mc.addEventListener(MouseEvent.CLICK, btnWeb);
                     menu.contactHit_mc.addEventListener(MouseEvent.CLICK, btnContact);
                     menu.infoHit_mc.addEventListener(MouseEvent.CLICK, btnInfo);
                     menu.home_btn.addEventListener(MouseEvent.CLICK, btnHome);
                     menu.about_btn.addEventListener(MouseEvent.CLICK, btnAbout);
                     menu.web_btn.addEventListener(MouseEvent.CLICK, btnWeb);
                     menu.contact_btn.addEventListener(MouseEvent.CLICK, btnContact);
                     menu.info_btn.addEventListener(MouseEvent.CLICK, btnInfo);
                 function handCursors():void    //turns on button mode for all buttons
                     menu.home_btn.buttonMode=true;   // Must turn movieclips on buttonMode
                     menu.homeHit_mc.buttonMode=true; 
                     menu.about_btn.buttonMode=true;       
                     menu.aboutHit_mc.buttonMode=true;
                     menu.web_btn.buttonMode=true;
                     menu.webHit_mc.buttonMode=true;
                     menu.contact_btn.buttonMode=true;
                     menu.contactHit_mc.buttonMode=true;
                     menu.info_btn.buttonMode=true;
                     menu.infoHit_mc.buttonMode=true;
                     menu.home_btn.useHandCursor=true;
                     menu.homeHit_mc.useHandCursor=true;
                     menu.about_btn.useHandCursor=true;
                     menu.aboutHit_mc.useHandCursor=true;
                     menu.web_btn.useHandCursor=true;
                     menu.webHit_mc.useHandCursor=true;
                     menu.contact_btn.useHandCursor=true;
                     menu.contactHit_mc.useHandCursor=true;
                     menu.info_btn.useHandCursor=true;
                     menu.infoHit_mc.useHandCursor=true;
                 function btnOver(e:MouseEvent):void
                     e.currentTarget.targetmc.gotoAndPlay("over");
                 function btnOut(e:MouseEvent):void
                     e.currentTarget.targetmc.gotoAndPlay("out");
    //-----------PAGE FUNCTIONS ------------ \\
                var exitTween:Tween;
                 var bgTween:Tween;
                 var currentBg:MovieClip = bg;
                 var prevBg:MovieClip;
                 var prevPage:MovieClip;
                 var currentPage:MovieClip = home;
                 var currentButton:MovieClip;
                 function btnHome(e:MouseEvent):void
                     e.currentTarget.targetmc.gotoAndPlay("click");
                     exitTween = new Tween(currentPage, "x",  Strong.easeInOut, currentPage.x, currentPage.x + 1000, 30, false);   //animate off old page
                     prevPage = currentPage;
                     currentPage = new Home();
                     addChildAt(currentPage, 4); //adds the about  page to the stage
                     exitTween.addEventListener(TweenEvent.MOTION_STOP, animateOn);
                     currentPage.x = stage.stageWidth/2 -1000;
                     currentPage.y = stage.stageHeight/2;
                    bgTween = new Tween(currentBg, "alpha",  Regular.easeOut, 1,0, 30, false);  // This calls on the bgTween variable  and fades oyt the currentBg
                     prevBg = currentBg;
                     currentBg = new bgHome();
                     bgTween.addEventListener(TweenEvent.MOTION_FINISH, bgOn);
                     addChildAt(currentBg,0);
                     currentBg.x = stage.stageWidth/2;
                     currentBg.y = stage.stageHeight/2;
                     eventListeners();               
                     menu.homeHit_mc.removeEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.homeHit_mc.removeEventListener(MouseEvent.CLICK, btnHome);
                     menu.homeHit_mc.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.home_btn.removeEventListener(MouseEvent.MOUSE_OUT, btnOut); //Disable Mouse Out functionality
                     menu.home_btn.removeEventListener(MouseEvent.CLICK, btnHome);  //Disable Mouse Click functionality
                     menu.home_btn.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);   
                     handCursors();
                     menu.homeHit_mc.useHandCursor = false;
                     menu.home_btn.useHandCursor = false;
                     btnFlip();
                     currentButton = menu.home_btn;
                 function btnAbout(e:MouseEvent):void
                     e.currentTarget.targetmc.gotoAndPlay("click");
                     exitTween = new Tween(currentPage, "x",  Strong.easeInOut, currentPage.x, currentPage.x + 1000, 30, false);   //animate off old page
                     prevPage = currentPage;
                     currentPage = new About();
                     addChildAt(currentPage, 4); //adds the about  page to the stage
                     exitTween.addEventListener(TweenEvent.MOTION_FINISH, animateOn);
                     currentPage.x = stage.stageWidth/2 - 1000;
                     currentPage.y = stage.stageHeight/2; 
                     bgTween = new Tween(currentBg, "alpha", Regular.easeOut,  1,0, 30, false);  // This calls on the bgTween variable and fades oyt  the currentBg
                     prevBg = currentBg;
                     currentBg = new bgAbout();
                     bgTween.addEventListener(TweenEvent.MOTION_FINISH, bgOn);
                     addChildAt(currentBg,0);
                     currentBg.x = stage.stageWidth/2;
                     currentBg.y = stage.stageHeight/2;
                     eventListeners();
                     menu.aboutHit_mc.removeEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.aboutHit_mc.removeEventListener(MouseEvent.CLICK, btnAbout);
                     menu.aboutHit_mc.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.about_btn.removeEventListener(MouseEvent.MOUSE_OUT, btnOut); //Disable Mouse Out functionality
                     menu.about_btn.removeEventListener(MouseEvent.CLICK, btnAbout);  //Disable Mouse Out functionality
                     menu.about_btn.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);       
                     handCursors();
                     menu.aboutHit_mc.useHandCursor = false;
                     menu.about_btn.useHandCursor = false;
                     btnFlip();
                     currentButton = menu.about_btn;           
                function btnWeb(e:MouseEvent):void
                     e.currentTarget.targetmc.gotoAndPlay("click");
                     exitTween = new Tween(currentPage, "x",  Strong.easeInOut, currentPage.x, currentPage.x + 1000, 30, false);   //animate off old page
                     prevPage = currentPage;
                     currentPage = new Web();
                     addChildAt(currentPage, 4); //adds the about  page to the stage
                     exitTween.addEventListener(TweenEvent.MOTION_FINISH, animateOn);
                     currentPage.x = stage.stageWidth/2 - 1000;
                     currentPage.y = stage.stageHeight/2;
                     bgTween = new Tween(currentBg, "alpha", Regular.easeOut,  1,0, 30, false);  // This calls on the bgTween variable and fades oyt  the currentBg
                     prevBg = currentBg;
                     currentBg = new bgWeb();
                     bgTween.addEventListener(TweenEvent.MOTION_FINISH, bgOn);
                     addChildAt(currentBg,0);
                     currentBg.x = stage.stageWidth/2;
                     currentBg.y = stage.stageHeight/2;
                     eventListeners();
                     menu.webHit_mc.removeEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.webHit_mc.removeEventListener(MouseEvent.CLICK, btnWeb);
                     menu.webHit_mc.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.web_btn.removeEventListener(MouseEvent.MOUSE_OUT, btnOut); //Disable Mouse Out functionality
                     menu.web_btn.removeEventListener(MouseEvent.CLICK, btnWeb);  //Disable Mouse Out functionality
                     menu.web_btn.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);       
                     handCursors();
                     menu.webHit_mc.useHandCursor = false;
                     menu.web_btn.useHandCursor = false;       
                     btnFlip();
                     currentButton = menu.web_btn;
                 function btnContact(e:MouseEvent):void
                     e.currentTarget.targetmc.gotoAndPlay("click");
                     exitTween = new Tween(currentPage, "x",  Strong.easeInOut, currentPage.x, currentPage.x + 1000, 30, false);   //animate off old page
                     prevPage = currentPage;
                     currentPage = new Contact();
                     addChildAt(currentPage, 4); //adds the about  page to the stage
                     exitTween.addEventListener(TweenEvent.MOTION_FINISH, animateOn);
                     currentPage.x = stage.stageWidth/2 - 1000;
                     currentPage.y = stage.stageHeight/2; 
                     bgTween = new Tween(currentBg, "alpha", Regular.easeOut,  1,0, 30, false);  // This calls on the bgTween variable and fades oyt  the currentBg
                     prevBg = currentBg;
                     currentBg = new bgContact();
                     bgTween.addEventListener(TweenEvent.MOTION_FINISH, bgOn);
                     addChildAt(currentBg,0);
                     currentBg.x = stage.stageWidth/2;
                     currentBg.y = stage.stageHeight/2;
                     eventListeners();
                     menu.contactHit_mc.removeEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.contactHit_mc.removeEventListener(MouseEvent.CLICK, btnContact);
                     menu.contactHit_mc.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.contact_btn.removeEventListener(MouseEvent.MOUSE_OUT, btnOut); //Disable Mouse Out functionality
                     menu.contact_btn.removeEventListener(MouseEvent.CLICK, btnContact);  //Disable Mouse Out functionality
                     menu.contact_btn.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);       
                     handCursors();
                     menu.contactHit_mc.useHandCursor = false;
                     menu.contact_btn.useHandCursor = false;
                     btnFlip();
                     currentButton = menu.contact_btn;           
                 function btnInfo(e:MouseEvent):void
                     e.currentTarget.targetmc.gotoAndPlay("click");
                     exitTween = new Tween(currentPage, "x",  Strong.easeInOut, currentPage.x, currentPage.x + 1000, 30, false);   //animate off old page
                     prevPage = currentPage;
                     currentPage = new Info();
                     addChildAt(currentPage, 4); //adds the about  page to the stage
                     exitTween.addEventListener(TweenEvent.MOTION_FINISH, animateOn);
                     currentPage.x = stage.stageWidth/2 - 1000;
                     currentPage.y = stage.stageHeight/2; 
                     bgTween = new Tween(currentBg, "alpha", Regular.easeOut,  1,0, 30, false);  // This calls on the bgTween variable and fades oyt  the currentBg
                     prevBg = currentBg;
                     currentBg = new bgInfo();
                     bgTween.addEventListener(TweenEvent.MOTION_FINISH, bgOn);
                     addChildAt(currentBg,0);
                     currentBg.x = stage.stageWidth/2;
                     currentBg.y = stage.stageHeight/2;
                     eventListeners();
                     menu.infoHit_mc.removeEventListener(MouseEvent.MOUSE_OUT, btnOut);
                     menu.infoHit_mc.removeEventListener(MouseEvent.CLICK, btnAbout);
                     menu.infoHit_mc.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);
                     menu.info_btn.removeEventListener(MouseEvent.MOUSE_OUT, btnOut); //Disable Mouse Out functionality
                     menu.info_btn.removeEventListener(MouseEvent.CLICK, btnAbout);  //Disable Mouse Out functionality
                     menu.info_btn.removeEventListener(MouseEvent.MOUSE_OVER, btnOver);       
                     handCursors();
                     menu.infoHit_mc.useHandCursor = false;
                     menu.info_btn.useHandCursor = false;
                     btnFlip();
                     currentButton = menu.info_btn;           
                 function animateOn(e:TweenEvent):void
                     new FluidObject(currentPage,middleParam);
                       removeChild(prevPage);
                 function bgOn(e:TweenEvent):void
                     new FluidObject(currentBg, bgParam);
                     removeChild(prevBg);
                 function btnFlip():void
                     currentButton.gotoAndPlay("out");
    //-----DEVIN PAGE CODE END ---- \\
    Message was edited by: Kyle Hawkins
    Message was edited by: Kyle Hawkins

    hi kyle, mi internet its very slow and i couldnt open your site, but the problem could be on the html, i use css that help a lot to htnl, y copy the code im using in my site:
    html,body {
    background-color: #000;
    padding: 0px;
    height: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    overflow:hidden;
    .container {
    padding: 0px;
    height: 100%;
    width: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    html and the body share the same css style, pay atention to the last line(overflow)
    the container its a div where i inserted the swf.
    hope it help you fix the problem

  • Pages are not scaled correctly, if you change the font size in browser (Fireworks export in CSS)

    I created some simple pages for my website with fireworks. I only used images and text and exported the pages in CSS and images. The Problem is that if you change the font size in the browser text and images or text and text often overlap each other. So what can I do that the page is scaled correctly?

    Yep, the "Font Size" option under Setup / Display is certainly not what it should be.
    Perhaps Menu or Fixed Font size would be more accurate.
    This problem extends to much of the device; the Browser, e-mails and the lock screen.  Lock screen certainly looks like it was thrown together.

  • SWF not scaling correctly

    Hi, I'm new to the OSMF and have a question about swf scaling. I've done exhaustive searches with every search engine I can think of and haven't found an answer, so I'm posting here in hopes that I can get this resolved quickly. Here's my situation.
    I'm using the OSMF to loop through swf, images, and movies. I'm using a serial element and letting it scale contents up to the size of the MediaPlayerSprite. The first time each swf is loaded, it is scaled incorrectly. The 2nd time through, the swf gets scaled correctly.
    I'm assuming this is because the scaling is happening before it the metadata for the swf is loaded. I have no guarantees that I can ask that a swf be made in a certain manner, so adjusting the incoming swfs is not an option.
    I've tried numerous workarounds with little success. Is there any way to preload the swf so that I have metadata by the time the OSMF needs to play it? Also, any other solutions would be welcome.
    Thanks
    Robert

    Jared,
    (First time poster too!)
    I've got the same problem and no amount of anything I've
    tried has worked.
    However, there is a work around - bit of a pain but it
    works...
    Publish your fla to Flash Player 6 and then insert you swf
    into Captivate 1 (one). Save it then open Captivate 2 (two) and
    open the previous saved Cap1 file - accept all the dire warnings
    about overwriting etc and it works. Not tried inserting Cap1 files
    in the middle of a Cap2 movie yet but I'm sure it can be made to
    work.
    Adobe - please tell us there's a fix coming out for
    this...

  • HELP does not work correctly

    In the Help does not work the function " Place on block diagram" and Find on the function palette".
    Does anybody know, what can I do with this?
    Thanks
     Ondrej

    Check this:
     Why Don't the "Place on Block Diagram" and "Find on Functions Palette" Options Work in Windows XP SP...
    LabVIEW Champion . Do more with less code and in less time .

  • I update my photoshop touch to 1.6 and the native font is not scaling correctly, whenever i enter for example "hello" i only get "he" and in some cases just pieces of words after resizing it, help!!!

    I update my photoshop touch to 1.6 and the text is not working, whenever i enter for example "hello" i only get "he" and in some cases just pieces of words, help!!!
    Message was edited by: Ignacio Barrientos
    Message was edited by: Ignacio Barrientos

    Thanks Laparra!! Thanks to your original comment again-- at least now I know if I need a "work-around" I now know at-least-that-the original-fonts in PS TOUCH seem to work. No wonder the default-font worked.. but not the NEW COPPERPLATE FONT.. YaY, mystery solved.. (almost)!   [i wished they'd change that default-font..and get a new default font...Lol.. It's pretty homely looking..Hee.) I normally have been using that original TRAJAN PRO FONT.. but the letter "J" almost looks like a straight line vs a rounded J.. which at least the new COPPERPLATE FONT (which is a more normal usable font--That's not boring like aerial is,etc... ]. So yeah that will be great when all those new fonts gets fixed! // It would be great too (on my PS TOUCH wishlist, if someday they could fix the TEXT BOX too.. to be able to better & easily add A LOT [more] TEXT on a graphic .. as I always have to go to the "OVER APP" [That's the name of the app in the APPLE store] on my iPad to do that... PS TOUCH only seems to let you do TITLES vs a more lengthy text on a project. If I want to make an EASY border I take the image I've been working on into the CAMERA+.Plus App.. Simple..[but I know it can lose its resolution]. Sorry so long!! Venting haha!! Will plan to keep an eye on this post & let you all know & visa versa! LORD BLESS!!

  • Help is not rendering correctly in Portrait view on a Tablet

    I'm making the Help from a Frame12 file, using the Responsive HTML5 format. Viewed in Portrait orientation on a tablet, the page is just blank. On Landscape view, the information appears, but isn't scrollable past the first view.
    I have searched through all of my settings, and nothing comes up. Any thoughts about what I need to tweak?

    I have moved this post the HTML5 Layouts forum.
    I think it might be that you are using an early version of the layout. Hopefully someone can confirm that.
    Meantime try another layout or try deleting the layout from your project and then create a new layout and select the same one from the Gallery. I believe that gives you the latest version of the layout.
    Not sure but hope that helps.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Keynote not displaying correctly on second display?

    I can't get Keynote 6.0 to display on a secondary screen on OSX 10.9. 
    I had a similar issue with Aperture but figured out a workaround for it but I can't seem to come up with anything for Keynote.

    i guess http://laptopvideo2go.com provides only NVidia drivers. For ATI, go to http://ati.amd.com and download latest XP drivers for Radeon X1600 (not mobility). Then go to http://www.driverheaven.net/modtool.php and download modtool. After extracting, mod the downloaded driver by following the instructions and install. You will have the latest drivers for your GPU.

  • PLEASE HELP - Subtraction not calculating correctly

    Post Author: hollyschulz
    CA Forum: Formula
    This formula I have seems to work any other time, but this one batch I am reporting on doesn't work properly:
    (distinctcount({CHART.CHART_ID}))-(distinctcount({@nc})){@nc} = if ({CHART.SUSPEND_CODE} <> "GC") then 1
    The results for {@nc} is 0 in the report, the result for (distinctcount({CHART.CHART_ID})) is 41.  How come this result of  (distinctcount({CHART.CHART_ID}))-(distinctcount({@nc})) is 40 in the report?? (41-0 should = 41 but crystal has 41-0 = 40)
    I tried adding a +1 to the end of the formula and pulling data from a different batch, but the results were 1 too much.

    Post Author: V361
    CA Forum: Formula
    Hi, Sometimes I will break the formula on purpose, save it any way and run, then when the error pops up, it will show the values in the formula editor. (in CR XI anyway)  try this formula..
    (distinctcount({CHART.CHART_ID}))-(distinctcount({@nc})){@nc} = if ({CHART.SUSPEND_CODE} <> "GC") then 1 / 0
    This will cause the formula to fail, but hopefully you will be able to see the value of {@nc} during the calculation.  Also, try adding this to the details section and manually count.
    If that does not help, could you give some sample data.

  • Just recently iTunes has been giving me this error message: "iTunes helper was not installed correctly." And then another message on top of that: "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 14001)

    I have tried everything ....I need step by step instructions because I need my itunes back up and running! thanks

    im getting the same error,but the update windows .NET framework is still not working, downloaded 2 Microsoft .net framework as suggested by apple support KB article, no go, didnt try creating a new user yet but since its still not working as tested its no use.please help need to update get my iTunes back and update my devices to iOS 5. reinstalled Quicktime and give me error : Please install Apple Application Support.  TWO days now im getting crazy. no itunes no Quicktime, possiby no apples in the future

  • Download Helper is not working correctly

    Recently, when downloading some YouTube videos, the video I'm watching doesn't always download to RealPlayer. When it does download, it doesn't capture the correct video name of the video playing. It keeps using a name from a video I downloaded shortly after I upgraded to Firefox 4.0 (about a week ago) which what I'm still using.

    I would recommend to contact the nearest Microsoft Partner and ask DVD there.
    If you insist on continuing downloading trial version, deleted cached content from internet browser and/or wait for better condition for download. Chances are that the transfer stops when there is slow transfer rate.
    Rgds
    Milos

  • Copy paste from Fireworks/Photoshop to Illustrator. not scaled correctly.

    Hi, I have an image thats originally about 800 x 1000 pixels. When I copy (ctrl + C) it from photoshop or fireworks in to illustrator. Its scaled very small, and stretching it becomes pixelated. shrinking it makes it have jagged edges, and I cannot for the LIFE of me find a smoothing tool, or an "optimize" image option like dreamweaver has. Honestly, what the hell? The view is set to 100%. The picture should be 100%!!!! I dont want the program scaling images for me without my permission, and no obvious option to stop that from happening. It also happens even when i save it and open it through illutrator
    The size of the document is letter size, if that even matters.
    I'm wondering if I'm just an idiot, because this has to be a post that I should never have to make as this type of thing should be standard.

    I believe its 300, thats what photoshop says when i click file info.
    Resolution: X: 300
                     Y:300
    Picture size is 3648 x 2736

  • "itunes helper was not installed correctly.  Please reinstall itunes.  Error 7."

    I am trying to download iTunes to my computer after reinstalling Windows. I continue to get the error listed above.
    can anyone help????

    Hi edorsey,
    If you are having issues installing iTunes on your Windows machine, you may find the following article helpful:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    Regards,
    - Brenden

Maybe you are looking for

  • I upload the interactive pdf to my website, but it will not download off my website.

    I made a simple interactive form in Livecycle Designer.  I upload it to my company's website, but it WILL NOT DOWNLOAD off of my website.  Someone else in my office has a different version of Adobe Acrobat and when he makes interactive pdfs and uploa

  • When to filter on table

    I have a table that contains a XML field. To make things easier, a view is created with extracted XML fields. This is deemed to be an expensive operation. A bunch of table is then joined with the view on a filter condition. My question is: Does every

  • Importing and Editing AAC files

    I am using Soundtrack Pro 2.0.2 and have imported a 5.1 channel .aac file. I am, however, unable to edit that file in STP. I can see all 5 channels but they are all greyed out, meaning I cannot individually do anything with those tracks. When I copy

  • JDBC- How Update record using preparedStatement() into  MS Access?

    Actually i got an error when i update the record,The setString() Parameter are stored in terms of arrays . The Error is ErrorSQL3.java.sql.SQLException:[Microsoft][ODBC Microsft Access Driver] Syntax Error in UPDATE Statement

  • Library order?!?!

    I opened itunes today and discovered my long-time library order was in disarray. Normally it's ordered by album, with '(What's the Story) Morning Glory' first, now my 'Album' order has changed to 'Album by artist' and the first album belongs to '3 Do