How to zoom into movieclip with double click and pan around?

i found a tutorial to make a clickable map using timeline animations.
i'd like to nest the original timeline into a movieclip and then allow users to double click to zoom in 200% and then double click again to zoom back to 100%. Id' also like to be able to pan around dragging while zoomed in.
any tutorial link for this?

lrosenth, Thanks for your reply!
when I received the notification of AVPageViewDidChange
How can I get the Scaling rate?

Similar Messages

  • My I pod only works with double click and I can't  drag the screen with my finger?

    Hi,
    My i-pod doesn't work very well at the moment.
    I can't drag over the screen en have to double click on my screen. I can't drag the screen from left to rigth and not from above to below.
    The hard reset didn't work and i can't reach the menu where i can restore all setting. My son alternated one of the direction.
    who can help me?
    thanks
    gtz Ton

    You have the accessibility VoiceOver feature turned on.
    Triple click the home button and try going to Settings>General>Accessibility and turn VoiceOver off. You may have to use three fingers to scroll the screen to get there. If problems see the following for how to turn off via iTunes:
      iPhone: Configuring accessibility features (including VoiceOver and Zoom)

  • Opening files with double-click and FileVault

    I'm experiencing an issue with 10.7.2 and something is telling me it's related to FileVault. When opening a .txt or .numbers file the associated application (TextEdit or Numbers) will open and display the document. But the pointer turns to the spinning disk and the application won't accept any clicks or keyboard shortcuts. If I alt+tab away from the application I cannot alt+tab or click the Dock icon to return to the application. After a few moments I have to Force Quit the application from the dock. I can also use kill-9 <PID> in Terminal to stop the process.
    This *never* happened before 10.7.2. TextEdit will, about 20% of the time, recover after 1.5 - 2.0 minutes of me just leaving it alone.
    This happens on *every* file I double-click for these applications. If I open the file from within the application (File | Open) it's fine, so I don't think this is a corrupt file problem.
    I open most applications by selecting the desired document from Spotlight (command+space <filename>) - this has the same effect as double-clicking the file with the mouse.
    Can this be related to FileVault? I'm open to coincidences, but because I've used 10.7 the same way (double-click or, more often, Spotlight) when opening files and haven't seen this until I started using FileVault I'm leaning towards that.
    I've not made any modifications to the OS - there are no auto-load programs and I've installed ony about five applications that didn't ship with OS X 10.7.
    Anyone else seen this issue?

    This was getting so frustrating I turned off FileVault and the problem went away. That's too bad, but there it is.

  • If I got one of the free books off of Itunes, how do I read it? I double click and it does nothing. Is it only to hook up to Iphones or Ipads?

    I got one of the free books of Itunes and I'm wondering how I read it.  I double click and nothing happens.  Is it only for Ipads and Iphones??

    If you have one of the public-domain books provided by Project Gutenberg (these are books published many years ago and which have therefore fallen out of copyright, such as the Dickens and Jane Austin books), you should be able to open it using Calibre:
    http://calibre-ebook.com/
    or one of the other applications that can open ePub format. Launch the app and point it to the book file, which will be in your iTunes folder, in iTunes Music (Media) -> Books.
    Regards.

  • Issue with double click zoom on Essbase Excel Add-in

    Several of my users have been experiencing a problem recently when the do a double click zoom in or zoom out in Excel Add-in 7.1.3. It will start clocking (icon flashes as well as the cells while the clocking is occuring) and the only way to break out of it is to hit escape. Sometimes the clocking will only last a minute but, depending on the number of members that you can drill down into, can last several minutes at which point the users end up just escaping out. This doesn't happen with all templates or with all users. Zooming in and zooming out using the menu works fine. This only occurs with double click zooming (which to the users is much quicker and they prefer not using the menu).
    This is Excel Add-in 7.1.3 on Office 2007 which I realize is not certified compatible but we have not had this issue until the last few weeks.
    Anyone else having this issue? Ideas?

    sometimes you dont find any excel sheets open but there will be a process allocated to it and running ..you can see this in the task manager..
    so go to task manager and try deleting all the process related to excel.
    Now after deleting all the processes you find NO excel sheets open..
    Try viewing the required excel sheet now..
    hope it works now..

  • How can i show details in ALV GRID with double click in a row?

    Hello, ich try to show the details of a row with double click in the line,
    but it doesn't work!?
    I have a eventhandler for doubleclick and the program run this code, but what i have to do, to show the details!?
    I try it with some methods like cl_gui_cfw=>set_new_ok_code, ...
    i think about the methods cl_gui_alv_grid->show_detail, but this method is private,
    i can create a class with inheritance of the cl_gui_alv_grid class and try this method!?
    Have anybody any ideas!?

    Hello Lars
    The following sample reports shows an ALV list with company codes. Double-clicking on any company code will open a second ALV list displaying all customers.
    *& Report  ZUS_SDN_ALVGRID_EVENTS_1
    REPORT  zus_sdn_alvgrid_events_1.
    DATA:
      gd_okcode        TYPE ui_func,
      gt_fcat          TYPE lvc_t_fcat,
      go_docking       TYPE REF TO cl_gui_docking_container,
      go_docking2      TYPE REF TO cl_gui_docking_container,
      go_grid1         TYPE REF TO cl_gui_alv_grid,
      go_grid2         TYPE REF TO cl_gui_alv_grid.
    DATA:
      gt_t001          TYPE STANDARD TABLE OF t001,
      gt_knb1          TYPE STANDARD TABLE OF knb1.
    *       CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
            IMPORTING
              e_row
              e_column
              es_row_no
              sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    *       CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_double_click.
    *   define local data
        DATA:
          ls_t001     TYPE t001,
          ls_col_id   TYPE lvc_s_col.
        CHECK ( sender = go_grid1 ).
        READ TABLE gt_t001 INTO ls_t001 INDEX e_row-index.
        CHECK ( ls_t001-bukrs IS NOT INITIAL ).
        SELECT * FROM knb1 INTO TABLE gt_knb1
          WHERE bukrs = ls_t001-bukrs.
        IF ( syst-subrc NE 0 ).
          MESSAGE 'No customers found' TYPE 'S'.
        ELSE.
    *     Trigger PAI of dynpro '0100' and set new ok-code
          CALL METHOD cl_gui_cfw=>set_new_ok_code( 'CALL_SCREEN_0200' ).
        ENDIF.
      ENDMETHOD.                    "handle_hotspot_click
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT * FROM t001 INTO TABLE gt_t001.
      REFRESH: gt_knb1.
    * Create docking container
      CREATE OBJECT go_docking
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CREATE OBJECT go_docking2
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Create ALV grid
      CREATE OBJECT go_grid1
        EXPORTING
          i_parent          = go_docking
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CREATE OBJECT go_grid2
        EXPORTING
          i_parent          = go_docking2
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set event handler
      SET HANDLER:
        lcl_eventhandler=>handle_double_click FOR go_grid1.
    * Display data
      CALL METHOD go_grid1->set_table_for_first_display
        EXPORTING
          i_structure_name = 'T001'
        CHANGING
          it_outtab        = gt_t001
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL METHOD go_grid2->set_table_for_first_display
        EXPORTING
          i_structure_name = 'KNB1'
        CHANGING
          it_outtab        = gt_knb1
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Link the docking container to the target dynpro
      CALL METHOD go_docking->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0100'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL METHOD go_docking2->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0200'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * ok-code field = GD_OKCODE
      CALL SCREEN '0100'.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE gd_okcode.
        WHEN 'BACK' OR
             'END'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
        WHEN 'CALL_SCREEN_0200'.
          go_grid2->refresh_table_display( ).  " necessary
          CALL SCREEN '0200'.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Regards
      Uwe

  • Want to disable Mail.app attaching folders with double click

    I recently upgraded to Leopard from Tiger and one of the really annoying things I contend with on an almost daily basis is the new (4.3) Mail.app's behavior regarding double clicking of folders.
    Basically when I am trying to navigate to add an attachment, I often accidentally double click folders as I am trying to make my way through them. In 99% of programs this is not an issue, but in Mail, the program will decide that what I want to do is attach the folder. Often this happens with giant, top-level folders, and so I am treated to a 10-20 second or so wait while it locates all 20GB of files in the folder and tries to add them to an e-mail. Then I have to delete that attachment and start over again.
    Is there any way to simply disable this behavior? I don't think I've had to attach a folder in a mail message in my life, yet I run into this problem almost every time I try to attach files.
    I don't consider monkeying with my double-click speed to be much of a solution. This is really just an issue with this one application.
    Message was edited by: Fastfission

    It took me a while to figure out what it was you were seeing.
    That happens in Column view because that is what column view does. You only need to click once on a folder to open it in column view. So, if you double-click, it thinks you want to use that folder. Attaching a folder to an email is a somewhat expected behavior, so that is how Mail responds. Other apps aren't expecting to get a folder, so it just happily ignores your double-click and waits until you provide a file to open.
    If you are in the habit of double-clicking to open all folders, then switch the layout to list view or icon view in the attach file dialog. Or, stop double-clicking folders in column view.

  • How to generate random objects with a click?

    Hi Guys,
    I am new to the forum so hello to you all!
    I start here with a question that doesn't leave me sleeping during the night.
    I am working on a interactive slideshow.
    That's all right, ultil now.
    Now things becomes blurry for me.
    In every page I would like to add a little animal in the lower right angle of the screen so, when u click on this animal, a baloon appears with a wroten sentence inside it.
    But, I wanto to make the sentences inside the baloon RANDOMLY different every time u click on the animal (using a selection, for example, of 30 sentences at all), but I don't really know what I have to do in order to realize my idea.
    I am not interested to create a preset cycle of sentences, but a random behavior with a click.
    any suggestion please?
    Thaks a lot and best regards!
    Theus

    As I imagined,
    I got some problems to do do that because I am new to the director use. So I can't made it working, if u cant be a little patient with me please, that's will be good!
    What I need is a more "steb by step" help if is not boring for you.
    I go to insert>control>field in order to create a field and then, after double ciking the field, I type four example sentences into the text editor that apperars, right?
    How I have to write the sentences inside the text editor in order to subdivide the text into first sentence, second sentences and so on? There is a special syntax to follow?
    I wrote these exaple sentences:
    "Triangle" "Square" "Circle" "Cube"..... As u see, I am not sure where and how I have to put the sentences in order to select them randomy
    About handlers.
    What I have to do to create an event handler?
    I created a button then i rename it ChooseRandomSentence but now I don't know what I need to do to proceed.
    Here have I to write this script?
    On ChooseRandomSentence
      global gSentenceList, gPreviousNR
      x = gSentenceList.count -- X = count sentences
      y =  random(x) -- Picks a random number from X
      repeat While y  =  gPreviousNR then -- check if number is used previous time player clicked button
          y =  random(x)
       end repeat
      put gSentenceList[y] into field "ShowSentence"  -- Shows random sentence in a field
      put y into gPreviousNR -- add number to next check
    end
    and this?
    on MouseUP
    ChooseRandomSentence
    end
    Some other questions:
    -What about letters X and Y into the exaples scripts u wrote? If I have 4 sentences, which numbers I need to use to replace X and Y?
    -I need to change sentences with  mouse clicking, and not simply moving the mouse over the sprite or the button, is MouseUP command a script about clicking or about moving over?
    As u see I am a very very beginner but I really want to learn, so hope I don't boring u with all those questions.
    Thanks again a lot
    and, If u came in Italy, there is a beer for you! cheers!!!
    Theus

  • Why can't I open files with double click, etc?

    Hello, all,
    I have been having problems with my MacBook (Aluminum late 2008, I think, OS 10.5). It runs slowly; files on the desktop and in my "Macintosh HD" often won't open with double-click but have to be opened with File-->Open; there are Word Work Files that won't go away; the trackpad is often stiff and not very responsive; clicking on the mouse is very stiff, despite very easy settings. In short, a lot of things are sluggish. Sometimes, also, I get the spinning beach ball, but not all the time.
    I have run disk permissons repair from Disk Utility many times (both from the desktop and from the MacBook install disk); I have replaced the directory with Disk Warrior at least twice; I have verified that the disk is OK; I have zapped the PRAM; and done other things of that kind.
    I took the MacBook to an Apple Store yesterday. It had been unplugged and much to my surprise, most everything seemed to be working all right. When I opened it today, however, I found everything as it was before I took it to Apple. Including the Word Work files, which I thought were gone.
    If I recall correctly, this started when I was working on a long editing project in Word, but I don't know whether that has anything to do with what has happened. I've done similarly long projects before, and this never happened.
    I could try trashing the Word Work files (there seem also to be quite a lot of folders with "recovered" files), but I don't want to do that unless I can be assured that nothing bad will come from doing that.
    I know this seems quite comprehensive, and may involve several issues, but I'm really unhappy about this and would love to think there is something more I can do, apart from returning to the Apple Store. Besides everything else, how can I khow that I won't find, again, that the MacBook will work fine there but goes back to its troubled state when I return?
    Clues, anyone?
    Thanks,
    jenny

    Hi, Mike,
    I have 211.59 left out of total HD space of 232.57.Space should not be a problem. I'll try using Activity  Monitor today. I have 2 GB of memory. But since this is the first time I[ve had this problem, I don't see how it could be a problem with memory, do you?
    I finished the project more than a week ago. After I shut down the computer, it temporarily returned to normal but subsewuently started acting odd again, although I've done nothing but email since I turned it on again.
    I am going to try getting rid of the Word Work files and see whether that helps. I am wondering whether the book I was working on had something wrong with it (it was written in NeoOffice but opened in Word), or my copy of Word has gotten corrupted. Although I haven't used Word since I finished with the book.
    Sorry this font is so tiny, but although I was able to choose my font in my original message, there doesnt' seem to be a place to do that here. At least, I don't see it.
    I'll get back to you on the Activity Monitor. Thanks.
    jenny

  • How to replace a movieclip with another movieclip

    How to replace a movieclip with another movieclip
    Hi,
    I am having a swf called tchild.swf... in this i got a
    movclip 'child1'. i am loading this tchild.swf into another swf
    tparent.swf within 'mcloader' movie clip.. i got another movclip
    called 'picture1'
    i am loading tchild.swf into mcloader movclip.. and i want to
    load 'child1' moviclip into picture1..
    how to replace a picture1 movieclip with child1 mc..
    PS: i dont want to load picture1 from library.. its on the
    stage.

    AWT or Swing?

  • Updated iPhoto 11 and cannot open Events with double click or any other way. I can only view those photos by creating an album from all of them, then I can open the album and edit or delete etc.  Any one have that problem?

    After upgrading to iPhoto 11 and the latest upgrade 9.4.1 (701 67) I cannot open any Event.  The normal double click does not work, nor anything else I have tried. The only way I can view the photos in an Event is to make an Album of it, and then I can easily open it with a double click and edit and delete, arrange photos etc.  Anyone have this problem. Any ideas about how to open an event?

    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder.
    (On 10.7: Hold the option (or alt) key while clicking on the Go menu in Finder to access the User Library)
    (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • How to invoke system editor by double click a file(windows)?

    how to invoke system editor by double click a file(windows)?
    Just like that, double click a file named a.doc, windows will open it by word.exe.

    I try that:
    exec("cmd /c start winword \"c:\dir\a b.doc\"");
    like this posting(http://forum.java.sun.com/thread.jspa?forumID=57&threadID=634576 ), and It is ok.
    But now I make a file list with different files, .pdf,.xls,.doc and so on, I wanna double click to open one with its default system editor.
    if no space:
    exec("cmd /c start " + file);
    will invoke the default editor to open it. if space, it can't do it.
    And now I rename all files, replace space to _.

  • Events will not open with double click/double click not working.

    Have just upgraded to iPhoto'11 and finding it a pain to use after previous iPhoto.  Events will not open with double click (even though highlighted in yellow) and photos will not open with double click or videos play.  How can we fix this please?

    That sounds very like an issue with your mouse/trackpad and not iPhoto. Go to your SystemPreferences and chck the speed you've set for double clicking
    Regards
    TD

  • FS10N Not display document with double click

    Hi, friends:
    Not display document with double click
    I am in the list of open items in transaction FS10N and when a wont to see a document by doing a double click in the line, instead of showing the document it shows the data of the line.
    Does anybody know the reason behind it? How can I resolve it?
    Thanks in advance.

    Hello,
    There could be two reasons:
    1. The account would not have been maintained with line item display.
    2. In case if the account has been created with line item display, then still you are not able to get the drill down (meaning that you are able to get the line items in FBL3N), in that case, immediately once you get the error, go to transaction code SU53. It will tell you the authorizations you are missing. You can forward that screen shot to your authorization team and they will give your proper authorization for drill down.
    Thanks,
    Ravi

  • HT201365 Once an app is opened, how do I close it? Before I would double click and pressed on the app icon and I could then close it.

    I went through the up date for my iPad. How do I close an opened app? Before I would double click and the opened app would appear at the bottom of the screen. By pressing on  that app, a negative sign would appear and by touching it the opened app would close. I tried this with the up dated version and it doen't work. What next?

    Double tap the home button and swipe upwards on the preview of the App (not the App Icon).
    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf

Maybe you are looking for