3D Rotation in InDesign App

Hello,
I would like to see if anyone can help me figure out how to do this: I am making an app for an iPad in Adobe InDesign and would like to put in a 3D picture rotation of a booth (along with content). I want the user to be able to move their finger around the screen and have the view adjust automatically. I would also like the the view to go up and down so people can get a good idea of how the booth looks when you stand inside of it.
I have some coding experience and would be happy with any suggestions: this includes trying to find a better program to do this in (if InDesign isn't what I need)
I've never built an app before and am working off of a file that was already finished in InDesign.
Thankyou

This looks just like what I was looking for! Thanks so much

Similar Messages

  • Installing a trial version of the Illustrator and InDesign App in Creative Cloud on my Mac is impossible. Keep getting 'Installation failed' notices. More information gives 0 fatal error(s), 0 error(s). Already repaired disk permissions in Disk Utility bu

    Installing a trial version of the Illustrator and InDesign App in Creative Cloud on my Mac is impossible. Keep getting 'Installation failed' notices. More information gives 0 fatal error(s), 0 error(s). Already repaired disk permissions in Disk Utility but nothing seems to work. Exit code: 7.

    Hi Maarton,
    Please follow the link to resolve the issue: Errors "Exit Code: 6," "Exit Code: 7" | CS5, CS5.5
    -Ankit

  • CC InDesign app Crashes on Launch

    I am trying to use the 30 trial for CC to see if I want to purchase it and I downloaded the CC, and downloaded the indesign app -
    It crashes everytime on launch
    it says its an app.crash
    no one at adobe will answer my questions for help.

    There were some font issues with the original CC release that would cause this, and I don't know if the trial downloads the latest version, so launce the Desktop Application and check for an update.

  • InDesign app will not install on iPad 1

    Now I have created an app through InDesign. I've got the ipa-file and have installed the test-app-file on my iPad 3.
    Works fine on iPad 3, but then I wanted to test it on my old iPad (1), and I get this message (translated from danish, I do not know what iTunes tells you in English):
    "The program "..." was not installed on iPad "My iPad1" because it requires a new version of iPad software"
    Does anyone know why this is happening, and does it mean what I think, namely that an InDesign app created through Creative cloud does not work on older iOS-systems?
    Should say that the old iPad is updated as far as it goes (iOS 5.1.1)
    Sincerely
    MikHva

    Read this maybe it will help shed some light on support for iOS 5.
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/digitalpublishingsuit e/pdfs/dps-viewer-ios5-eol.pdf

  • How do I transfer InDesign app to my second home computer???

    I have an IMAC with INdesign. I want to have the same INdesign App on my portable IBOOK.  I tried to transfer the app from my IMAC to my IBOOK with a LACIE memory stick with no luck.
    Talked to a chap in India support for almost an hour with no luck. He even took charge of my computer with no luck. Called Adobe Corp in California. Was on hold for 10 minutes after telling the front desk my needa. Gave up. What is the procedure for such a simple question?
    HELP!
    Richard

    Which version of InDesign - if it's CC you download it from the online Creative Cloud installer. You state "iBook" - if that's a laptop, assuming it has the right spec, that's fine, but it won't install on a tablet.

  • Downloading Indesign app

    I have tried to download Indesign app. It goes to 99% and then begins the download process begins all over again without completing the installation. I do have Indesign CS4 installed on my machine. Do I need to uninstall that version first?

    You need to provide exact system info. Downloads starting over could mean that your system does not meet the requirements when the installer starts to do its work and checks these things after the actual download.
    Mylenium

  • Help! My InDesign app is no longer operable in the new ios.

    My InDesign app was submitted to Apple ten days ago. Then the new ios came in and guess what?? My app no longer works!! Please help, according to the Apple guys it no longer even opens now beyond the splash page. Is there a fix for this? What do I do? I am not a programmer. Are you guys on top of this? Thanks. Fiona (ps: I HATE apple).

    yes, I just did that this morning. But now I get a kind of odd splashpage bug; where, as the app is opening on the ipad, I get a quick view of a vertical, stretched portrait-version of the splashpage before it goes on to the main app. Any ideas on this one??

  • Safe rotation in Indesign Server

    Hello,
    In the past i had some trouble with rotations of pictures during a import of a page, because a user has switched manually the anchor point and all pictures with rotation-angle rotated out of position. I could fix it with saving the old state, putting the anchor point in the middle, do the import and put the anchor point back to the user default:
    var curTransformationPoint = app.layoutWindows[0].transformReferencePoint;
    app.layoutWindows[0].transformReferencePoint = AnchorPoint.CENTER_ANCHOR;
    Do anybody knows in which way Indesign server (CS3) is working these things? Is the achor point in Indesign server always on the default (I think in the upper left) or is there another way to solve safe rotations ?
    Thanks

    Hello Dave,
    The problems i had were linked with the export of a page with rotated items:
    Here is some code:
    if(inddBox.graphics.length > 0){
            var curImage = inddBox.allGraphics[0];
            // ALTE WERTE SPEICHERN
            var curTransformationPoint = app.layoutWindows[0].transformReferencePoint;
            var curFlip = curImage.flip;
            var curShear = inddBox.absoluteShearAngle;
            var curAngle = inddBox.absoluteRotationAngle;
            var changed = false;
            if(curFlip != Flip.NONE || curShear != 0 || curAngle != 0){
                changed = true;
                app.layoutWindows[0].transformReferencePoint = AnchorPoint.CENTER_ANCHOR;
                curImage.flip = Flip.NONE;
                inddBox.absoluteShearAngle = 0;
                inddBox.absoluteRotationAngle = 0;
            cx30Box.setPictureXScale(curImage.absoluteHorizontalScale);
            cx30Box.setPictureYScale(curImage.absoluteVerticalScale);
            cx30Box.setPictureXScroll(curImage.geometricBounds[1] - inddBox.geometricBounds[1]);
            cx30Box.setPictureYScroll(curImage.geometricBounds[0] - inddBox.geometricBounds[0]);
            if(changed){
                // ALTE WERTE ZURÜCKSETZEN
                inddBox.absoluteShearAngle = curShear;
                inddBox.absoluteRotationAngle = curAngle;
                curImage.flip = curFlip;
                app.layoutWindows[0].transformReferencePoint = curTransformationPoint;
            cx30Box.setPictureHMirror(false);
            cx30Box.setPictureVMirror(false);
            if(curFlip == Flip.HORIZONTAL) {
                cx30Box.setPictureHMirror(true);
            else if(curFlip == Flip.VERTICAL) {
                cx30Box.setPictureVMirror(true);
            else if(curFlip == Flip.HORIZONTAL_AND_VERTICAL) {
                cx30Box.setPictureHMirror(true);
                cx30Box.setPictureVMirror(true);
            cx30Box.setPictureAngle(curAngle-curImage.rotationAngle);
            cx30Box.setPictureSkew(curShear-curImage.shearAngle);
    Is the anchor point of the indesign server always in the middle? And what is the behaviour of lines and other items ?
    Or is there something like:
    curImage.flipItem(FlipItemOptions.horizontal, AnchorPoint.centerAnchor);
    Thanks,
    Kay

  • IPhone 5, Is there a way to stop screen rotation for specific apps?

    The automatic screen rotation feature is useful - sometimes, and just plain annoying other times.  I prefer to read my e-mail in portrait mode, however the slightest movement or rotation while doing so will cause the screen to rotate (with the phone generally still in portrait position).  I then have to shake the phone to get it to rotate back.  This is very annoying.
    I would like to be able to lock the screen rotation for only a single app (e.g. mail) while still keeping it active for the camera, or videos.  Many of the book programs that I use, have this feature built-in, however this question is for apps that do not have this built-in.
    The built in rotation lock is all-or-nothing, and is generally a pain to use.  It adds another step to just about everything I do (If I read mail, then want to view a video, I have to go back and unlock it).
    Is there a way to lock the screen rotation for a specific app?

    I would have expected this function to be available in settings where the application specific settings are located.  (At least for the major applications like e-mail).

  • Group and Rotate in indesign

    How can I Group objects on an active layer and rotate them counterclockwise?

    Hi Fist
    does this suit your purpose?, set up using OSX 10.4.11 IDCS3
    tell application "Adobe InDesign CS3"
    activate
    try
    set mylayer to "TEST"
    set active layer of active window to mylayer
    end try
    set myDoc to active document
    set mySel to page items of myDoc
    tell myDoc
    set _mynewsel to make group with properties {group items:mySel}
    set rotation angle of _mynewsel to 90
    end tell
    end tell
    Budgie

  • No keyboard rotation in some apps

    Hello,
    in some apps (in landscape modus), when I want to give in some text, the keyboard will be opened into portrait mode.
    So i have to rotate the iPhone, then I give in my text, and after sending text, I have to rotate back to landscape modus.
    Happens onto iPhone 4, iPhone 5s, iPhone 6 plus, iPad mini and iPad Air after updating to iOS 8 - 8.02.
    For example into this App you can see it:
    http://www.gameloft.com/HOC/

    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • IOS 8.1 screen rotation in music app problem

    I'm currently experiencing a problem with my music app on the iPhone 6.  Whenever I open the music app and rotate it into landscape mode, the screen switches off but when I rotate it back to portrait it comes on again.How do I solve this? On iPhone 6

    I have rebooted the iPhone 5 and initially things seem to be fine. But then after a while if as I say, you disconnect the headphones or some other disruption occurs to the music the play/pause button in the command centre does not work. If you the go back to your list of tracks the little graphic equaliser icon is working indicating the track is playing, but it is not!
    I wasted a couple of hours yesterday thinking some work I was doing on my bike was faulty but I then tried it with an ipad on the last version of iOS and that works fine, the music resuming normally after a nav instruction interruption.

  • Screen Rotation in Remote App

    My screen used to rotate while using the Apple Remote App so I could set my iPad in the landscape position on it's smart cover while I was using it.  Now it won't rotate out of portrait mode.  All my other apps that rotate still do.  Has this changed in Remote?  Does it only display in portrait mode now?  That would be a bummer!
    I can't find any settings that pertain to just this app and screen rotation.
    Thanks.

    Are other people able to turn their iPad Minis and have the Remote app rotate it's screen?

  • Iphone 4 screen keeps rotating when closing apps

    It only started a few days ago but it's starting to get on my nerves.  My iPhone 4 screen keeps rotating when I go to close an app, and it rotates back when I go back to the home screen.
    I don't know why it's doing it, but was wondering if anyone did know.  And if so how to fix it?
    Thanks a bunch!

    It's fixed nevermind..

  • Can't open InDesign CC file says need version 10.1. InDesign App says it's to date.

    Adobe App Manager tells me I am up to date.

    Please go to Desktop publishing | Download free Adobe InDesign CC trial to download the latest InDesign.

Maybe you are looking for