How can I create an icon that when clicked will open and maximize an image file?

How do I create a icon that when clicked will open and maximize an image file?  I have tried to use the simple image widget with maximize upon tap/click - however I am can only size the image really small and put on the page.  I'd prefer to have a graphic that when clicked it simply opens up the image.  This is for a very simple question/answer book.   The user is suppose to look at a picture and locate something.  I want to put an 'Answer' graphic on the image and then the user can click the 'answer' graphic and it will open up the picture with the answer identified. 
Is this possible?

Have yiu tried the PopOver widget?  You can drop an image into it, maximise the image and the widgets window...But, you cannot get it full screen.
With iBooks Author, you either learn to use what is available within the app, or look online for third party widgets to purchase which suit your project.

Similar Messages

  • In DPS/Indesign for iPad - How can i create a button that once tapped, will pre-populate an email?

    In DPS/Indesign for iPad - How can i create a button that once tapped, will pre-populate an email? like when you tap a recipe in Marth Stewart Every Day Food for example....

    http://forums.adobe.com/message/4190932

  • Acrobat Form button that when clicked will open a Windows Folder?

    Is there a way to have a button on an Adobe Acrobat Form that when clicked will open a Windows Folder located with a predefined UNC path? I'm looking for a scripting solution.
    UNC example: \\myserver\myshares\engineering\changeorders
    I'm using LiveCycle Designer ES v. 8.2.
    Thanks for any help that you can give.

    This is in Internet Explorer 6 (yes, horrible, I know), but we use a standardized image where I work, with pretty intense GPO's.
    Don't know what happens if you right-click the link; but from any other machine (with the same image) the same link will open with all three options "Open", "Save", and "Cancel".  These are not freshly imaged machines, so some setting must of been changed along the way to make this happen on this user's computer.
    Repaired Acrobat, but this resolved nothing.
    Also checked in IE to make sure that Adobe was enabled under the Programs tab.
    Also, the option to view a pdf within the browser is not turned on.
    Any other ideas?

  • With iDVD, how can I create a DVD that auto plays on insert and then loops?

    I want to burn a presentation using idvd which will be played at an exhibition. how do I create a dvd without menu that auto plays upon insert and then loops?
    Thanks
    Message was edited by: Host <to clarify Subject>

    To create a OneStep DVD:
    Connect your DV camcorder to your computer and set the camera to VTR, VCR, or Play mode. Turn on your camcorder if it doesn't turn on automatically.
    Open iDVD and click the OneStep DVD button. (If iDVD opens to a recent project, choose File > OneStep DVD.)
    Insert a recordable DVD disc.
    iDVD rewinds the tape in the video camera and captures the video.
    ------------or-------------
    To burn a OneStep DVD from a folder:
    Choose File > "OneStep DVD from Movie."
    Locate the movie you want to add in the dialog that opens, then click Import.
    Insert a blank DVD disc into the optical drive.
    This kind of disc is sometimes called "kiosk mode" and is a good way to create demos or other presentations that play automatically and require no user interaction.

  • How can I create a calculator that save result in memory and recall it back

    I need some advice or help on how i can save the result and call it back by typing 'm' for memory, 'r' for recalling the saved result, and 'c' to set the result back to zero.
    i have tried many ways but it doesn't seem to save the result.
    Here is the code of what i have so far.
    so, please if anyone could help me , it would be greatly appriciated.
    import java.util.Scanner;
    public class ImpCalculator
         private double result;
         private double memory;
         private double precision = 0.0001;
         public static void main (String [] args)
              Calculator clerk = new Calculator ();
              try
                   System.out.println ("Calculator is on.");
                   System.out.print ("Format of each line: ");
                   System.out.println ("operator space number");
                   System.out.println ("For example: + 3");
                   System.out.println ("To save result, enter the letter m.");
                   System.out.println ("To recall result, enter the letter r.");
                   System.out.println ("To clear result, enter the letter c.");
                   System.out.println ("To end, enter the letter e.");
                   clerk.doCalculation ();
              catch (UnknownOpException e)
                   clerk.handleUnknownOpException (e);
              catch (DivideByZeroException e)
                   clerk.handleDivideByZeroException (e);
              System.out.println ("The final result is " + clerk.getResult ());
              System.out.println ("Calculator program ending.");               
         public ImpCalculator ()
              result = 0;
              memory = 0;
         public void handleDivideByZeroException (DivideByZeroException e)
              System.out.println ("Dividing by zero.");
              System.out.println ("Program aborted");
              System.exit (0);
         public void handleUnknownOpException (UnknownOpException e)
              System.out.println (e.getMessage ());
              System.out.println ("Try again from the beginning:");
              try
                   System.out.print ("Format of each line: ");
                   System.out.println ("operator number");
                   System.out.println ("For example: + 3");
                   System.out.println ("To end, enter the letter e.");
                   doCalculation ();
              catch (UnknownOpException e2)
                   System.out.println (e2.getMessage ());
                   System.out.println ("Try again at some other time.");
                   System.out.println ("Program ending.");
                   System.exit (0);
              catch (DivideByZeroException e3)
                   handleDivideByZeroException (e3);
         public void reset ()     
              result = 0;
         public void setResult (double newResult)
              result = newResult;
         public double getResult ()
              return result;
         public void setMemory (double newMemory)
              memory = newMemory;
         public double recall ()
              return memory;
         public double evaluate (char op, double n1, double n2)
              throws DivideByZeroException, UnknownOpException
              double answer;
              switch (op)
                   case '+':
                        answer = n1 + n2;
                        break;
                   case '-':
                        answer = n1 - n2;
                        break;
                   case '*':
                        answer = n1 * n2;
                        break;
                   case '/':
                        if ((-precision < n2) && (n2 < precision))                         
                             throw new DivideByZeroException     ();          
                        answer = n1 / n2;
                        break;
                   default:
                        throw new UnknownOpException (op);
              return answer;     
         public void doCalculation () throws DivideByZeroException, UnknownOpException
              Scanner keyboard = new Scanner (System.in);
              boolean done = false;
              result = 0;
              System.out.println ("result = " + result);
              while (!done)
                   char nextOp = (keyboard.next ()).charAt (0);
                   if ((nextOp == 'e') || (nextOp == 'E'))
                        done = true;
                   else if ((nextOp == 'c') || (nextOp == 'C'))
                        result = 0.0;     
                   else if ((nextOp == 'm') || (nextOp == 'M'))
                        memory = result;
                   else if ((nextOp == 'r') || (nextOp == 'R'))
                        System.out.println ("memory value = " + recall ());
                   else
                        double nextNumber = keyboard.nextDouble ();
                        result = evaluate (nextOp, result, nextNumber);
                        System.out.println ("result " + nextOp + " " + nextNumber + " = " + result);
                        System.out.println ("update the result = " + result);
    Edited by: shadowjuan450 on Oct 28, 2008 8:20 AM

    What trouble are you having? Is it not compiling? Throwing errors? Not doing what you expected?
    Also: Use the "CODE" tags when posting code, it makes it much easier to read.
    Lastly: Find a specific area in the code you're having trouble with, and ask directed questions about that specific area.

  • How can I create accurate decimal dimensions when creating a new document or using the art board in Illustrator CS6? When I type in a number with a decimal, it automatically rounds the number up.

    How can I create accurate decimal dimensions when creating a new document or using the art board in Illustrator CS6? When I type in a number with a decimal, it automatically rounds the number up.

    For my part you are welcome, sdowers.
    Unfortunately, the uncertainty arising from the rounding has been up several times here in this forum.
    I just came to remember a warning that needs to be given:
    The rounding of the representation of a numerical value may be harmless in itself, but if you use it for any operation that changes the value, such as multiplication or whatever, things will go wrong because the operation will be made on the basis of the rounded value instead of the true value. So, as in your first case in post #2, 39.625 rounded to 39.63 will become 79.26 instead of 79.25.

  • How can I create a slideshow that depicts only a version of a photo rather than the original? Since the original and new versions are saved together, the aperture slideshow often choices the original rather than the desired version to display/

    How can I create a slideshow that depicts only a version of a photo rather than the original?   Since the original and new versions are saved together, the aperture slideshow often choices the original rather than the desired version to display.

    There are two things we use the name "Slideshow" for in Aperture:  a Slideshow Album, used for making Slideshows, and the Slideshow that is made.  (Imho, it is a design mistake to not call the containers used to create Slideshows, Books, etc., "Albums".)
    The Slideshow will use the Album Pick from any Stack.  A good way to use Aperture is to promote the Image you want to regularly use (such as, for example, a Version with adjustments) to the top of the Stack.  This makes it the Stack Pick, and will be the default Album Pick.  If you haven't done that, you can still change the Album Pick for any Stack in a Slideshow Album.  Expand your Stack(s), select the Image in each Stack that you want to be the Album Pick (and thus shown in the Slideshow), and "Stacks➞Set Album Pick".  (Note the keyboard shortcut; there is also a Toolbar icon for this.)  The change is immediate.  The Slideshow will always show the Album Pick (or, if there is not one, the Stack Pick) for every Stack in your Slideshow Album.

  • How can I create a URL for a PWA for MS Project Server 2010 project file that includes the view?

    Hi, this question has been answered for 2013. The answer here suggests that it can be done in  2010.
    See:
    http://social.technet.microsoft.com/Forums/projectserver/en-US/3affdc4f-36bf-4381-8b75-27c73465efd4/action?threadDisplayName=how-can-i-create-a-url-for-a-pwa-for-ms-project-server-2013-project-file-that-includes-the-view
    Who knows how?
    Regards
    Sander

    Hi Sander,
    As far as I tested it, it is not possible either with PS2010. The URL only contains the PDP name and the projUID.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • I'm new to Photoshop Elements and just getting started.  While in the organizer I have one group of photos up to learn with and now it says Edit in Progress with a padlock icon.  How can I remove this so that the photos will be restored to normal?

    I'm new to Photoshop Elements and just getting started.  While in the organizer I have one group of photos up to learn with and now it says Edit in Progress with a padlock icon.  How can I remove this so that the photos will be restored to normal?

    Go back to the editor and close the photo there.

  • How can I make it so that when Safari opens it takes me to the homepage?

    Say I am on youtube and I quit safari, when I reopen safari later, it goes to the page last open, in this case, youtube. How can I make it so that when Safari opens it always takes me to the homepage?

    Click on the red button (top left) to close the window before quitting.

  • How can i creat apple ID free when i am from georgia?

    how can i creat apple ID free when i am from georgia?

    Anyone can create an Apple ID.
    Instructions here >  Apple - My Apple ID

  • How do I create a filter that bypasses the in page and goes directly to spam rather to delete?

    How do I create a filter that bypasses the in page and goes directly to spam rather than to delete?

    From your question I'm going to guess you are talking about Mac Mail.
    If you are talking about a RULE then the "Perform the following actions:" would be to select "Move Message" to mailbox "Junk" instead of "Delete Message."
    If you are talking about something else then please give more information.

  • How can i fix my icons they all look like negatives and xrays

    HOW CAN I FIX MY ICONS THEY ALL LOOK LIKE NEGATIVES AND XRAYS

    System Prefs > Universal Access > White on Black OFF.

  • How can I show additional tab rows when using many open tabs?

    How can I show additional tab rows when using many open tabs?

    What method (code) did you use to get the Tab bar displaying in the space used for the Navigation Toolbar (location bar)?
    The Tab bar should be displayed above the Navigation Toolbar.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How can I view my photos in "Events" like in iPhoto? How can I create events?  I have 55,000 photos and 1700 events so the only way I can possibly manage my photos is using events that are one slide in size.

    I have 55,000 images organized into about 1700 events. The only reasonable way to view my library is using events in iPhoto where each event has one image That still leaves 1700 images to sort through but that is a lot easier than 55,000 images.  In the side bar is a folder with "iPhoto Events" but those views still show all of the slides.  How can I create events and view my photos as events as in iPhoto?  Events are critical for large libraries and has been my primary way to sort images.
    Thanks!

    I had a problem a couple of months ago when iPhotos suddenly rearranged the order of my Events (Why won't iPhoto let me arrange my photos?) .  I was told "Use albums not events - events are not a good way to organize - albums and folder are designed for organisation and are very flexible".
    Haha!  I should have paid attention and read between the lines!  My iPhotos were highly organised groupings - not according to date but the way I wanted them - and it was so easy to do!  I see now that if I had them all in albums, as per the Apple Apologist suggestion, I wouldn't have this unholy mess I have been left with just to make iPhone & iCloud users happy.  I am now going through Photos and making Albums (of what used to be in my Events)  ... maybe I'll get this finished before they do another non user friendly update!

Maybe you are looking for

  • Cannot modify Data Connection in Infopath form as the original webservice server no longer exists

    Hi, I am going to modify one of the data connections in my infopath form, but it throws me an error. The original server no longer exists. I know that I can change the manifest.xsf and replace the old server with the new server name. And when I pulle

  • Change of additional acct. assignment in automatically created line items

    Hello, How can we change the additional account assignment of automatically created line items in transaction MIRO. In my case the tax line item is created automatically in MIRO. I am able to change the account assignment of consumption line item. Bu

  • Report painter - library 0FL - plan data missing

    Hi In ECC6 using the new library 0FL (new general ledger) I am unable to obtain results for plan data. This is a basic reprot with restrictions for profit center and cost center. Any suggestions, appreciated thks MW

  • Problem in ADOBE Editor

    Hi Folks, I am facing some problem in using ADOBE interactive forms. I am using SAP NETWEAVER DEVELOPMENT STUDIO Version: 2.0.10 In Web Dynpro project after making UI Element Interactive form, to EDIT..it gives the error as An error has occured when

  • RDI format problem

    Hi Folks! I have a small problem in RDI format printing. Does anybody know if RDI format recognises the displayable/non-displayable characters? I mean characters like $, EURO symbol, ~, etc. When I am generating the output the special characters are