Adobe AIR HTML Native Full Screen on Mac OS X

I am building an application in Adobe AIR for Mac in HTML/JavaScript.
What I want to do is when the application loads, make the application go into full-screen mode using the correct native full-screen found in OS X Lion and above.
e.g.
This is NOT using the displayState that Flash/Flex uses.
If the users decides to exit full screen mode they will see the app in a native window and can re-enter full screen mode using the icon you get in the top-right of a window.
I've found some information about an extension here: http://forums.adobe.com/thread/1209193
FREObject _EnableFullScreenMode(FREContext ctx, void* functionData, uint32_t argc, FREObject argv[])
        //We should be okay to do this, even on 10.6, according to this post:
        //http://www.cocoabuilder.com/archive/cocoa/311124-implementing-full-screen-for-10-7-but-app-should-also-run-on-10-6.html
        //We can't use [NSApp mainWindow] - didn't appear to work
        //This seems to though:
        NSArray * allWindows = [NSApp windows];
        if (allWindows.count > 0)
            NSWindow *mainWindow = [allWindows  objectAtIndex: 0];
            NSWindowCollectionBehavior behavior = [mainWindow collectionBehavior];
            behavior |= NSWindowCollectionBehaviorFullScreenPrimary;
            [mainWindow setCollectionBehavior:behavior];
        //TODO: Return a boolean instead depending on if we found the main window
        return NULL;
That looks to do what I want! But after reading the Adobe AIR docs I can't get my head around where this code should live in my app directory and how I can call it on app load.
So in my index.html I have:
$(document).ready(function() {  // Make window full-screen // CALL THE EXTENSION TO MAKE THE APPLICATION FULL_SCREEN  // Make window active window.nativeWindow.activate();  // Make it visible window.nativeWindow.visible = true;  });
The initialWindow is not visible by default using <visible>false</false> in the application descriptor XML file. And is made visible and active on the document ready as shown above.
The missing piece is loading in the extension and making the window go native full-screen.
To break this question up:
Where does the extension code go? E.g. do I create an extension file and put it in any particular location in the app directory?
How do I then load the extension into the application
Finally how do I then do the full-screen on document ready
What happens in OS X below Lion? How did full-screen work before it was introduced?
Hopefully I can get pointed in the right direction as the docs have totally baffled me and don't explain how the extension file is created (to me at least).

Extensions require both native code and ActionScript code and are packed by the native extension compiler by Adobe to an ANE file. Check this tutorial: http://www.adobe.com/devnet/air/articles/building-ane-ios-android-pt1.html
After compiling the extension, you can put the extensionId into your <extensions> branch in the application.xml and add the .ane as an excluded library into your AS3 project. Then you can use the extension like any other external library (swc file).
It's also helpful to download and play around with extisting ANEs. There are some nice open source libraries here: https://github.com/freshplanet

Similar Messages

  • Incorrect functionality of Embedded tag in html page, displaying object on top of all layers of Adobe air application native window

    Title
    Incorrect functionality of embed tag in html loader for adobe air development
    Description
    Problem Description: If we had loaded youtube.com video url in a view stack and navigate to other index of stack or away from we UI screen within the same native window video or embeded tag of flash player or any other embed object will be displayed on top of all screens layer in same position of where the object should be placed in side of html loader only.
    Steps to Reproduce:
    1) go to http://get.straweb.com/StraWebBrowser/StraWebBrowser.air download and install
    2) load 2 tabs and in the 3 tab load video player of youtube.com which will a sample video
    before completing the load of 3 tab which trying to load video from youtube.com, navigate to other tabs 1 or 2 in few second once the flash player of youtube.com video player is load it will display in the current tab or UI screen.
    3) Try navigating to other tabs than youtube.com loaded tab you see the flash player is on top it stable.
    4) navigate to 3 tab and try to navigate to other tab you can observe that so how it will not show that flash player and only visible in that 3 tab which is fine.
    Actual Result: Embedded tag of html page displaying on top of all layers of Adobe air application native window
    Expected Result: Embedded tag of html page should only displayed in side htmlloader
    This you can replicate in any adobe air plugin update and on any Hardware and Environment.
    Applicable to all sdk versions of adobe air.

    Adobe Bugbase: Bug 3823839 Incorrect functionality of embed tag in html loader for adobe air development

  • I cannot use this version of the application Adobe Air Installer with this version of Mac OS X.

    I have Mac OS 10.5.8 and every time I try to install Air Adobe 3 I get the message
    "You cannot use this version of the application Adobe Air Installer with this version of Mac OS X." 
    Could anyone help me? 
    Jai

    Hi,
    Adobe won't be developing for 10.5.8 new features (including new runtime) only security relates updates for existing runtimes (Flash 10.3.*/Air 2.7.*). Flash 11/Air 3.0 are only supported on 10.6.8.*/10.7.*, see:
    http://kb2.adobe.com/cps/916/cpsid_91694.html#main_system_requirements
    There is recent,  lengthy thread on forums with Adobe's employees statements on that subject (support/development for 10.5.* and newer) but I cannot find it quickly as basically forum search is broken/hard to do,
    regards,
    Peter

  • Adobe Air - HTML, Javascript and Threading

    Hello,
    I am developing an application using Adobe Air - HTML and
    Javascript. What I am trying to do is to implement threading in
    Javascript. I am using implementing threading in Javascript as per
    this Neil blog.
    Click
    Here. It clearly says that this threading works only in Firefox
    2.0 and I am trying to use this in with my Adobe Air, but when I
    try to refer a function , it gives me error saying "unable to find
    it".
    I was wondering if this is the best way to go for threading
    in Adobe Air HTML application or there is some other way also.
    Thanks,
    Jaikishan

    Hi jjalan,
    The yield and generator functionality is only available in
    Firefox's javascript execution engine. When you are executing
    javascript in AIR, it is done by the webkit and squirrelfish. Take
    a look at
    http://webkit.org/blog/189/announcing-squirrelfish/
    If you can find a javascript library that works on safari /
    webkit, chances are high that it may work in AIR.
    Also, you can always do pseudo-threading via the age old
    setTimeout()

  • Adobe air html/js - application act like a browser.

    I just started in Adobe air html/js . In the current application I want to do something like this .
    I want to open the urls/web pages in the application and application should act like a web-browser to them .
    But with that I want to modify the opened pages a little, like add some css/js to them.
    Something like when you open Web pages in Firefox and a plugin (example grease monkey scripts) modifies the displayed content .
    Is it possible ?
    I tried opening in iframe it works , but I cannot add my own  JavaScript to the page (is there any way in air to remove cross domain  strictness?).
    Note: Please don't suggest that I fetch the html content of the page  and add it to the app body.  My app should really act as browser. (Adobe  air is webkit based so I think it can be achieved)

    Hi,
    Thank you for reporting this. The internal bug number for the issue is #2740755. The issue is currently under review and will be investigated by one of AIR team members.
    Regards,
    Catalin

  • How can I download adobe air version 2.74 to my Mac OSX 10.5.8?

    How can I download adobe air version 2.74 to my Mac OSX 10.5.8?

    In the end it worked for me as well. Once I uninstalled any previous version and any version that I tried to install and didn't work, then installed the 2.7.1 the Advent Calendar that I wanted to show animation worked. I know, a small thing, but I really wanted it to work.
    Thanks, Klaus1!

  • [DUPLICATE] Possibility to disable OSX Lion native full screen support?

    The newly implemented (v14.0.1 as far as I can tell) support for native OSX Lion fullscreen supports makes it very useless in a multi monitor setup. The old full screen support let me use the fullscreen for Firefox (and not letting window widgets get in the way) and continue using other applications on the other screens.
    Is it possible to disable the OSX Lion full screen support? Otherwise I think it would be a welcome addition to the next update.

    Locking as duplicate. Replies should be posted in the original thread, here:
    *https://support.mozilla.org/questions/932448 Possibility to disable OSX Lion native full screen support?

  • Adobe AIR HTML/JS application and Windows Native Installer

    Hi,
    I am building an Adobe AIR application with HTML and Javascript and I would like to know how to make an Windows Native Installer.
    I am trying to build it with Flash Pro but it keeps returning the error 'Invalid SWF file'. At the application.xml file the <content> points to my index.html file. I don't use any SWF file. When I change this to point to the SWF it does build tha installer but the application loads the SWF.
    Is there any way to build a Windows Native Installer and the initial content be an HTML file?
    p.s. I tried to extract the files from the installer file and edit the application.xml there to point to the index.html. But I can't repackage the files to a valid air native installer.
    Thank you.

    Hi,
    Thank you for reporting this. The internal bug number for the issue is #2740755. The issue is currently under review and will be investigated by one of AIR team members.
    Regards,
    Catalin

  • Problem in making air application in full screen on load

    Hi all
      I am new in flex developing. The problem I m facing in making a air application is that I want to make the application window in full screen view without the top toolbar.
    The code i got is like:
    <mx:Button label="fullscreen" click="stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;"/>it is working on click the button.
    But I want this on starting the application. Without any user interface.
    Thanks and Regards

    Extensions require both native code and ActionScript code and are packed by the native extension compiler by Adobe to an ANE file. Check this tutorial: http://www.adobe.com/devnet/air/articles/building-ane-ios-android-pt1.html
    After compiling the extension, you can put the extensionId into your <extensions> branch in the application.xml and add the .ane as an excluded library into your AS3 project. Then you can use the extension like any other external library (swc file).
    It's also helpful to download and play around with extisting ANEs. There are some nice open source libraries here: https://github.com/freshplanet

  • Adobe Air installer is not opening on Mac

    Hi, I have downloaded the last version of Adobe Air but the installer is not opening. I have followed the steps written on this page : http://helpx.adobe.com/air/kb/troubleshoot-air-installation-mac-os.html , but after step 4 'after hitting enter you will be prompted for your login password" , the installation does not begin but instead here is what gets written:
    "This application requires a version of Adobe AIR which cannot be found.
    Please download the latest version of the runtime from
    http://www.adobe.com/go/getair,
    or contact the application author for an updated version."
    I hope you can help.
    Thank you.
    Sam

    Process:         Adobe AIR Installer [1105]
    Path:            /Volumes/VOLUME/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Identifier:      Adobe AIR Installer
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  sudo [1104]
    Date/Time:       2012-05-05 02:35:11.213 +0300
    OS Version:      Mac OS X 10.7.2 (11C2002)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000038317ad8
    VM Regions Near 0x38317ad8:
        MALLOC_SMALL           000000000d800000-000000000e000000 [ 8192K] rw-/rwx SM=PRV 
    -->
        __TEXT                 000000008fe9e000-000000008fed1000 [  204K] r-x/rwx SM=COW  /usr/lib/dyld
    Application Specific Information:
    objc[1105]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                           0x0331981b 0x3000000 + 3250203
    1   com.adobe.AIR                           0x03319d4f 0x3000000 + 3251535
    2   com.adobe.AIR                           0x03118aad 0x3000000 + 1149613
    3   com.adobe.AIR                           0x031192a9 0x3000000 + 1151657
    4   libsystem_c.dylib                       0x95a56944 __cxa_finalize + 243
    5   libsystem_c.dylib                       0x95a567f2 exit + 25
    6   com.adobe.air.Installer                 0x00002565 start + 61
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x984c590a kevent + 10
    1   libdispatch.dylib                       0x9ac1ac58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9ac196a7 _dispatch_mgr_thread + 53
    Thread 2:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x984c4bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x95a187b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x95a18558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x97222be2 -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x99e1bf7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x99e1bf2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x95a63ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x95a676de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x984c502e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95a65ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x95a676fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x984c502e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95a65ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x95a676fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x984c502e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95a65ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x95a676fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x30393933  ebx: 0x0331981a  ecx: 0x000fc080  edx: 0x01a7b4cc
      edi: 0x38317830  esi: 0xbfffe3e4  ebp: 0xbffffb18  esp: 0xbffffae0
       ss: 0x00000023  efl: 0x00010282  eip: 0x0331981b   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x38317ad8
    Logical CPU: 0
    Binary Images:
        0x1000 -     0x6ff7 +com.adobe.air.Installer (3.2 - 3.2.0.2070) <30EAA58A-79F9-EA5C-9985-FE5E7500F598> /Volumes/VOLUME/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
       0xf1000 -    0xf5ffb  com.apple.audio.AudioIPCPlugIn (1.2.1 - 1.2.1) <B8333059-00BE-33A6-AEC0-0C8F285E6E07> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
      0x700000 -   0x706ffb  com.apple.audio.AppleHDAHALPlugIn (2.1.3 - 2.1.3f7) <C2DD672D-46CE-34BB-8456-129C65DDE583> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
      0x70b000 -   0x734ffb  com.apple.cmio.DAL.VDC_4 (210.0 - 3180) <82CD4CB5-D357-35A4-A078-C221566D47D7> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC
      0x73e000 -   0x79eff7  com.apple.CMIOQTUnits (210.0 - 3180) <A4EEAED2-DAE3-36AB-9CEE-49636A0A49B4> /System/Library/Frameworks/CoreMediaIO.framework/Resources/QuickTimeUnits/CMIOQTUnits.bun dle/Contents/MacOS/CMIOQTUnits
      0x7ae000 -   0x7deff7  com.apple.FWAVC (201.47 - 47) <4E1974CA-1A94-38D4-A60F-9465A06CA2FA> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x273b000 -  0x2774ff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2306) <5347333C-9175-39FF-AFEC-BF24BB6701D7> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x277f000 -  0x2789fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <C4851ECD-38AF-3974-8321-0342C89DE691> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComponents
    0x2794000 -  0x27bcfff  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2306) <6F887F4E-2D83-3415-9342-7EA8600E1349> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/QuickTimeIIDCDi gitizer
    0x3000000 -  0x4175fc7 +com.adobe.AIR (??? - 3.2.0.2070) <7EBAA6F0-794A-DE37-D04D-942F7073DE61> /Volumes/VOLUME/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x55a3000 -  0x55f1ff7  com.apple.QuickTimeUSBVDCDigitizer (2.7.1 - 2.7.1) <1D79F9C3-E0F4-33AE-A390-38DD884DEA28> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/QuickTimeUSBV DCDigitizer
    0x867c000 -  0x8773ffb  libGLProgrammability.dylib (??? - ???) <8E592FEB-B6A8-3BFF-828B-B37B05D4D574> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x8797000 -  0x87c4ff8  GLRendererFloat (??? - ???) <1264885F-1492-3591-BFB1-B671A7B08A29> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x9100000 -  0x926dffc  GLEngine (??? - ???) <C49CCDEA-F23E-30CD-9BCD-FC09C9D07CF4> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x92a1000 -  0x9541fe7  com.apple.ATIRadeonX3000GLDriver (7.16.9 - 7.1.6) <5C7304A2-98DA-3C5B-BA3A-FD0B9A0CE1B1> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRadeonX3000GLD river
    0x9572000 -  0x9908fff  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.16.9 - 7.1.6) <2BDB233F-C5E8-3359-8686-013CFA259200> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD3000GraphicsGLDriver
    0x8fe9e000 - 0x8fed09c7  dyld (195.5 - ???) <BCC83F99-7244-3DBA-867D-6226D53DD9F2> /usr/lib/dyld
    0x90037000 - 0x906b2fe5  com.apple.CoreAUC (6.11.04 - 6.11.04) <B06D52C9-9F59-3EF2-B2BA-11E93C573572> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x906b3000 - 0x906c3fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x906c4000 - 0x906cbff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x906cc000 - 0x908ebff7  com.apple.imageKit (2.1.1 - 1.0) <9AF0A882-BEAD-3AEC-8A72-497A7C3C2358> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x91059000 - 0x910d5ffd  com.apple.PDFKit (2.6.1 - 2.6.1) <7BC3186B-80B7-3E68-AFDD-2734164BCCFB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x910d6000 - 0x91117ff7  com.apple.CoreMedia (1.0 - 705.42) <B45070F1-4097-3BAD-AA7C-0F7AFD6EAC27> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91118000 - 0x91120ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <BB0C7B49-600F-3551-A460-B7E36CA4C4A4> /usr/lib/system/libcopyfile.dylib
    0x9112b000 - 0x9112fff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x91130000 - 0x9116cfff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <AA56493C-D7C6-3D4F-8DC8-855405AFF57B> /usr/lib/libcups.2.dylib
    0x911ab000 - 0x911fbfff  libFontRegistry.dylib (??? - ???) <81E03B82-1F31-3702-97DC-BE20298E326F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x911fc000 - 0x911fdfff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x91243000 - 0x91258fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x91259000 - 0x9129cffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <6B35F203-5D72-335A-A4BC-CC89FEC0E14F> /usr/lib/system/libcommonCrypto.dylib
    0x9129d000 - 0x912b2ff7  com.apple.ImageCapture (7.0 - 7.0) <E019C6BB-CCE9-3D8C-A131-909CE8853502> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x912bd000 - 0x91471ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x91751000 - 0x9177affe  com.apple.opencl (1.50.63 - 1.50.63) <C4EC60D6-9A7C-3CE9-AA80-2F81D9BB4465> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9178e000 - 0x9178efff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9178f000 - 0x917a2ffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3D94520B-C976-370F-AF56-278002BCF11D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x917a3000 - 0x917d9ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x917f4000 - 0x91859ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9185a000 - 0x9186efff  com.apple.CFOpenDirectory (10.7 - 146) <58050170-D74E-3670-945D-D8501F67835F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x918ab000 - 0x918cdff1  com.apple.PerformanceAnalysis (1.10 - 10) <FEB4AEF4-F8C0-3A20-A004-B236B2F0B02B> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x918ce000 - 0x918cfffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <8CADB97F-101D-34C3-82C2-569E801031E0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x9192c000 - 0x9192dfff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9192e000 - 0x9192efff  com.apple.Carbon (153 - 153) <F996332A-390E-3337-A09E-A1E54004B567> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91932000 - 0x91a5eff9  com.apple.CFNetwork (520.2.5 - 520.2.5) <02193949-50A8-3CBC-9920-5FCDB8EBE17A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x91a5f000 - 0x91da1fff  com.apple.MediaToolbox (1.0 - 705.42) <5AEFD5BE-6FA3-38F8-966A-B0AB56C472B8> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x91da2000 - 0x91ec2fec  com.apple.vImage (5.1 - 5.1) <008B989F-F080-398E-ACB1-FBF5BA107D6D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x91ec3000 - 0x91ee2fff  com.apple.RemoteViewServices (1.2 - 39) <C7B638D2-2F8B-3A45-916A-73103FADC822> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x91ee3000 - 0x91ee3fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91f42000 - 0x9239bfff  com.apple.RawCamera.bundle (3.8.2 - 579) <D7463860-2455-3A4F-A7AB-E9CA7A218154> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9239c000 - 0x9239fffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x923a0000 - 0x923cbfff  com.apple.GSS (2.1 - 2.0) <05A0171B-76EA-3E4C-8A36-65D1A978AF4B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x924fb000 - 0x924fcff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <5E7C184B-7A53-3C64-845C-046373419A5B> /usr/lib/system/libremovefile.dylib
    0x924fd000 - 0x92520fff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92562000 - 0x9256ffff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92570000 - 0x92c19eeb  com.apple.CoreGraphics (1.600.0 - ???) <322FC806-0B9F-3A58-8C88-D477E32A50F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x92c1a000 - 0x92c25ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <DFF43AC6-7D21-36C6-97C9-F46411D18032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x92c35000 - 0x92e5effb  com.apple.QuartzComposer (5.0 - 236) <7BD138F0-C748-3013-98C0-4D5F5E10B9AB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x92e5f000 - 0x92e76ff8  com.apple.CoreMediaAuthoring (2.0 - 889) <3344CAE3-54BE-3990-B1AE-AD0666B9B885> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x92e77000 - 0x92f0bff7  com.apple.LaunchServices (480.21 - 480.21) <E3621817-B627-3EEC-A7F9-0D45583B7FE8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x92f0c000 - 0x92f10fff  com.apple.CommonPanels (1.2.5 - 94) <EA47550D-7DAF-30D9-91DB-1FB594CC8522> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x92f48000 - 0x92f50ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x92fc0000 - 0x92fc4ffd  IOSurface (??? - ???) <CAF0B3F2-1589-3139-8A59-E54797C02EA0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92fc5000 - 0x934a1ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x934a2000 - 0x934a3ffd  libCVMSPluginSupport.dylib (??? - ???) <96F2F2F4-E7A9-36C8-B1CF-D58AA3DB2B44> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x934a4000 - 0x9358cfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <A1B07527-9C74-3107-A972-9795B817D683> /usr/lib/libxml2.2.dylib
    0x9358d000 - 0x935afffe  com.apple.framework.familycontrols (3.0 - 300) <F87D87EF-553A-3165-9C9A-6E117C537FE9> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x935b0000 - 0x937f8fff  com.apple.JavaScriptCore (7534.51 - 7534.51.21) <FEDF4D88-FB61-3A3F-ABE2-72BE2234DDF4> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x937f9000 - 0x93822ffe  com.apple.shortcut (2.0 - 2.0) <E249F912-93D1-3BDF-BD5E-96602003E2E9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x938a7000 - 0x938aaffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x938ab000 - 0x93badfff  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <8094724D-591D-3CC2-81DE-4E3029624E11> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x93bbc000 - 0x93bbcff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93bbd000 - 0x93c94ffb  com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x93d06000 - 0x93d68ffb  com.apple.datadetectorscore (3.0 - 179.4) <12EF80E0-35CC-30A7-942F-2F9E87C4C98C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x93e7e000 - 0x93ea4ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <64AB163E-7E91-3028-8730-BE11BC1F5237> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x93f03000 - 0x93f7effb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <D5AC5C21-CE1E-333D-94F7-F0F534FD4DC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x93ff3000 - 0x9407afff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x9407b000 - 0x940b9fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <264FF88C-3E76-36A7-9D3C-6732C6958477> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9431e000 - 0x9435affd  libGLImage.dylib (??? - ???) <8251242B-E04E-3467-BD0F-834578B18AC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x94367000 - 0x943b0ff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x943b1000 - 0x943b3ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x943b4000 - 0x943b7ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <13A8AA6F-C4AD-3B1B-AF83-338DB3C05049> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x943b8000 - 0x943e0ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <5158C760-D168-3842-AAE0-3B146B3537A7> /usr/lib/libxslt.1.dylib
    0x943e1000 - 0x9440ffe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <07D9A827-9567-34C2-9022-AF4BF975C9A7> /usr/lib/libSystem.B.dylib
    0x94410000 - 0x94410ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x947d7000 - 0x947ddffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x947e9000 - 0x94802fff  libPng.dylib (??? - ???) <A83B66DC-302C-3A4C-8107-0E5560708024> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x94803000 - 0x94803fff  libdnsinfo.dylib (395.7.0 - compatibility 1.0.0) <A870EB56-560C-3DA2-B189-6E0FD2D3B66D> /usr/lib/system/libdnsinfo.dylib
    0x9487a000 - 0x94881ffd  com.apple.NetFS (4.0 - 4.0) <AE731CFE-1B2E-3E46-8759-843F5FB8C24F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94882000 - 0x94886fff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x94887000 - 0x9488affb  com.apple.help (1.3.2 - 42) <B1E6701C-7473-30B2-AB5A-AFC9A4823694> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9488b000 - 0x94894ff3  com.apple.CommonAuth (2.1 - 2.0) <D49B41B1-A5DD-366A-8C30-49E9B875AA13> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x94895000 - 0x94897ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <52F7B44C-1B43-3B7B-9C9E-6410D8682935> /usr/lib/system/libdyld.dylib
    0x94898000 - 0x948e9ff3  com.apple.CoreMediaIO (210.0 - 3180) <79AA7CA8-FC39-375D-9485-855D302DF7AA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x949c1000 - 0x949c2fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x949c3000 - 0x94a99a5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x94a9a000 - 0x94afcff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x94b23000 - 0x95873fff  com.apple.QuickTimeComponents.component (7.7.1 - 2306) <B397F658-057A-3D84-ABC7-84AA6256DB88> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x95874000 - 0x958aafff  com.apple.DebugSymbols (2.1 - 85) <713C77B2-0AE4-33A7-8DE2-9237389B12A6> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x958ab000 - 0x958faffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x958fb000 - 0x95906fff  libkxld.dylib (??? - ???) <AD3C0B3E-EBA8-3A85-ADDB-F86613564E2D> /usr/lib/system/libkxld.dylib
    0x95907000 - 0x95917fff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x95918000 - 0x95919fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9591f000 - 0x95926fff  com.apple.agl (3.1.4 - AGL-3.1.4) <39BB17D3-4CF5-303C-BE8E-E07924AB2E66> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9596b000 - 0x95a06ff3  com.apple.ink.framework (1.3.2 - 110) <F0E9C225-0D20-31D2-AB14-2299CFAE6C2E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x95a07000 - 0x95ad2fff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x95ad3000 - 0x95ad3fff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95adf000 - 0x95d91ff7  com.apple.security (7.0 - 55010) <BE0350C5-5221-3BFF-B674-646AB1BA0F2E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95d92000 - 0x95dc8ff4  com.apple.LDAPFramework (3.1 - 120.2) <A8601C27-6134-3AD1-A76C-F65D49183D9E> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95dc9000 - 0x95ec1ff7  libFontParser.dylib (??? - ???) <83E7E71E-D217-3DEE-B288-F5BAE7E118C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x95eca000 - 0x95f1bff9  com.apple.ScalableUserInterface (1.0 - 1) <3C39DF4D-5CAE-373A-BE08-8CD16E514337> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x95f1c000 - 0x95febfff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <8B8A3DD3-BB3D-33FC-A714-81E1B883B155> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x95fec000 - 0x95fefff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x95ff0000 - 0x9607dff7  com.apple.CoreText (220.11.0 - ???) <4F98D709-75AC-35F0-AD88-8F2C4BD744C0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x9607e000 - 0x960c1fff  com.apple.MediaKit (11.0 - 585) <34874A12-B5B2-309D-BF37-8E5B5DC42059> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x960c2000 - 0x96335fff  com.apple.CoreImage (7.82 - 1.0.1) <6C99F458-E83A-3538-9B71-2C8BD0C9DCD5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x96336000 - 0x96426ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x96427000 - 0x96484ffb  com.apple.htmlrendering (76 - 1.1.4) <409EF0CB-2997-369A-9326-BE12436B9EE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x96485000 - 0x964f4fff  com.apple.Heimdal (2.1 - 2.0) <DE626683-DF32-341B-8997-AE63309590C7> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9650e000 - 0x9655cff3  com.apple.ImageCaptureCore (3.0.1 - 3.0.1) <DB40F137-4519-339B-81DC-7375B2FE8FD2> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x965a7000 - 0x965dafef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x965db000 - 0x966ecff7  libJP2.dylib (??? - ???) <35D120D4-3304-3A02-9259-EB933E74E63A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x966ed000 - 0x9672dff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x9672e000 - 0x9677eff4  libTIFF.dylib (??? - ???) <E86EA22A-82C0-3E77-9EAF-739F385790D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x96897000 - 0x9692eff3  com.apple.securityfoundation (5.0 - 55005) <474C9466-D2D5-3DD8-B8D7-F506615E7236> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9692f000 - 0x9692ffff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x96956000 - 0x96966ff7  libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
    0x969e6000 - 0x969e7ff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x96a5b000 - 0x96ce0fe3  com.apple.QuickTime (7.7.1 - 2306) <F8C64DC4-3FE4-3A06-B10B-59E7F3BA6FDD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96ce1000 - 0x96d0eff7  com.apple.securityinterface (5.0 - 55004) <45E7A2AA-DDEF-39D2-B48E-E7DFBEF527F3> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x96d0f000 - 0x96de5ff6  com.apple.QuickLookUIFramework (3.1 - 500.1) <4E259D94-6081-32D7-AD60-565E57B11EBA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x96e14000 - 0x96e31fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x96e32000 - 0x96e38ffd  com.apple.CommerceCore (1.0 - 17) <E59CD307-58E2-35FD-9131-B38978799910> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x96e3a000 - 0x96e92fff  com.apple.HIServices (1.10 - ???) <76B50B43-6CFD-3067-A085-11420FD4FAA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x96e93000 - 0x96ebbff0  com.apple.CoreServicesInternal (113.8 - 113.8) <9930695C-1C48-329F-93FD-5AEEE2EF942C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x96ebc000 - 0x96f34ff6  com.apple.CorePDF (3.0 - 3.0) <75F74A63-36BB-3C4E-8BB8-B4651B534FDB> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x96fb6000 - 0x96fbffff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x96fd1000 - 0x97a5fffe  com.apple.AppKit (6.7.2 - 1138.23) <ADFA8D70-601E-3B5C-96FD-F45F52055CC8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x98178000 - 0x98287ff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <90D36793-04A5-3BFF-BE83-EEEDCBEDC756> /usr/lib/libsqlite3.dylib
    0x98288000 - 0x98293ffc  com.apple.NetAuth (3.1 - 3.1) <CD89526E-4FF6-3BB3-A94E-832D4504AB1C> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9849d000 - 0x984abfff  com.apple.opengl (1.7.5 - 1.7.5) <81166D23-DE8E-3938-AAD3-29B1FA5E446E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x984ac000 - 0x984caff7  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <124A6CE3-3934-3994-9D0A-E85A0C0BF082> /usr/lib/system/libsystem_kernel.dylib
    0x984cb000 - 0x984d9fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x984da000 - 0x984e5ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <9B131BA5-E89B-3628-9F52-756D46EBC468> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x984e6000 - 0x98500fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x98501000 - 0x986d7fe3  com.apple.CoreFoundation (6.7.1 - 635.15) <AC9F6462-6315-3D89-8075-D048DB4DBF7E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x986d8000 - 0x9873ffff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x994d5000 - 0x998c8feb  com.apple.VideoToolbox (1.0 - 705.42) <3F12F8A3-ED41-3EAD-A887-B7805353122C> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x998c9000 - 0x998f3ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x9990a000 - 0x99963ffb  com.apple.coreui (1.2.1 - 164.1) <890E0BE9-3360-3B56-BE46-5A2421875A40> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x99964000 - 0x99992ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x99993000 - 0x9999aff9  libsystem_dnssd.dylib (??? - ???) <2FD48636-7CFA-32FA-A595-F12E4246E355> /usr/lib/system/libsystem_dnssd.dylib
    0x999b3000 - 0x99b9cff7  com.apple.CoreData (104 - 358.12) <F8AD7990-2C30-31A4-8E78-FA8DD5CF03CC> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x99b9d000 - 0x99bb3ffe  libxpc.dylib (77.17.0 - compatibility 1.0.0) <E01E0074-0830-3F20-8703-EA7722BFD358> /usr/lib/system/libxpc.dylib
    0x99bb4000 - 0x99bbcfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x99bbd000 - 0x99c04fff  com.apple.SystemConfiguration (1.11.1 - 1.11) <CA6CE2B6-DC18-31FF-9668-70BB2FD8D7BB> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x99c05000 - 0x99c12fff  com.apple.HelpData (2.1.0 - 70) <0145664A-4AD4-3CD3-AAF9-73B9EE906B9D> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x99c13000 - 0x99c13fff  com.apple.quartzframework (1.5 - 1.5) <49B5CA00-083A-3D4A-9A68-4759A5CC35A6> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x99c14000 - 0x99cd4fff  com.apple.CoreServices.OSServices (478.29 - 478.29) <EAAAAC1B-2599-3875-9068-DF7E6B5760A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x99ce1000 - 0x99ceaffb  com.apple.DisplayServicesFW (2.5.2 - 317) <DF4FCE9C-A4EE-3590-B079-495AC83836EA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x99cf1000 - 0x99d2ffff  com.apple.NavigationServices (3.6 - 192) <073BFFFD-56EB-3C8C-A45A-34E26C210D1D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x99d30000 - 0x99d30fff  com.apple.Cocoa (6.6 - ???) <5FAFE73E-6AF5-3D09-9191-0BDC8C6875CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x99d31000 - 0x99dbbffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x99dbc000 - 0x9a0c6ff3  com.apple.Foundation (6.7.1 - 833.20) <B5092554-485A-3A7D-904B-B04B1EE5C50C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9a0c7000 - 0x9a0e3ff5  com.apple.GenerationalStorage (1.0 - 125) <F1D67293-9192-367D-AE74-2732B23E7E77> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9a0e4000 - 0x9a0e8ff7  com.apple.OpenDirectory (10.7 - 146) <3D3D30CE-6D82-3681-AA98-4E3AEFFA4229> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9a0e9000 - 0x9a1cafff  com.apple.DiscRecording (6.0 - 6000.4.1) <6BD9120F-8128-3B85-8ACB-0924615425DD> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9a1cb000 - 0x9a1ffff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x9a200000 - 0x9a28dfe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x9a28e000 - 0x9a3f0fff  com.apple.QTKit (7.7.1 - 2306) <5A7E5ED0-C4DC-3CEC-ABE0-24899134ACE1> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9a40f000 - 0x9a4b3fff  com.apple.QD (3.12 - ???) <02425CB4-2571-307F-96AD-F3CD3C83614A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9a4b4000 - 0x9a4b6ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9a4b7000 - 0x9a521ff3  com.apple.CoreSymbolication (2.1 - 66) <A58DF9DA-61E3-397A-892B-134C66D2CFE3> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x9a522000 - 0x9a52dffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <B63F5D07-93B3-3F02-BFB7-472B4ED3521F> /usr/lib/libbz2.1.0.dylib
    0x9a52e000 - 0x9a54bff3  com.apple.openscripting (1.3.3 - ???) <8ABD04D6-7B7A-3C39-801E-1630098D5B42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x9a54c000 - 0x9a58dff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <975E4F25-7943-3785-849C-244FF4E77602> /usr/lib/libcurl.4.dylib
    0x9a58e000 - 0x9a6efffb  com.apple.QuartzCore (1.7 - 270.0) <0916DA83-6400-3FEA-BC53-5F4BA4D126EC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9a6f0000 - 0x9a71fff7  libsystem_info.dylib (??? - ???) <B86A363D-6EA2-3A69-A6CB-18B7F98FC61A> /usr/lib/system/libsystem_info.dylib
    0x9a720000 - 0x9a803ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x9a841000 - 0x9a84bff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <0EC79339-4D19-37D9-9FF5-191EB3CB6F0A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9a84c000 - 0x9ab8cffb  com.apple.HIToolbox (1.8 - ???) <DFED9BD0-E142-397B-BE16-16EBCF3CE1EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x9ab8d000 - 0x9ab90ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x9ab91000 - 0x9ab92ff7  libsystem_sandbox.dylib (??? - ???) <8C7F4C5A-0A31-308F-97D2-B5670B1C95DE> /usr/lib/system/libsystem_sandbox.dylib
    0x9ab93000 - 0x9aba4fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x9aba5000 - 0x9abaaff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
    0x9ac18000 - 0x9ac26fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x9ac27000 - 0x9ace7ff3  com.apple.ColorSync (4.7.0 - 4.7.0) <A39EA668-D042-377F-BC81-26748CD57ADC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9ace8000 - 0x9ad38ff9  com.apple.QuickLookFramework (3.1 - 500.1) <28CB604E-2426-3491-BF16-2CDFD4C392B0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9ad39000 - 0x9b1aeff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x9b2ff000 - 0x9b40effb  com.apple.DesktopServices (1.6.1 - 1.6.1) <9F02752A-617B-3AC7-BCA1-F040C105EDDE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x9b40f000 - 0x9b413ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x9b721000 - 0x9b782ffb  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <089D78E0-46A6-38DB-9545-7F35CC815939> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9b91d000 - 0x9bd1fff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x9bd20000 - 0x9bd95fff  com.apple.Metadata (10.7.0 - 627.20) <1E7C8194-8CE4-3103-A3D1-8913238AF923> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x9bd96000 - 0x9bd96ff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x9bdf9000 - 0x9be1eff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x9be1f000 - 0x9bf71fff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <7646E131-08EE-3D72-ADA2-4A61C562B36E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9bf72000 - 0x9bf73ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x9bf74000 - 0x9c32effb  com.apple.SceneKit (2.1 - 125.1) <7BFC0028-18AC-3B49-8DDC-CB7A7359D4F7> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x9c4c5000 - 0x9c4c8fff  com.apple.AppleSystemInfo (1.0 - 1) <0E02BA66-4EA6-3EA1-8D81-3D0DE36F1CE8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9c4c9000 - 0x9c525ff3  com.apple.Symbolication (1.2 - 83.1) <A458DFFA-0294-319F-9508-D29A39487B1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x9c568000 - 0x9c56dffd  libGFXShared.dylib (??? - ???) <820D744C-C641-3918-A72A-AC2E5276BCB6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x9c5ea000 - 0x9c64efff  com.apple.framework.IOKit (2.0 - ???) <D14460ED-2B6C-375D-B3A4-B8C82E922666> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9c64f000 - 0x9c657ff3  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <5FF5F6DE-32EE-3DEC-9DC4-2BC1D5797C82> /usr/lib/system/liblaunch.dylib
    0x9c908000 - 0x9ca07ffb  com.apple.DiskImagesFramework (10.7.2 - 331) <58D09F91-CC36-3CAD-9306-25BC8A5FD63E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 4227
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=210.3M resident=119.3M(57%) swapped_out_or_unallocated=91.0M(43%)
    Writable regions: Total=139.4M written=5092K(4%) resident=9612K(7%) swapped_out=0K(0%) unallocated=130.0M(93%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 31.9M
    ATS (font support) (reserved)         4K        reserved VM address space (unallocated)
    CG backing stores                   528K
    CG image                             12K
    CG raster data                      128K
    CG shared images                   3416K
    CoreGraphics                          8K
    CoreServices                        940K
    IOKit                               168K
    MALLOC                             75.8M
    MALLOC guard page                    48K
    MALLOC_LARGE (reserved)             400K        reserved VM address space (unallocated)
    Memory tag=240                     3040K
    Memory tag=242                       12K
    Memory tag=243                        4K
    Memory tag=249                      156K
    Stack                              66.5M
    VM_ALLOCATE                        19.1M
    __CI_BITMAP                          80K
    __DATA                             12.6M
    __DATA/__OBJC                       108K
    __IMAGE                            1256K
    __IMPORT                              4K
    __LINKEDIT                         44.0M
    __OBJC                             2520K
    __OBJC/__DATA                        76K
    __PAGEZERO                            4K
    __TEXT                            166.2M
    __UNICODE                           544K
    mapped file                       114.5M
    shared memory                       308K
    shared pmap                        6300K
    ===========                      =======
    TOTAL                             550.3M
    TOTAL, minus reserved VM space    549.9M
    Is this what you asked for?

  • Adobe Air HTML & JS Developing - Slow on massive Image-Tags

    Hello,
    I want to share a problem i noticed while developing an application with adobe air, based on the HTML & JS Stack, which uses multiple image-tags at the same time. I already mailed a bug but unfortunately did not get a bug number responded to refer to hit here. This post is started because i wanted to share a simple example which exhibits the problem.
    The Bug Report i mailed:
    ******BUG******
    Concise problem statement: Performance Issues with massive Image-Tags (scaled)
    Steps to reproduce bug:
    1. Create a simple Air-Application. No need for any Air-specific library we just want the Air-Webkit to render a HTML-Page
    2.  Load ~130 Pictures with a dimension of approximately 1024 x 768 pixels.  Render each of them as a scaled Image-Tag with the dimension 100x60  pixels.
    3. Load the Page in the Air/Safari/Firefox/IE Environment (Versions: Air 2.5, Safari 5.0.2 (Win XP), FF 3.6.10, IE7)
    4. Try scrolling down/left/right/up and resizing the respective stage
    Results: The Air Environment performs worst among those 4. It reacts unacceptably slow while trying to resize and to scroll.
    Expected results: similar performance to Webkit-Engine in Safari.
    I know of one other discussion which seems to be related to a similar thing (http://forums.adobe.com/message/44913).
    The Page i used to compare the Adobe-Air rendering & scroll behaviour against the behaviour of Safari, FF and IE is posted beneath (pretty long due to the excerpt of 131 pictures taken of flicker web service).
    with best regards
    Robert
    <html>
        <head>
            <title>Mass Img Tags</title>
            <script language="JavaScript">
                var data = [{
                    "Title": "landscape216 jpg",
                    "Summary": "",
                    "Url": "http://xemanhdep.com/gallery/landscape2/landscape216.jpg",
                    "ClickUrl": "http://xemanhdep.com/gallery/landscape2/landscape216.jpg",
                    "RefererUrl": "http://gallery.xemanhdep.com/2008/10/beautiful-landscape-photos-2",
                    "FileSize": 114688,
                    "FileFormat": "jpeg",
                    "Height": "525",
                    "Width": "700",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/f5f58ee2c6a04bfa",
                        "Height": "112",
                        "Width": "150"
                    "Title": "Landscape Bora Bora Lagoon with Catamaran French Polynesia jpg",
                    "Summary": "11 12 13 14 15 16 17 18",
                    "Url": "http://www.bergoiata.org/fe/landscapes2/Landscape%20-%20Bora%20Bora%20Lagoon%20with%20Catamaran%20-%20French%20Polynesia.jpg",
                    "ClickUrl": "http://www.bergoiata.org/fe/landscapes2/Landscape%20-%20Bora%20Bora%20Lagoon%20with%20Catamaran%20-%20French%20Polynesia.jpg",
                    "RefererUrl": "http://www.nitilurus.blogspot.com/",
                    "FileSize": 102604,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/8673e2bc14b343d0",
                        "Height": "120",
                        "Width": "160"
                    "Title": "Landscape Mount Tombstone Upper North jpg",
                    "Summary": "Landscape Flowers &gt; 02 Sep 2005 22 56 156k Fractal Roiling Vo &gt; 02 Sep 2005 22 56 157k Landscape Mount To &gt; 02 Sep 2005 22 56 172k Landscape Southern &gt; 02 Sep 2005 22 56 200k",
                    "Url": "http://www.bergoiata.org/fe/divers47/Landscape%20-%20Mount%20Tombstone,%20Upper%20North.jpg",
                    "ClickUrl": "http://www.bergoiata.org/fe/divers47/Landscape%20-%20Mount%20Tombstone,%20Upper%20North.jpg",
                    "RefererUrl": "http://www.bergoiata.org/fe/divers47?S=A",
                    "FileSize": 176537,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/cab907cfa143c5a2",
                        "Height": "120",
                        "Width": "160"
                    "Title": "Landscape",
                    "Summary": "",
                    "Url": "http://media-content.flixya.com.s3.amazonaws.com/files/bxj1986530672.jpg?AWSAccessKeyId=1TKE66PETJJHG8051M02&Expires=2114092205&Signature=1m7fiT7SAIe8HgLiPtae0%2FL62ho%3D",
                    "ClickUrl": "http://media-content.flixya.com.s3.amazonaws.com/files/bxj1986530672.jpg?AWSAccessKeyId=1TKE66PETJJHG8051M02&Expires=2114092205&Signature=1m7fiT7SAIe8HgLiPtae0%2FL62ho%3D",
                    "RefererUrl": "http://www.flixya.com/photo/530672/Landscape",
                    "FileSize": 253644,
                    "FileFormat": "jpeg",
                    "Height": "375",
                    "Width": "500",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/6ca09130080fe348",
                        "Height": "108",
                        "Width": "145"
                    "Title": "purple landscape jpg",
                    "Summary": "Purple Landscape Róbert Štefanka 10 srpen 2006",
                    "Url": "http://www.lightharmony.com/admin/ext/purple-landscape.jpg",
                    "ClickUrl": "http://www.lightharmony.com/admin/ext/purple-landscape.jpg",
                    "RefererUrl": "http://www.lightharmony.com/fotografie/160/cz/author/8/0/purple-landscape",
                    "FileSize": 323686,
                    "FileFormat": "jpeg",
                    "Height": "463",
                    "Width": "700",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/a4609865c6a4cd22",
                        "Height": "99",
                        "Width": "150"
                    "Title": "Landscape Matterhorn Lake jpg",
                    "Summary": "Nature Rainy Lands &gt; 02 Sep 2005 22 50 58k Landscape Mountain &gt; 02 Sep 2005 22 49 89k Landscape Matterho &gt; 02 Sep 2005 22 49 198k Landscape Lighthou &gt; 02 Sep 2005 22 49 177k",
                    "Url": "http://www.bergoiata.org/fe/divers44/Landscape%20-%20Matterhorn%20Lake.jpg",
                    "ClickUrl": "http://www.bergoiata.org/fe/divers44/Landscape%20-%20Matterhorn%20Lake.jpg",
                    "RefererUrl": "http://www.bergoiata.org/fe/divers44?N=D",
                    "FileSize": 202547,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/0203edf764b1c67c",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape",
                    "Summary": "LandScape LandScape 2",
                    "Url": "http://www.smashingdownloads.com/wp-content/uploads/2009/06/landscape.jpg",
                    "ClickUrl": "http://www.smashingdownloads.com/wp-content/uploads/2009/06/landscape.jpg",
                    "RefererUrl": "http://www.smashingdownloads.com/2009/06/04/27-brilliant-examples-of-landscape-photography",
                    "FileSize": 99635,
                    "FileFormat": "jpeg",
                    "Height": "399",
                    "Width": "600",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/fe217612dffd3c10",
                        "Height": "96",
                        "Width": "145"
                    "Title": "landscape3 jpg",
                    "Summary": "its own If you re a fan of the handiwork of Mother Nature and you d like to get a glimpse of the diversity of the world check out this photostream featuring gorgeous landscape photography",
                    "Url": "http://www.dirjournal.com/info/wp-content/uploads/2009/12/landscape3.jpg",
                    "ClickUrl": "http://www.dirjournal.com/info/wp-content/uploads/2009/12/landscape3.jpg",
                    "RefererUrl": "http://www.dirjournal.com/info/the-magnificent-beauty-of-natures-landscapes",
                    "FileSize": 169164,
                    "FileFormat": "jpeg",
                    "Height": "483",
                    "Width": "700",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/0b807ce0d282bfc2",
                        "Height": "103",
                        "Width": "150"
                    "Title": "sm landscape syracuse label jpg",
                    "Summary": "sports video game Stevensgraph of Columbus landing artwork including nice small o b horses and children sheep painting V Perrin small landscape etc Gone with the wind Lamp very nice quality 4 pc leather parlor set barely used 2 canes one w sterling top ca 1879 French Gras Bayonet several nice mirrors great",
                    "Url": "http://www.coylesauction.com/images/Year2005/083005/sm%20landscape%20syracuse%20label.jpg",
                    "ClickUrl": "http://www.coylesauction.com/images/Year2005/083005/sm%20landscape%20syracuse%20label.jpg",
                    "RefererUrl": "http://www.coylesauction.com/AuctionPreview/Year2005/ap083005.htm",
                    "FileSize": 67481,
                    "FileFormat": "jpeg",
                    "Height": "486",
                    "Width": "650",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/dcccdb9e4e66c4e2",
                        "Height": "112",
                        "Width": "150"
                    "Title": "post5 landscape jpg",
                    "Summary": "a little boost to the colour All in all a 20 to 30 minute job Was it worth You decide In my opinion it won the right to have its own place in the sorted folders Landscape Before After",
                    "Url": "http://www.chromystic.com/blog/goncalofigueiredo/resource/img/post5_landscape.jpg",
                    "ClickUrl": "http://www.chromystic.com/blog/goncalofigueiredo/resource/img/post5_landscape.jpg",
                    "RefererUrl": "http://www.chromystic.com/blog/goncalofigueiredo/entry/there-is-still-a-chance",
                    "FileSize": 188108,
                    "FileFormat": "jpeg",
                    "Height": "332",
                    "Width": "500",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/dbb4f27647c5952e",
                        "Height": "96",
                        "Width": "145"
                    "Title": "Landscape thumb jpg",
                    "Summary": "In this tutorial you will learn how to create a fantasy landscape using some simple and easy techniques Create Smoke Effect on Grungy Wallpaper",
                    "Url": "http://ntt.cc/wp-content/uploads/2009/10/Landscape_thumb.jpg",
                    "ClickUrl": "http://ntt.cc/wp-content/uploads/2009/10/Landscape_thumb.jpg",
                    "RefererUrl": "http://ntt.cc/2009/10/16/30-excellent-high-quality-adobe-photoshop-tutorials-new.html",
                    "FileSize": 84377,
                    "FileFormat": "jpeg",
                    "Height": "569",
                    "Width": "484",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/7a3616914ed77cf4",
                        "Height": "145",
                        "Width": "123"
                    "Title": "landscape 1024 30 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-30.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-30.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=30",
                    "FileSize": 271155,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/401d2cdfaab693a2",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 800 18 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-18.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-18.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=18",
                    "FileSize": 69120,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/cb5db7a20c94d0c8",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 1200 18 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-18.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-18.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=18",
                    "FileSize": 145920,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/6e966655546f4d28",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 1200 13 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-13.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-13.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=13",
                    "FileSize": 280268,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/2c7eb863b672ec92",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 800 35 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-35.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-35.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=35",
                    "FileSize": 101478,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/8efaed051155f5c4",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 1024 23 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-23.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-23.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=23",
                    "FileSize": 72704,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/8e632c62ce6398a8",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 800 30 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-30.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-30.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=30",
                    "FileSize": 169164,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/7868fafbafeba600",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 1200 28 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-28.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-28.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=28",
                    "FileSize": 452096,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/c42bc3d01efd78e2",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 1024 35 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-35.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-35.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=35",
                    "FileSize": 161382,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/1852e4fc7a9aefa6",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 1024 31 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-31.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-31.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=31",
                    "FileSize": 364032,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/0e613977e04c4882",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 1200 35 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-35.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-35.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=35",
                    "FileSize": 220979,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/c5c69d3a273d0880",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 1200 27 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-27.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-27.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=27",
                    "FileSize": 384204,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/04c55aa75582b4c2",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 1024 33 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-33.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-33.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=33",
                    "FileSize": 349491,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/81646c732fd68452",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 1024 26 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-26.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-26.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=26",
                    "FileSize": 297062,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/60c7e1a5b87dca0a",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscapeStream jpg",
                    "Summary": "pastoral painting in gold frame hollyhock painting rose painting in gold frame Madonna and child oil on canvas as is landscape with stream large European scene painting and much more",
                    "Url": "http://www.coylesauction.com/img/img2009/img033109/landscapeStream.jpg",
                    "ClickUrl": "http://www.coylesauction.com/img/img2009/img033109/landscapeStream.jpg",
                    "RefererUrl": "http://www.coylesauction.com/AucPreview/AP2009/ap033109.htm",
                    "FileSize": 49459,
                    "FileFormat": "jpeg",
                    "Height": "344",
                    "Width": "450",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/934090dff7521230",
                        "Height": "107",
                        "Width": "140"
                    "Title": "DCWP 406 038 Landscape Picture jpg",
                    "Summary": "Landscape Picture 1 I took this landscape picture from a speed boat on the Okavango Delta late one afternoon It shows one of the channels in the Okavango Delta when it is in full flow The delta is one of the",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_406_038-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_406_038-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture.html",
                    "FileSize": 60211,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/b524a62e8458d358",
                        "Height": "93",
                        "Width": "140"
                    "Title": "DCWP 406 019 Landscape Picture jpg",
                    "Summary": "Landscape Picture 7 This landscape picture of moring mist over the Kavango River in Namibia was taken just after sunrise one morning Our tent was less that ten metres from where I stood We were camping at",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_406_019-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_406_019-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-7.html",
                    "FileSize": 83558,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/27ef2bd37acfbb80",
                        "Height": "93",
                        "Width": "140"
                    "Title": "DCWP 506 023 Landscape Picture jpg",
                    "Summary": "Landscape Picture 5 The large Leadwood trees in this landscape picture are what caught my eye They are quite prevalent in the Moremi Game Reserve of Botswana escpecially near the North Gate campsite where",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_506_023-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_506_023-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-5.html",
                    "FileSize": 99532,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/17c1a79f67065d90",
                        "Height": "93",
                        "Width": "140"
                    "Title": "DCWP 506 024 Landscape Picture jpg",
                    "Summary": "Landscape Picture 6 The large Leadwood tree in this landscape picture is what caught my eye They are quite prevalent in the Moremi Game Reserve of Botswana escpecially near the North Gate campsite where this",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_506_024-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_506_024-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-6.html",
                    "FileSize": 93286,
                    "FileFormat": "jpeg",
                    "Height": "480",
                    "Width": "322",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/5b363b95bb9168b2",
                        "Height": "140",
                        "Width": "93"
                    "Title": "DCWP 506 005 Landscape Picture jpg",
                    "Summary": "Landscape Picture 4 I took this landscape picture depicting a large Baobab tree on Kubu Island on the Makgadikgadi Pans Botswana during June 2005 A picture utilising good light is always always better than",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_506_005-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_506_005-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-4.html",
                    "FileSize": 84172,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/5477f6c511630438",
                        "Height": "93",
                        "Width": "140"
                    "Title": "DCWP 410 001 Landscape Picture jpg",
                    "Summary": "Landscape Picture 2 I took this landscape picture near Grabouw on my way to the De Hoop Nature Reserve in South Africa s Western Cape I just had to stop for it Cloud formations in this part of the country can",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_410_001-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_410_001-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-2.html",
                    "FileSize": 77414,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/4f07caae67d26392",
                        "Height": "93",
                        "Width": "140"
                    "Title": "about landscape yard jpg",
                    "Summary": "philosophy is that the final scaled landscape plan you receive should convey your landscape ideas in a road map that will be used to transform your house and yard into your home After our design meets your expectations we will submit our bid prices to implement the design and work on packaging and phasing options We use the same bidding process whether",
                    "Url": "http://www.envconst.com/Images/about_landscape_yard.jpg",
                    "ClickUrl": "http://www.envconst.com/Images/about_landscape_yard.jpg",
                    "RefererUrl": "http://www.envconst.com/about/landscape",
                    "FileSize": 39116,
                    "FileFormat": "jpeg",
                    "Height": "315",
                    "Width": "485",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/07706b565b3f956a",
                        "Height": "94",
                        "Width": "145"
                    "Title": "landscape02 JPG",
                    "Summary": "and Monet landscapes but with an Impressionistic approach I still want to re do the water reflections from the buildings and light but for now this will have to do Landscape Landscape close up Another example of the Virtual 3 D work I have been doing is",
                    "Url": "http://www.dustinhetrick.com/art/landscape02.JPG",
                    "ClickUrl": "http://www.dustinhetrick.com/art/landscape02.JPG",
                    "RefererUrl": "http://www.dustinhetrick.com/art.htm",
                    "FileSize": 475136,
                    "FileFormat": "jpeg",
                    "Height": "960",
                    "Width": "1280",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/99ff10027365797a",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 800 2 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-2.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-2.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=2",
                    "FileSize": 42291,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/0609a5f1103b8ee4",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 800 1 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-1.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-1.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=1",
                    "FileSize": 129843,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/755ad7377c2f381c",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 1024 9 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-9.jpg",
      

    Hi,
    Thank you for reporting this. The internal bug number for the issue is #2740755. The issue is currently under review and will be investigated by one of AIR team members.
    Regards,
    Catalin

  • How to Remove maximize/minimize/close top-bar in full-screen view [MAC]?

    Hi.
    My Q. is pretty much as the title implies.
    It's a small thing, and maybe kind of trivial,
    but I'd like to know how to get rid of the maximize/minimize/close top-bar in full-screen view in Adobe Reader on the Mac.
    I am definitely in fullscreen view [I hit command+L], just so you know,
    but I still have that top grey bar showing with the maximize/minimize/close buttons [the red, yellow, and green].
    As I said, kind of a trivial concern, but I'd like to know how to hide that in full-screen mode.
    I tried searching around a few places for an answer, but there is nothing too obvious.
    I can't find anything in the full-screen preferences of reader either. Maybe I'm missing something...
    Thanks!

    Version 11.0 , so I guess that is the most recent?
    I think this is an application-specific problem too, because I don't encounter this in full-screen mode with other applications.

  • Retina support for Adobe AIR HTML

    Hi,
    I was suprised to find there's no retina display support for Adobe AIR (3.9).
    Macs with retina displays have been around for quite some time now.
    This is a crucial feature as I will not be able to use my application on my retina display.
    A bug report has been opened here: https://bugbase.adobe.com/index.cfm?event=bug&id=3662094
    Thanks.

    Hi Jeffrey,
    This is indeed an issue with the HTML control, however the StageWebView(true) control does support retina devices.  Is it possible for you to use this instead?
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageWebVie w.html#StageWebView()
    Thanks,
    Chris

  • Air For Android - Full Screen not working

    Opened CS5.5 > Chose "Air For Android" which gave me a stage dimension of 480x800 default. I then created my app.
    I am using a Droid Bionic and testing my app on it. It will not go to full screen, regardless of how I am holding the Droid. When publishing, I clicked "Full Screen" and Portrait, Landscape, Auto Orientation, etc. I tried all of the publishing options, yet still there is white screen on the eastern and southern side of the screen.
    I have a picture on the main screen, and it fits perfectly within the 480x800 dimmensions when playing in Flash. After publishing to an APK file and testing it on Droid, I have that white space as mentioned, as if the stage size grew larger than the picture / app. I also shrank the stage(480x800) dimensions to to (340x600) , but still the same amount of white space. When I move the picture to the right a bit, and publish, it shows the white space on the left hand side of the stage. This can only mean that when I publish, the stage size grows but everything on the stage stays the same. 
    Any ideas?
    Thanks!

    I removed:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    from AS3 and it works better. Now there is even white space on the north and south side of the screen. Clicking "Full Screen" in the publish settings, makes a little more white space, which is weird. It as if now the stage is expanding its height, rather than its height and width due to me using the above code. Still, would like to get rid of that extra white space.
    Edit: It looks like the stage height grew by 60. If I expand the picture by 60, placing it on the stage at 0x and -30y, it fits fine on the bionic. I don't understand why this is happening, and scared that it may be different for each device.

  • Adobe Flash Player 11 full screen problem

    When I've tried use full screen on some site, ther are displayed info that I can't  switch player in this mode and I should install old version of player.
    Some like this:
    To watch mode
    dowland
    Not to all site with flash content but sometimes...
    System:
    Linux debian/Squeeze 2.6.32-5-amd64 #1 SMP x86_64 GNU/Linux
    Plugin:
    Flashplayer 11 b2 linux 64bit 080811
    Example of problematic site (no english):
    http://moto.pl/MotoPL/10,90142,10106089,Motodziennik__Zlot_aut_latajacych.html

    Thank you.  Can you post a screenshot showing what is prompting you to update Flash Player?
    http://forums.adobe.com/message/4209263
    Also, do you see something similar to my screenshot below when you visit this page:
    http://www.bobbyvandersluis.com/swfobject/testsuite_2_2/test_dynamic_multiple.html

Maybe you are looking for

  • Windows vista issues on Satellite A100-036

    Hi. I have a Toshiba satellite A100-036 laptop with windows vista home basic 32 bit and I have the following problems. 1.They replace me the hard disk at a store. I only have the Toshiba recovery dvd that I used to format the windows. They told me th

  • Dreamweaver CC - cannot copy and paste

    Hi, Dreamweaver just stopped permitting copy and paste. How can that be? How can a brand new install of DW suddenly not allow any text to be copied from one document to another? I have tried copying a section of four lines of text from one html file

  • Bug in Chinese input (Pinyin Simplified)

    Hello, I think I've found a bug in the OS' language input for Chinese input. It just doesn't seem to like writing the combination of letters 'zhe'. This is really annoying, as these letters spell the Mandarin for 'This', amongst other things, so I wa

  • Links to PDF files with relative paths from a Captivate 4 project

    I'm creating a presentation in Captivate 4 (I'm making an exe file) with some links to PDF files; the links are buttons with the 'open URL or file' set. The presentation will be distributed in CDs and obviously the links will not work for they point

  • How can I tell which generation I Pad I have?

    How can I tell if I have a gen 3 or gen 4 I Pad?