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()

Similar Messages

  • Bug in navigateToURL? (AIR HTML/JavaScript) window name parameter not working

    Hi,
    I have to popup the default browser from a HTML/JavaScript application.
    All links on the Air page should be opened in the same tab in the same browser window that was opened by the first click on a link.
    The code I use is
    var urlString = "http://www.adobe.com";
    var request = new air.URLRequest(urlString);
    air.navigateToURL(request, "myNewWindow");
    The myNewWindow parameter does not seem to be taken into account:  a new tab is opened on every click.
    I created a new Air application in Aptana and added the following straightforward code to it:
    <html>
        <head>
            <title>navigateToURLTest</title>
            <script type="text/javascript" src="lib/air/AIRAliases.js"></script>       
        </head>
        <body>   
    <a href="http://www.google.com"
                onclick="javascript:air.navigateToURL(new air.URLRequest('http://www.adobe.com'), 'AirTestWindow');return false;">New Tab</a>
            <br />
            <a href="http://www.adobe.com"
                onclick="javascript:air.navigateToURL(new air.URLRequest('http://www.adobe.com'), 'AirTestWindow');return false;">Same Tab</a>
        </body>
    </html>
    Same problem.
    Does anyone have any idea?
    Thanks

    Is there really nobody who can answer or at least try to reproduce this? 
    It's just creating a new Air HTML/Javascript application with one link with a named window target!

  • 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

  • AIR with JavaScript and AJAX (noob design issues)

    Okay, so as the subject states, I'm a noob when it comes to designing an AIR app. My question is kind of two fold:
    First, as a matter of design, I've got a main window that has several drop-down type menus "File", "Preferences", "Help" that kind of thing. My plan was to keep reusing the main window for each of my different screens (unless a pop-up/dialog type screen was called for)
    Anyway, the application I'm writing will, in part, handle a database of patrons. So under one of the menus (File in this case) I've got a "Patron" option. Clicking on "Patron" fires a function called newPatron() which in turn calls my function ebo.displayScreen('patron.htm'). This latter function takes the filename passed in and reads that file then dumps it's contents out to the main screen.
    So, my main window consists (in part) of the following html:
    <body onload="ebo.doLoad();">
         <div id="content"></div>
    </body>
    then my displayScreen function looks like this:
    function displayScreen(filename){
         var my = {};
         // get a handle on the file...
         my.file = air.File.applicationDirectory(resolvePath(filename);
         // get a handle on the stream...
         my.stream = new air.FileStream();
         //open the stream for read...
         my.stream.open(my.file, air.FileMode.READ);
         // read the data...
         my.data = my.stream.readUTFBytes(my.stream.bytesAvailable);
         // close the stream...
         my.stream.close();
         // update the screen (I'm using jQuery here)
         $("#content").empty().append(my.data);
    So anyway, this works like a champ. I click on "Patron" from my file menu and the screen changes to display the contents of patron.htm.
    Currently, patron.htm just contains the following:
    <div style="text-align:left;">
         <input type="button" value="add" onclick="ebo.add(1,2);" />
    </div>
    <div id="result"><div>
    ebo.add looks like this:
    function add(a,b){
         var my = {};
         my.result = a + b;
         $("#result").empty().append(my.result + "<br />");
    So, if anyone hasn't guessed by now, the code contained in the ebo namespace gets included on the main screen when the application loads, and my problem is that despite the fact that once the patron.htm file is loaded in the content div by clicking on the menu option, my button on that screen refuses to work. I've even tried just having the button do an alert directly,
    <input type="button" value="add" onclick="alert('AIRRocks!');" />
    but even that fails!
    So, I added some code to the main page to test a button from there...
    <body onload="ebo.doLoad();">
         <input type="button" value="add" onclick="ebo.add(1,10);" />
         <div id="result"></div>
         <div id="content"></div>
    </body>
    So, now when the main screen loads, I get an "add" button and when I click it the number 11 appears in the "result" div. When I click on the Patron menu option, the new html and javascript are loaded into the "content" div, but the add button in that area refuses to work!
    What gives? I'm sure I'm missing something. So I guess the two questions are: is my scheme of loading new content into the main window by reading the contents of a file, flawed in some way? Or am I just missing something about making calls from this dynamically loaded content? It *looks* like it should work fine, but if I can't make javascript calls from the resultant content, then the concept is no good.
    I realize this has been a somewhat long winded post, but hopefully it describes in enough detail the problem I'm having. I should maybe add that I've looked at what's in the DOM using the AIR HTML/JS Application Inspector and it looks like everything should work perfectly.
    I hope someone out there can help me and might have the patience to explain where I've gone wrong. I might also mention that the only book I've read (or am reading) on AIR with JavaScript and AJAX is "Adobe AIR (Adobe Integrated Runtime) with Ajax: Visual QuickPro Guide"... it really hasn't covered aspects of what makes good design (like what's the best way to reuse the main application window to hold interactive content)... but anyway, there you have it.
    Again, I hope someone can help me out.
    Thanks!
    Chris

    Thanks for responding, Andy. I don't think I'm losing my namespace. That
    thought had crossed my mind, which is why (and I thought I put this in my
    original post) I tried putting a somple alert in the onclick event of the
    button in my "patron.htm" file... but that simple alert doesn't even work.
    :o(
    Do you still think it's an issue with the namespace?

  • Adobe AIR Error - Uninstalling and Re-installing does not work?

    I keep getting this error everytime I turn n my laptop.  I have uninstalled and re-installed Adobe AIR several times and still keep getting this error after it tells me it has been installed successfully.  "This installation of this application is damage.  Try re-installing or contacting the publisher for assistance."  What is wrong with this program?  I cannot keep uninstalling and re-installing  this program and it is not installing properly.

    Pat has a great point and asks a good question.  In addition to identifying the AIR application that is causing you problems you may also want to review Troubleshoot AIR installation | Windows - http://helpx.adobe.com/air/kb/troubleshoot-air-installation-windows.html.

  • Adobe Muse html code and Constant Contact

    Muse noobie question re: Adobe Muse html code and Constant Contact
    We use Constant Contact for our email marketing. We prefer to generate our own html code and insert into Constant Contact. It has worked great for us in the past and bypasses and somewhat cumbserome Constant Contact interface.
    We tried inserting html code from Muse and the results were surprising:
    Any rectangles created were simply gone. Not showing. No colors, no outlines just gone.
    Text formating was way off in size and fonts. Spacing issues too.
    Page not centered. It looks centered in various browsers
    Any suggestions please?

    It's not going to work.
    The HTML/CSS/JavaScript abilities and requirements for browsers are vastly different that those of e-mail clients. The output of Adobe Muse relies on external CSS files and JavaScript, both of which are not available in most e-mail clients.

  • Include Adobe AIR in apk and app file.

    Is there any way to include a Adobe AIR in apk and app file (Android and iOS), that the user dont have to download it and install separtely?
    Is it possible to be  done in Flash Builder 4.5 (ActionScript Mobile Project)?

    See Captive Runtime
    http://tv.adobe.com/watch/adc-presents/adobe-air-with-captive-runtime-support-for-mobile/

  • 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

  • Cache-Control and Accept-Encoding support in Adobe AIR HTML Component

    I am evaluating Adobe AIR's HTML component and trying to figure out what is supported.
    I built the AIR app and had it point to www.google.com
    I notice that the requests to fetch JS,CSS from Adobe AIR do not include Accept-Encoding: gzip header.
    Does Adobe AIR's HTML Component support Accept-Encoding : gzip header ?
    I also noticed that even though the content served with far futures expiry, i.e. has Cache-Control: maxage={value} subsequent requests are being made and content is not served from the browser's cache.
    I observed this accross the app restarts.
    Can someone please clarify support of the two above Http headers ?
    Thank you.
    -Prashant

    You might also want to check out the useCache property to see if this helps.  See these links:
    http://forums.adobe.com/thread/726573
    http://forums.adobe.com/thread/490497
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/html/HTMLLoader.h tml

  • Adobe air, html, unicode

    Hi,
    I am trying to have Adobe AIR application to show some
    non-english languages. I am using the following HTML code within
    the body to show this character. It works correctly when i open
    this file directly on IE or Firefox.
    <p>a &#3334; b</p>
    But when i run it as AIR application, I only see the english
    letters. How do I make this unicode character appear.
    Thanks
    Binu

    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 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

  • 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

  • AIR HTML+JavaScript app vs. hardware accelerated composing

    I'm developing an HTML application for mobiles and desktops. The application is optimized for WebKit based environment. To improve a rendering speed I'm using hardware accelerated layers (something like -webkit-transform: translateZ(0); etc...).
    This works great on my iOS devices (using PhoneGap aka Cordova to package a "native" app).
    On Windows and OS X I'm using Adobe AIR 3.5 to package a captive runtime HTML/JavaScript based application. I have found this to be the best solution (for now) even though I have tried many others (Cordova for Windows 7 / OS X, TideSDK, ...).
    The point is that the HTML rendering in Adobe AIR seems not to be hardware accelerated. Does anyone of you have experience with this? Is here any possibility to enable hardware accelerated layers in AIR HTML rendering?
    Thanks a lot

    Thanks a lot, actually I tried AIR SDK 3.6 yesterday and it seems it still doesn't support an acceleration. In a browser it works just fine even in fullscreen (zoomed page). It seems that the best way to achieve my goal will be using Cordova wrappers for OS X and Win Desktop. But as an AIR developer I really want to use AIR SDK So I will do some more tests..
    Thanks,
    Pavel

  • Adobe AIR HTML component ignores Google Maps GPolyline opacity

    I have a Google Maps mashup web site that I want to display
    in an
    Adobe AIR app using the AIR HTML component. My mashup shows a
    Google map with some semi-
    transparent polylines (drawn as circles) drawn with the
    Google Maps API . In Safari, everything looks
    as it should. In AIR, the polylines are opaque; the GPolyline
    opacity
    value is ignored. I've tried the AIR app on Linux and Windows
    XP.
    Has anyone else encountered this issue or have some
    suggestions?
    The web site:
    http://dstresearch.com/map.html
    The AIR code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" height="800" width="800">
    <mx:HTML id="html"
    width="100%"
    height="100%"
    location="
    http://dstresearch.com/map.html"
    />
    </mx:WindowedApplication>
    Thanks,
    Josh

    You might also want to check out the useCache property to see if this helps.  See these links:
    http://forums.adobe.com/thread/726573
    http://forums.adobe.com/thread/490497
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/html/HTMLLoader.h tml

  • Suitability of Adobe AIR / HTML /JS

    I have a task to built a simple Digital signage system which will display different kind of information on LCD panels.
    I am not sure if Adobe AIR with HTML / Javascript would be a good choice for the desktop part of this application, which will be responsible for displaying the content. The logics could be easily solved and coded in Javascript and the app should run for a long time. The backend application for managing content will be web based.
    Maybe it would be better to use FLex instead. What do you think?
    Thanks for any recommendations.

    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

Maybe you are looking for