Clicking button action to get image

i have not used flash in over 10 years so getting back into it is more complicated than it was years ago. i have a graphical image i made in photoshop and want to make it so that if you click on certain areas of the image, a small graphic will appear in the same spot and when you click the spot again, the image will disappear. i know this is pretty simple but have no idea how to go about doing it. please help!!

When I created the document I had chosen html5 instead of actionscript 3.0. Made a new workspace and corrected that and now its testing. I tried having the button and graphic in the same frame, same layer different frame, and different layers but instead of clicking the button so the graphic appears the graphic is just blinking rapidly because its looping back or something. There is the stop code in the actionscript so not sure why it isn't just doing it once and then stopping. I copied the code you had and replaced the names for the button and graphic so this is what I have:
graphic1.visible = false;
btn1.addEventListener(MouseEvent.CLICK, show_hide_Graphic);
function show_hide_Graphic(evt:MouseEvent):void {
     // get the button name to use for targeting the graphic
     var btnName:String = evt.currentTarget.name;
     // make the graphic's visibility the opposite of what it currently is
     this["graphic_"+btnName].visible = ! this["graphic_"+btnName].visible;
     if(currentFrame == 1){
         play();
stop();
So right now the button and graphic are on the same layer and same frame with the actionascript on a different layer for the same frame. I put a keyframe on hit for the button.

Similar Messages

  • How to assign dynamic image at runtime or on Button Action to a Image UI

    Hi,
         Please let me know is it possible to assign Dynamic Images to Image UI element in a Visual Composer applications. Using Image Manager it is possible, but in my case Image Source i.e URL comes from ABAP RFC, so is it possible to assign Image at runtime.
        Please do let me know is it possible or not, If yes please do share your opinions.
    I am able to show image using HTML Page by passing URL at runtime to HTML page but here, I cant control the Image width & height.
       I am checking for possibility of using some script to manage width & height.
       Thanks a Ton.
    Regards
    Tushar

    Hi,
         Any inputs for the Query? Atleast, If I get some hint, will do to proceed....
    Regards
    Tushar Shinde

  • Trying to update my iPhone 4 from iOS 5.1.1 to 6.1 via iTunes.When I click the "Update" button, I just get a message saying the iTunes is at the current version (6.1), but no action re the iOS update.

    I'm trying to update my iPhone 4 from iOS 5.1.1 to 6.1. When I try to do this using iTunes on my MacBook Pro (OS X v 10.5.8), with my iPhone in its cradle, clicking the "Update" button in Tunes gets a message saying "This version of iTunes (10.6.1) is the current version." I can't get the iOS update to download.
    When I try to update to the iPhone directly, I get a message saying "iOS 6.0.1 failed verification because you are no longer connected to the Internet" at the Verifying Update step. I noticed that this message refers to iOS 6.0.1, even though I want to update to 6.1. It is possible that, a few weeks ago, I may have downloaded but not installed v 6.0.1.
    Thanks for any help with this problem

    I tried powering down and re-starting the iPhone (as suggested at http://support.apple.com/kb/TS1275). This seems to have cleared the "...not connected to the Internet" problem, and iOS 6.1 is now in the process of downloading.
    Thanks very much for your feedback.

  • Value  set in constructor is not getting saved in button  Action method

    Hi All,
    I am not understanding why the value set ( On Condition )in constructor is not hold in the button actoin method.
    Could any body explain me on that
    for this I will try to explain with sample example
    I have taken a button and add a integer property in session bean.
    now if session bean's property is even then I am trying to set the button value to bidNow other wise Accept Invitation.
    Till this opstion everything is OK
    but once I click on Button,
    Constructor is doing the right job only. But I do not understand why in button action I am getting the First Value only.
    public Page1() {
            // <editor-fold defaultstate="collapsed" desc="Creator-managed Component Initialization">
            try {
                if (getSessionBean1().getIntValue()%2==0)
                    button1.setValue("BidNow");
                else
                    button1.setValue("Accept Invitation");
                getSessionBean1().setIntValue(getSessionBean1().getIntValue()+1);
                log("In Constructor Button Value : "+button1.getValue());
            } catch (Exception e) {
                log("Page1 Initialization Failure", e);
                throw e instanceof javax.faces.FacesException ? (FacesException) e: new FacesException(e);
            // </editor-fold>
            // Additional user provided initialization code
        public String button1_action() {
            // TODO Replace with your code
            log("In Action Button Value : "+button1.getValue());
            return null;
        }and here is the log
    [#|2005-07-19T11:55:17.859+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:17.859+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:18.359+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:18.359+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:18.843+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:18.843+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:19.312+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:19.312+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:19.828+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:19.828+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:20.234+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:20.250+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:20.828+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:20.828+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:21.328+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:21.328+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:35.437+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:35.437+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:35.906+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:35.921+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:36.265+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:36.265+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:36.890+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:36.890+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:37.171+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : BidNow|#]
    [#|2005-07-19T11:55:37.171+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]
    [#|2005-07-19T11:55:37.468+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Constructor Button Value : Accept Invitation|#]
    [#|2005-07-19T11:55:37.468+0530|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=14;|WebModule[/webapplication12]In Action Button Value : BidNow|#]As per this log every time I am getting Bid Now only in action, though the value is changed in Construtcor
    Can u explain the reason for this

    Hi Sudhakar,
    Please try the following and you will get an idea as to what is happening:
    1. Drag and drop a button, 2 outputText components
    2. Add a property to the session bean called intValue of type int. Customize it to set it's initial value to 0
    3. Add the following lines of code to the constructor
    outputText1.setValue("" + getSessionBean1().getIntValue());
    getSessionBean1().setIntValue(getSessionBean1().getIntValue()+1);
    4. Double click on the button component to go to the button action method.
    5. Add the following line of code
    outputText2.setValue("" + etSessionBean1().getIntValue());
    6. Save and run the application
    7. Watch the values of outputText1 and outputText2 with each click of the button
    Also, try the application with the following code block in the button action method:
    if(getSessionBean1().getIntValue()%2==0){
    button1.setValue("Bid Now");
    } else{
    button1.setValue("Accept Invitation");
    getSessionBean1().setIntValue(getSessionBean1().getIntValue()+1);
    outputText1.setValue(button1.getValue());
    outputText2.setValue("" + getSessionBean1().getIntValue());
    When the above code block is in the button action method the values set to button are as expected.
    Hope that helps
    Cheers
    Giri :-)

  • OBIEE report with Click button ( want to perform some actions)

    Hi Experts,
    My users want to make adhoc changes to an OBIEE report where I want to place a click button at the bottom of the report. Once the changes are done, They want to click the button so that the most current logical sql is captured and then it takes to another http url .
    If any one have worked or has any ideas on this, Please share. Thanks in Advance.
    S

    Hi S,
    Can you elaborate on what you mean by capturing the most current logical SQL?
    What you are asking is only going to be as difficult as it is to perform the above action. The button and the navigate are simple.
    John Minkjan shows you how to make a clear button here.
    Basically you leverage the OBIEE class XUIPromptEntry minibuttonOn.
    Here's the code (NOTE: You have to change the curly brackets to angular brackets):
    {div class="XUIPromptEntry minibuttonOn"}{a href="#" onclick="return PersonalizationEditor.removeDefaultSelection(false)"}Clear{a}{div}
    You can take this and modify it slightly to fit your purpose:
    {div class="XUIPromptEntry minibuttonOn"}{a href="(URL to move to)" onclick="(javascript function that performs your task)"}Do Action Button{a}{div}
    In the above, you will put the URL you want to navigate to in the (URL to move to) area. Then in the onclick function, you're going to want to write a javascript function that captures the latest logical SQL and have OBIEE call that function.
    All that being said, this effort hinges on whether or not a javascript function can perform your task.
    If you can elaborate on what you mean, I might be able to get you started on that function.
    Good luck and if you found this post useful, please award points!
    Best regards,
    -Joe

  • Safari won't open.  I get an error message saying the pp quit unexpectedly.  If I click on the 'reopen' button, I just get the same error message.

    I'm using Mavericks on an iMac.  when I try to open Safari I get the error message 'aplication quit unexpectedly'.  When I click the 'reopen' button, I just get the same error message.  Any suggestions to fix it?
    MJF

    Here is the crash report:
    Process:    
    Safari [781]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    7.0.1 (9537.73.11)
    Build Info: 
    WebBrowser-7537073011000000~21
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [188]
    Responsible:
    Safari [781]
    User ID:    
    501
    Date/Time:  
    2014-01-14 15:27:56.428 +0000
    OS Version: 
    Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  DE303636-5980-86E0-2098-CB817D8C0084
    Crashed Thread:  15
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    External Modification Warnings:
    Thread creation by external task.
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.app34068-DU386F5V4G (176 - 1.176) GoPhoto.it
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.CoreGraphics   
    0x00007fff91e23994 _CGSGetDisplaySystemState + 102
    3   com.apple.CoreGraphics   
    0x00007fff91e2389a CGSGetDisplaySystemState + 84
    4   com.apple.CoreGraphics   
    0x00007fff91e237e9 get_current_display_system_state + 76
    5   com.apple.CoreGraphics   
    0x00007fff91e28a93 get_display_logging + 62
    6   com.apple.CoreGraphics   
    0x00007fff91e28ad4 updateAllDisplayInfoAsNeeded + 15
    7   com.apple.CoreGraphics   
    0x00007fff91ee797a CGSCopyDisplayUUID + 63
    8   com.apple.AppKit         
    0x00007fff8d2151ef -[NSScreen _copyDisplayUUID] + 33
    9   com.apple.AppKit         
    0x00007fff8cbfa019 +[NSScreen _screenForUUID:] + 183
    10  com.apple.AppKit         
    0x00007fff8cbf9eab _NXScreenForRectOnSpace + 86
    11  com.apple.AppKit         
    0x00007fff8cbf9ad1 +[NSScreen mainScreen] + 182
    12  com.apple.AppKit         
    0x00007fff8cbfc602 -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 350
    13  com.apple.AppKit         
    0x00007fff8ce85460 -[NSPanel _initContent:styleMask:backing:defer:contentView:] + 51
    14  com.apple.AppKit         
    0x00007fff8cbfc498 -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    15  com.apple.AppKit         
    0x00007fff8ce85413 -[NSPanel initWithContentRect:styleMask:backing:defer:] + 78
    16  com.apple.AppKit         
    0x00007fff8cbf8405 -[NSWindowTemplate nibInstantiate] + 561
    17  com.apple.AppKit         
    0x00007fff8cbce550 -[NSIBObjectData instantiateObject:] + 309
    18  com.apple.AppKit         
    0x00007fff8cbcd845 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 413
    19  com.apple.AppKit         
    0x00007fff8cbc25fe loadNib + 327
    20  com.apple.AppKit         
    0x00007fff8cbc1b9c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288
    21  com.apple.AppKit         
    0x00007fff8ce565b2 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 140
    22  com.apple.AppKit         
    0x00007fff8cf2dc8c _NXLoadNib + 193
    23  com.apple.AppKit         
    0x00007fff8cf2d69f -[NSAlert init] + 95
    24  com.apple.AppKit         
    0x00007fff8cf6a658 +[NSAlert alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextW ithFormat:] + 141
    25  com.apple.AppKit         
    0x00007fff8cbe4119 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1038
    26  com.apple.AppKit         
    0x00007fff8cbe3cce -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    27  com.apple.AppKit         
    0x00007fff8cbe3c6f -[NSPersistentUIRestorer promptToIgnorePersistentState] + 213
    28  com.apple.AppKit         
    0x00007fff8cbe3b93 -[NSPersistentUIManager promptToIgnorePersistentState] + 28
    29  com.apple.AppKit         
    0x00007fff8cbe39b4 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 252
    30  com.apple.AppKit         
    0x00007fff8cbe3789 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557
    31  com.apple.AppKit         
    0x00007fff8cbe31eb -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    32  com.apple.Foundation     
    0x00007fff8fabaeaa -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    33  com.apple.Foundation     
    0x00007fff8fabad1d _NSAppleEventManagerGenericHandler + 106
    34  com.apple.AE             
    0x00007fff86b64e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    35  com.apple.AE             
    0x00007fff86b64c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    36  com.apple.AE             
    0x00007fff86b64b36 aeProcessAppleEvent + 315
    37  com.apple.HIToolbox      
    0x00007fff8a6935f1 AEProcessAppleEvent + 56
    38  com.apple.AppKit         
    0x00007fff8cbdf0f6 _DPSNextEvent + 1026
    39  com.apple.AppKit         
    0x00007fff8cbde8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    40  com.apple.Safari.framework
    0x00007fff8ff97ec0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    41  com.apple.AppKit         
    0x00007fff8cbd29cc -[NSApplication run] + 553
    42  com.apple.AppKit         
    0x00007fff8cbbd803 NSApplicationMain + 940
    43  com.apple.Safari.framework
    0x00007fff90169f3d SafariMain + 267
    44  libdyld.dylib            
    0x00007fff92c445fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff881d3662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff9151e43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff9151e152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.WebCore        
    0x00007fff8e048c0b WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore        
    0x00007fff8e04579f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.QuartzCore     
    0x00007fff892fe3b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore     
    0x00007fff892fe2ed thread_fun + 25
    4   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    5   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    6   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.CoreFoundation 
    0x00007fff89162315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation 
    0x00007fff89161939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation 
    0x00007fff89161275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation     
    0x00007fff8fb00907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation     
    0x00007fff8fb0070b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 11:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517266 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore 
    0x00007fff88516d85 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 15 Crashed:
    0   libsystem_c.dylib        
    0x00007fff9086c541 __xvprintf + 106
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x0000000149170864  rbx: 0x00007fff77760002  rcx: 0x00007fff7776d920  rdx: 0x00007fff7776e480
      rdi: 0xffffffffffffffff  rsi: 0x0000000000000000  rbp: 0x0000000149170e44  rsp: 0x0000000149170844
       r8: 0x0000000149173c37   r9: 0x0000000149170f34  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x000000000000000a  r13: 0x0000000000000000  r14: 0xffffffffffffffff  r15: 0x00007fff7776e480
      rip: 0x00007fff9086c541  rfl: 0x0000000000010202  cr2: 0x000000014916f050
    Logical CPU:
    0
    Error Code: 
    0x00000000
    Trap Number:
    13
    Binary Images:
    0x10496a000 -   
    0x10496affd  com.apple.Safari (7.0.1 - 9537.73.11) <26B9451D-36DC-3EC9-AF48-B32519F9BFF6> /Applications/Safari.app/Contents/MacOS/Safari
    0x7fff679d0000 -
    0x7fff67a03817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    0x7fff85c6b000 -
    0x7fff85ca3ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff85ca4000 -
    0x7fff85cf6fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x7fff85d62000 -
    0x7fff85df1fff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff85df2000 -
    0x7fff85ebdfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff86149000 -
    0x7fff8614affb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff8614b000 -
    0x7fff86156ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff864b3000 -
    0x7fff866fbfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff866fc000 -
    0x7fff867e6fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff867e7000 -
    0x7fff86846fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff86847000 -
    0x7fff86853ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff86861000 -
    0x7fff8686aff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff86b0d000 -
    0x7fff86b54ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
    0x7fff86b57000 -
    0x7fff86bb2ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff86bb3000 -
    0x7fff86bcffff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff86bd0000 -
    0x7fff86c23fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff86c65000 -
    0x7fff86c68fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86c6b000 -
    0x7fff86d59fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff86df6000 -
    0x7fff86df8fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff86e03000 -
    0x7fff86e28ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff86edd000 -
    0x7fff86eebfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff86f2f000 -
    0x7fff86f39ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8719c000 -
    0x7fff871b3fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff871b4000 -
    0x7fff87277ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff872d5000 -
    0x7fff875bffff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff87685000 -
    0x7fff8768afff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8768b000 -
    0x7fff8768cfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff87690000 -
    0x7fff87694fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x7fff87695000 -
    0x7fff8769efff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8779d000 -
    0x7fff8779dfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8779e000 -
    0x7fff877a5fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff877ad000 -
    0x7fff877e7ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff877e8000 -
    0x7fff8780cff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8780d000 -
    0x7fff8780dffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8780e000 -
    0x7fff87853ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff87854000 -
    0x7fff878e0ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff878e4000 -
    0x7fff87931ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff87a13000 -
    0x7fff87a17ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff87aa6000 -
    0x7fff87d7afc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff87d7b000 -
    0x7fff87db9ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff87dba000 -
    0x7fff87dbdfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff87f5d000 -
    0x7fff8804cfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff881bb000 -
    0x7fff881bcfff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
    0x7fff881bd000 -
    0x7fff881d9ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
    0x7fff881da000 -
    0x7fff881e2ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff884bc000 -
    0x7fff884d4ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff88503000 -
    0x7fff88879ffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff88e60000 -
    0x7fff88ecdfff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff88ee7000 -
    0x7fff88ef6ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff88ef7000 -
    0x7fff890afff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
    0x7fff890b0000 -
    0x7fff890b7ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff890f1000 -
    0x7fff892d6ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff892d7000 -
    0x7fff89473ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff89474000 -
    0x7fff89485ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff8951d000 -
    0x7fff8951dfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff895c2000 -
    0x7fff895e9ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x7fff895ea000 -
    0x7fff895f6ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff895f7000 -
    0x7fff895fcff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff89ec1000 -
    0x7fff89ec5ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x7fff89ed3000 -
    0x7fff89eddfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff89ede000 -
    0x7fff89f07ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
    0x7fff8a658000 -
    0x7fff8a902ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8ac39000 -
    0x7fff8ac51ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8ac52000 -
    0x7fff8ac54fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff8ac67000 -
    0x7fff8ac95ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8acd2000 -
    0x7fff8acd9ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
    0x7fff8acf9000 -
    0x7fff8acfcfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8acfd000 -
    0x7fff8af8bfff  com.apple.RawCamera.bundle (5.02 - 725) <4DE37ECB-24CD-38B1-B5AF-1EE911E19B80> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8afbe000 -
    0x7fff8afcbfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8b00d000 -
    0x7fff8b070ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8b15e000 -
    0x7fff8b34eff5  com.apple.WebKit2 (9537 - 9537.73.11) <FE8D26BB-F8B7-37D6-94A0-D82161541F30> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff8b352000 -
    0x7fff8b391fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8b44b000 -
    0x7fff8b44bfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8b44c000 -
    0x7fff8b454fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8b455000 -
    0x7fff8b723ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8b774000 -
    0x7fff8b7a3fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8b894000 -
    0x7fff8b91dfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8b91e000 -
    0x7fff8b920ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff8b921000 -
    0x7fff8bd02ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8bdc7000 -
    0x7fff8bdccfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff8bdcd000 -
    0x7fff8c025ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8c02b000 -
    0x7fff8c04ffff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
    0x7fff8c0ae000 -
    0x7fff8c0ccff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff8c0e7000 -
    0x7fff8c113fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff8c1a7000 -
    0x7fff8c21efff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8c21f000 -
    0x7fff8c34fff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff8c353000 -
    0x7fff8c415ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8c416000 -
    0x7fff8c489ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8c48a000 -
    0x7fff8c48cff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8c48d000 -
    0x7fff8c4b4ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff8c4b5000 -
    0x7fff8c4bbff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
    0x7fff8c4bc000 -
    0x7fff8c4d7ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8c6b4000 -
    0x7fff8c6c6ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8c6c7000 -
    0x7fff8c71fff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8c720000 -
    0x7fff8c77eff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8c9af000 -
    0x7fff8c9fdfff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8cb3a000 -
    0x7fff8cb93fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8cbb3000 -
    0x7fff8cbbaff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8cbbb000 -
    0x7fff8d72fff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8d787000 -
    0x7fff8d7b8ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
    0x7fff8d7bc000 -
    0x7fff8d7d7ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff8d7d8000 -
    0x7fff8d7e0ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8d7e1000 -
    0x7fff8d7e2ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8d856000 -
    0x7fff8d8bcfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8d99f000 -
    0x7fff8daa4fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8db31000 -
    0x7fff8db4aff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8db5e000 -
    0x7fff8db88ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x7fff8dbe3000 -
    0x7fff8dbe5ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8dbe6000 -
    0x7fff8dbf7ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff8dbfe000 -
    0x7fff8dc09fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
    0x7fff8dc0a000 -
    0x7fff8dc0bff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8dc0c000 -
    0x7fff8e03fffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff8e040000 -
    0x7fff8ee8dffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff8f29d000 -
    0x7fff8f458ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8f459000 -
    0x7fff8f466ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff8f48e000 -
    0x7fff8f5feff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8f6a5000 -
    0x7fff8f6beff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8f776000 -
    0x7fff8f7a5ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8f7a6000 -
    0x7fff8f88afff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8f91f000 -
    0x7fff8f928fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8f938000 -
    0x7fff8f939fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff8f941000 -
    0x7fff8fa77ffa  com.apple.WebKit (9537 - 9537.73.11) <5F583526-8D71-30AD-B97C-56EC51E94E85> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff8fa99000 -
    0x7fff8fd98fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8ff3b000 -
    0x7fff90441ff3  com.apple.Safari.framework (9537 - 9537.73.11) <D3F772B3-4AD9-32F1-A0CB-CF307FF1B283> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff907ee000 -
    0x7fff907fefff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff907ff000 -
    0x7fff90888ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
    0x7fff90894000 -
    0x7fff9097bff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff9097c000 -
    0x7fff909acfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff909ad000 -
    0x7fff909dcfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff909ea000 -
    0x7fff90a59ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff90a5a000 -
    0x7fff90bc8ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff90bd5000 -
    0x7fff90c1cfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff90c1d000 -
    0x7fff90c20ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff90c21000 -
    0x7fff90c2cfff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff90c6e000 -
    0x7fff90d37fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff90d38000 -
    0x7fff90d3ffff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff90d40000 -
    0x7fff90d65ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff90d66000 -
    0x7fff90dcaff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff90dcb000 -
    0x7fff90e04ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff9137c000 -
    0x7fff91397ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
    0x7fff913d7000 -
    0x7fff91400fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff91436000 -
    0x7fff91477fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff9151b000 -
    0x7fff91535fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
    0x7fff91536000 -
    0x7fff91536fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff91537000 -
    0x7fff91544ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff91545000 -
    0x7fff9154dff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff9154e000 -
    0x7fff9163fff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff9164d000 -
    0x7fff916cdfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff916d7000 -
    0x7fff916d7ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff91792000 -
    0x7fff917afff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff917fa000 -
    0x7fff91822ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x7fff91d94000 -
    0x7fff91da6fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff91da7000 -
    0x7fff91daaffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x7fff91dab000 -
    0x7fff91db5ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff91db6000 -
    0x7fff91e20ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff91e21000 -
    0x7fff9273d05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff9273e000 -
    0x7fff927a2ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff927a3000 -
    0x7fff927a4ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff92933000 -
    0x7fff92935fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff92936000 -
    0x7fff9293afff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/syste

  • How to get the index of the clicked button on TOOLBARBUTTONCHOICE

    Hello Experts,
       I have used toolbarbuttonchoice and created the dropdown list of the buttons dynamically. now when any of the button is clicked i need to get the reference of the button to call appropriate code in the action, but i am unable to get the either the reference or index of the clicked button.
    Please help.
    Regards,
    Kinshuk

    Hi Sascha,
      My code goes this way
      data:
        lr_btn_ch   type ref to if_wd_view_element,
        lr_toolbar_btn_choice type ref to cl_wd_toolbar_btn_choice,
        lr_row_data           type ref to cl_wd_row_data,
        item                  type string,
        action                type string.
    CALL METHOD view->get_element
      EXPORTING
        id      = 'BTNCH'   " button choice Element in layout
      receiving
        element = lr_btn_ch
    lr_toolbar_btn_choice ?= lr_btn_ch.
    DATA:  lt_items      type string_table,
        lt_actions    type string_table.
    loop at lt_dyntab into ls_dyntab.
      append ls_dyntab-name to lt_items.
    append 'ONBTNCH' to lt_actions.
    endloop. 
    i get the data in the table lt_dyntab from API not in context
      loop at Lt_items into item.
        read table Lt_actions index sy-tabix into action.
        create_choice_item( i_toolbar_btn_choice = lr_toolbar_btn_choice i_item = item i_action = action i_view = VIEW ).
      endloop.
    create_choice_item creates the menu item for the button choice..
    My question is where should i call the map_on_action method. and how do i retrieve the index or reference in ONBTNCH method.
    please elaborate.
    Regards,
    Kinshuk

  • Always one annoying click too much to get to image...

    For my Nokia 5800, as a frequent viewer of images, I'd like to get to that folder quickly. There is a button with an image symbol on the choices after clicking the "shortcut to media functions" (the small arrow-like button to the right above the screen) but when clicking it, you actually get to the Gallery menu, where the image folder is only one of several choices, including music and videos, although those already have separate buttons on the "shortcut to media functions" menu.
    Therefore, I tried to make a shortcut to the image folder directly on the home screen instead, but the Nokia team appears to have forgotten to include that folder in the list of available shortcuts. The closest you can get is to the Gallery menu, which still is one annoying click too much to get to the image folder.
    Does anyone know how to create an actual shortcut to the image folder?
    Solved!
    Go to Solution.

     No worries. As for Nokia photo browser, I don't understand how it is still in the experimental phase considering it has been around for a couple of years now. I would love to see it make it to final release or even implemented into the firmware. It works great on Symbian^3.
    All the best.
    Ray

  • When browsing a new library that I created, the browser shows dotted lines around grey rectangles, no images. When I double click on a rectangle the image appears. How do I get images to appear in the browser rectangles?

    When browsing a new library that I created and exported onto an external hard drive, the browser shows dotted lines around grey rectangles, no images. When I double click on a rectangle, the image appears, but all the other rectangles remain empty - no image. How do I get images to appear in the browser rectangles? I am viewing this on a second computer (an older intel duo iMac), not the one I created the library on (a MacBook Pro). Both computers have Aperture 3.2.4 installed. When I return the external to the MacBook, all images appear in browser rectangles. What's happening on the iMac?

    You may have a problem with the permissions on your external volume. Probably you are not the owner of your library on the second mac.
    If you have not already done so, set the "Ignore Ownership on this Volume" flag on your external volume. To do this, select the volume in the Finder and use the Finder command "File > Get Info" (or ⌘I).
    In the "Get Info" panel disclose the "Sharing & Permissions" brick, open the padlock, and enable the "Ignore Ownership on this Volume" flag. You will have to authentificate as administrator to do this.
    Then run the "Aperture Library First Aid Tools" on this library and repair the permissions. To launch the "First Aid Tools" hold down the ⌥⌘-key combination while you double click your Aperture Library. Select "Repair Permissions" and run the repair; then repeat with "Repair Database". Do this on the omputer where you created the library and where you can see the thumbnails.
    Then check, if you now are able to read the library properly on your iMac.
    Regards
    Léonie

  • My mac pro wont start. I push the power button and I get a click sound. A few seconds later another click sound and that it.

    My mac pro wont start. I push the power button and I get a click sound. A few seconds later another click sound and that it. I've tried different power plugs. Going direct into the wall, through a power strip. By iteslf, with other devices plugged in. I removed hard drives, and some RAM, and nothing. Sometimes it would not turn on, and then some minutes later it works. So its was sparatic, but now its been the same situation for three days where it wont turn on.
    I'm guessing power supply, but I wanted to see if anyone had a similar expereince and what the solution was, before I drag this beast to my local Apple store and have them look at it. Its a real pain to get it there and back and I want to be armed with some info for them. I already dragged this to them when it first started to do this, and of course it started up just fine for them. And you know if it works for the Genius then theres nothing wrong with. No matter what you explain to them.
    I figure if anyone had a the same problem and was able to resolve it, I can relate that experience to the Genius even if it start up for them.
    Thanks

    Try a SMC Reset using the extended method:
    Remove the AC power cord.
    Press the power-on button. [This drains the stored charge from the power supply]
    wait a quarter minute.
    Restore the power cord, being certain to JAM it into the socket, as the big block of rubber inhibits proper seating.
    wait a quarter minute
    attempt to power on.
    If no joy, examine the button battery half-hidden behind the graphics card. Remove it to measure the Voltage. A new battery should not cost over US$5, and measures a little over 3 Volts. BR-2032 is used in garage door opener controls and car door locks controls. The geeks at Radio Shack can measure it for you.

  • I created a book on iPhoto. I click on the buy button, and I get a connecting message with a blue striped rectangle. I am connected to the internet and I have made books before without any problems. I have tried for the past two weeks at various times.

    I created a book on iPhoto. I click on the buy button, and I get a  message that says Connecting with a moving blue striped rectangle. I am connected to the internet and I have made books before without any problems. I have tried for the past two weeks at various times and I get this same message each time. Any ideas about what is going on? 

    First confirm that you can create a PDF file of your book as described in this Apple document: iPhoto '11: Preview a book, card, or calendar before you order or print it. Post back with the results.
    OT

  • How to view an Image in ABAP Webdynpro on button action

    Hi Experts,
    I want to view an image on a button action without creating a new view or window.
    I just need to display the image.
    Thanks,
    R Sahu

    Hi Rabi,
    Add Context Attribute "SOURCE_IMG" with type String.
    Add Image UI "img_id" in layout and bind its source with this context attribute.
    on any method where you want to change/show image dynamically, put this code :
    here url can be path to image on local or any url-path for web image.
    call method wd_context->set_attribute
           EXPORTING
             name = 'SOURCE_IMG'
             value          = url .
    I hope this is what you are looking for.
    Thank you
    Meet Vajaria

  • I've been sent a scan of a document as an attachment. Clicking on it, I get the message, "Pixel aspect ration correction is for preview purposes only. Turn it off for maximum image quality." What is pixel aspect ration and how do I turn it off?

    I've been sent a scan of a document as an attachment. Clicking on it, I get the message, "Pixel aspect ration correction is for preview purposes only. Turn it off for maximum image quality." What is pixel aspect ration and how do I turn it off?

    It's "aspect ratio", not aspect "ration". 
    It's what determines whether you have square pixels ("normal") or, if rectangular pixels, what the aspect ratio (width : length)  of that rectangle is.
    It's explained in the Help files.  I cannot go into more detail because you have neglected to provide information about your platform and exact version of Photoshop.
    Example in next post

  • When  click the Payment Action "Format " gets the error

    Dear all:
    When do the AP payment click the Payment Action "Format " gets the error as follow , how can I solved the problem?
    =========================================================================
    LOGFILE :
    Oracle 應付帳款管理系統: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    C050_CAPPBFOR_HS module: C050 HS HKD Check Payment Format
    目前的系統時間是 07-01-2010 12:04:30
    +-----------------------------
    | 正在啟動並行程式的執行...
    +-----------------------------
    引數
    P_PAYMENT_BATCH='快速付款: 識別碼=1031163'
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    TRADITIONAL CHINESE_AMERICA.UTF8
    MSG-00001: After SRWINIT
    MSG-00002: After Get_Company_Name
    MSG-00003: After Get_NLS_Strings
    MSG-00004: After Get_Base_Curr_Data
    MSG-00800: Getting Payment Batch details....
    MSG-00900: Payment Batch does not exist.
    MSG-00955: Deleting AP_CHECKRUN_CONC_PROCESSES record....
    REP-1419: 'beforereport': PL/SQL 程式異常中止.
    Report Builder: Release 6.0.8.20.2 - Production on 1 01 7 12:04:29 2010
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    輸入使用者名稱:
    Plsql 程式的日誌訊息開始
    PlSql 程式日誌訊息的結束
    程式 以狀態 1 結束
    為並行請求 4280108 執行 Oracle*Report 時, '並行管理程式' 發生錯誤.
    有關詳細資訊, 請查閱並行請求日誌檔及/或輸出檔.
    正在執行請求完成選項...
    已完成請求完成選項的執行.
    並行請求已完成
    目前的系統時間是 07-01-2010 12:04:30
    APPSTAND : 11.5.33
    APXINWKB : 11.5.564.11592.22
    APXPAWKB : 11.5.319.1159.21
    FNDCPVWR : 11.5.15
    FNDRSRUN : 11.5.129
    FNDSCSGN : 11.5.111
    ==========================================================
    Regards
    Edited by: Terry Chen on 2010/1/6 下午 8:20

    Hi terry;
    Please follow below and see its helpful for your issue:
    JEDEREFD Errors With Msg-00900: Payment Batch Does Not Exist. [ID 438680.1]
    Error When Creating A Quick Payment Through The Invoice Workbench - Pay In Full APXPBFEL [ID 566027.1]
    JEPTBFOR Errors With REP-1419, MSG-00901 [ID 433323.1]
    APXPBFOR - Format Payments : Program Aborted With Error REP-1419 When Run From NLS Responsibility [ID 257075.1]
    Regard
    Helios

  • Actions menu wheel image and Go button image

    Hello ,
    In APEX 4 Interactive Reports, the actions menu wheel image and the go button are coming as html buttons instead of the wheel image and go button image.
    Is there a way I can rever to the old wheel img and go button .
    Thanks,
    Dippy

    Within the IR, under Search Bar, you can set Actions Menu Image to '/i/ws/action_32x24.gif' - this is the green wheel but does not have little arrow. I will contact our image guru and see if the old one is sitting somewhere. As for 'Go', this does not support an image but you can change the word if you need to (using Search Button Label) and set a button template to match your application.
    -- Sharon

Maybe you are looking for

  • Apple TV (Gen 2&3) takes several hours to load a movie from the iTunes Library

    I know this had been discussed before, but a went through all posts that I could find and never found a solution.  I will list below everything I have tried and if anyone else has ANY ideas I would be extremely greatful to hear them!  To reiterate th

  • IPod keeps turning itself on and off but wont start

    My iPod has been turning itself on, but before it's past the screen with the apple it turns itself back off and it will repeat doing that until the battery runs low then it will sit on the battery screen for a few minutes. After it gets some juice it

  • Frame Crashes on Save Book After Performing Document Numbering Update

    Frame 10 crashes every time when saving book after performing a Format\Document\Numbering update. All of sudden when performing a document "Update" Frame starting generating errors for specific documents in the book. Numbering in docuement does not m

  • Debug shared variable array

    I am passing data between a PXI RT Target to a PC Host using Shared Variables.  Everything passes correctly between the Host and the Target, but Shared Variables that are arrays do not pass between the Target and the Host.  Single elements whether bo

  • Problems loading PDF files in Illustrator

    Hi, When I try loading a PDF file in Illustrator I get two errors. Firstly, it complains that the fonts are missing and will be substituted. This occurs even when the font is embedded in the PDF file, and even when the font is installed on the system