Content overflow, when building an Air Application. Does Catalyst provide any solution?

As artboard is in fixed size, but at 1 stage the content has to move down on navigating to different states, and I need to show all content, when I build an air file, the content is over flowing from the fixed artboard size. How I can restrict its content to not to be displayed from any direction and may open from other sides as I have few popups to show on the right of this application, and I need it as it is.
Any Help?

Thanks for your swift reponse Peter but I tried these steps and am still unable to get my application to update.
I can't understand how I can get the application to update locally by specifying the location of the xml file in the SSL properties and not get the application to update when I enter the http address for the xml file in the SSL properties.
I have used the same folder throughout this process and I am baffled as to why it does not work.

Similar Messages

  • Java.lang.NullPointerException is thrown when packaging Adobe AIR application for iOS

    Hi All,
    https://bugbase.adobe.com/index.cfm?event=bug&id=3071298
    As per above link this bug resolve(latest build) but i am facing  Java.lang.NullPointerException is thrown when packaging Adobe AIR application for iOS, using the packaging tools.
    (for  inappPurchase Demo app --- i used below link code)
    http://code.google.com/p/in-app-purchase-air-ios/
    Thanks,
    Sunil Rana

    Hi Everyone,
    I'm getting basically the same error. Are there any rules or guidelines that we are suppose follow when writing an app for iOS? Is there a way to know exactly where it is crashing? My apps are not MXML, only actionscript. Also I made sure I have no errors not even warnings in my SWF file, but still no go! 
    Getting the same error.
    Exception in thread "main" java.lang.NullPointerException
            at adobe.abc.GlobalOptimizer.sccp_eval(GlobalOptimizer.java:6944)
            at adobe.abc.GlobalOptimizer.sccp_analyze(GlobalOptimizer.java:5909)
            at adobe.abc.GlobalOptimizer.sccp(GlobalOptimizer.java:4628)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:3514)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:2215)
            at adobe.abc.LLVMEmitter.optimizeABCs(LLVMEmitter.java:526)
            at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:336)
            at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler
    .java:472)
            at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:82)
    Compilation failed while executing : ADT
    regards,
    Keith

  • Hello I bought a new 11 inch 2012 macbook air. Recently, i have been watching youtube and movies from my laptop. I have seen some green images flickering when playing videos. Does anyone have any solution or the cause of the problem ? Thank you

    Hello I bought a new 11 inch 2012 macbook air. Recently, i have been watching youtube and movies from my laptop. I have seen some green images flickering when playing videos. Does anyone have any solution or the cause of the problem ? Thank you

    Hello I bought a new 11 inch 2012 macbook air. Recently, i have been watching youtube and movies from my laptop. I have seen some green images flickering when playing videos. Does anyone have any solution or the cause of the problem ? Thank you

  • I'm in trouble, my iPod Touch is giving 4th shock when recharge and the battery does not last any more. who knows or has a similar problem, please help me. Note: all this after I downloaded the new version OS5.

    I'm in trouble, my iPod Touch is giving 4th shock when recharge and the battery does not last any more. who knows or has a similar problem, please help me. Note: all this after I downloaded the new version OS5.

    I would make an appointment at the Genius Bar of an Apple store because of the shock issue. I doubt it was caused by the update.

  • Does Apple provide any certification for Mobile Application testing (iOS)

    Does Apple provide any certification for Mobile Application testing (iOS)
    Kindly share the details of any Mobile Application testing certification provided by Apple.

    I'm not aware of any testing done by Apple except as part of the app approval process:
    https://developer.apple.com/appstore/resources/approval/index.html
    If you have questions about the review process, though, you can contact Apple via the contact links on that page.
    Regards.

  • When i tap "update" on an app, or try and download a new app i get the loading wheel for around a second then it goes back to showing "update" and does nothing.  Any solutions for this?

    When i tap "update" on an app, or try and download a new app i get the loading wheel for around a second then it goes back to showing "update" and does nothing.  Any solutions for this?  This is relevant to an iPhone 5S running iOS 8

    If you're really running iOS 8, you should be posting in the Developer's Forum, as you well know since you signed an NDA when you signed up for the Developer's program.

  • I recently did a software update, and now all my macbook pro i7 processor does is beep and it wont start up. Does anyone have any solutions?

    Just did a software update, and all that my Macbook Pro does is just beep. Does anyone have any solutions?

    It was a list of about five updates, but the one that stands out is the Lion OS X complete update - I think.

  • My numbers tables will not open correctly on screen, the preview shows but when I open the table it only shows blank. When I print a copy it prints ok any solutions?

    my numbers tables will not open correctly on screen, the preview shows but when I open the table it only shows blank. When I print a copy it prints ok any solutions?

    Rebooted computer works now ok

  • I have downloaded the iOS6 software on my iPhone4 and now I can't delete/move or create new mail. The bar at the bottom has disappeared. Does anyone have any solutions

    I have downloaded the iOS6 software on my iPhone4 and now I can't delete/move or create new mail. The bar at the bottom has disappeared. Does anyone have any solutions?

    Hold Power and Home buttons until iPhone restarts. Ignore "Slide to Power off".

  • Does Weblogic Provides any in built utility for server side browser detection

              Hi
              Does Weblogic Provides any in built utility or package for server side browser
              detection i.e. to know the browser details
              of the client with the first request.
              One such available product is BrowserHawk(http://www.cyscape.com).
              any thing similar to this available?
              Thanks in advance
              Mrutyunjay
              

    Hey Mohammed,
              yes, you could use just wl server to do file uploading. in your html client
              code, you need to specify the type of the data that you are sending as
              follows:
              <form action="UploadTestServlet" enctype="multipart/form-data" method=POST>
              File: <input type=file name=file><br>
              <input type=submit>
              </form>
              This will send your file to be processed by the UploadTestServlet. You need to
              code UploadTestServlet yourself to parse and extract useful data. check out
              www.servlets.com for a utility class that does just that
              Winston
              Mohammed Ali Usmani wrote:
              > Hi to All;
              >
              > I want to know if I can use weblogic (webserver) for file uploading from
              > client browser without using any ftp server.
              > Do I have to use some special code (may be in my servlet/html page) for
              > handling this. I mean that do I have to provide the implementation of RFC
              > 1867 by myself at server side?
              >
              > Or it is just merly a browser support? It doesn't effect the webserver at
              > all?
              >
              > Thanks
              

  • There is no Internet Tethering option under settings cellular data on my iPad3. I am using BSNL 3G on my iPad.  The options under settings cellular data are: Cellular data Data Roaming APN Settings SIM PIN SIM Applications.   Is there any solution to turn

    There is no Internet Tethering option under settings>cellular data on my iPad3. I am using BSNL 3G on my iPad.  The options under settings>cellular data are:
    Cellular data
    Data Roaming
    APN Settings
    SIM PIN
    SIM Applications.
    Is there any solution to turn on wifi hotspot?

    You might have better luck contacting your carrier - is this a feature they support?

  • I am currently using a Iphone 4.I have been trying for countless times to restore my phone but error 16 keeps on popping up.This happened after i updated to the latest IOS.Does anyone have any solutions other than jail-breaking.I have never jailbreaked.

    I am currently using a Iphone 4.I have been trying for countless times to restore my phone but error 16 keeps on popping up.This happened after i updated to the latest IOS.Does anyone have any solutions other than jail-breaking.I have never jailbreaked.I am deperate to restore my phone...Please help!!!!

    Most likely a hardware failure, & if so, you won't be able to restore/activte your phone. If you've tried at least two times, & are still getting this error, make an appointment at any Apple store, or call AppleCare.

  • Does OBIEE provide any tool or API for creating documentation for the RPD.

    Hi,
    I have a requirement to generate a user guide type of doc for a given subject area which should list following details.
    1. All the objects name and description entered for each objects in presentation layer.
    2. All the columns of each objects and their description entered in the presentation layer.
    3. All the objects and their hierarchies.
    Does OBIEE provide any tool or API through which we can generate documentation having these informations automatically?

    HI Venkat,
    Thanks for the reply. I have one question. If I give a description for any object or it's columns, that doesn't appear if I use Repository Documentation utility given in your link.
    Also if I populate the table from the flat file it generates and import into physical layer and bring into Presentation layer. It gives consistency check error while saving and in BI Answer I can't see any columns of that table. Do you have any workaround for that?
    I have also seen your other Article of Generating Metadata Dictionary. How is this different then the one you suggested.
    Thanks,
    Niraj

  • Building HTML Air Application in Dreamweaver CC

    I need some help ASAP.  We were recently switched over to Creative Cloud, and besides many issues we are having with CC that I won't go into here, one thing that is an immediate need is figuring out how to build and publish Air apps?  All fo the extensions that I have found and instructions I have read do nothing to get it working.  I can't even find an air extension from within the extension search/manager within the application itself.  Does anyone have the specific extension as well as directions for getting it running?  It was fine in CS5.X but no love now.  Please help!!

    Yes, why! Why doesn't this post have a clear answer but more importantly why doesn't Adobe have a well-published answer to removing this functionality from products and their future vision/plans for Air?
    To answer your question directly, you're missing what comes before that sentence... "Can I create Adobe AIR applications with Dreamweaver? Yes. Dreamweaver CS5 (and later) provides native support for building and packaging JavaScript/HTML applications on Adobe AIR for the desktop."
    The sentence you refer to is specific to mobile. I'm interested in creating Air apps for desktop directly from DW. It's confusing and misleading (not to mention frustrating) trying to find answers and solutions. Simply saying that this isn't the correct forum isn't helpful. Is there an article that you can point to from here about Adobe's decision to remove Air support?

  • Option to not create a shortcut when installing an AIR application

    Hello Adobe AIR community,
    Does anyone know if there is an option to not create a shortcut for an AIR application?
    Currently, all I have found is an option to choose the location of the shortcut from within the start menu (in the application descriptor file, using the programMenuFolder option).
    Thanks,
    Mauricio

    I figured it out.  The AIR installer was stripping out my query parameters.  I made the URL use slashes for the parameters with a rewrite instead of ? and & it worked.

Maybe you are looking for

  • Live View Not Rendering Page Properly

    Can someone explain why the LIVE VIEW in DW5.5 wouldnt render the page properly?  I have a site that I developed, and when I view it in every browser... FF, IE, Opera, Safari, etc there are no errors and the page renders properly.  However, when I vi

  • I've just got to say this!

    You guys are "FREAKIN" awesome !!!!!!!!!!! Just finished a project that had heaps of tweeks that because of my knowledge,(or lack of ) I would have never been able to get done in the timeframe given. FC was my way of "getting it done" and combined wi

  • Acrobat shortcut dissapeared from the Office 2010 Taskbar

    Since we had a problem with creating pdfs in Word 2010, we deactivated the pdfmaker Add In (as recommended from Office) and updated Acrobat (now we have version 9.5.5.) then we activated the pdfmaker Add in again, but the Acrobat shortcut remained di

  • Where can I find direct downloads of Flash Player 11 for Windows?

    I install flash player frequently and would like to have an offline installer like there was in the past, not this thing that downloads every time and deletes itself afterward. I subscribe to the Adobe mailing list and get notices whenever there's a

  • Fotos

    fotos de compartilhamento icloud