StageWebView Androïd

Hello all,
I have a problem by using StageWebView in my AIR app for Androïd (Air 3.4 SDK)
In my app, I have a large part of html with rich contents (slideshows) with images, js and css (70 Mo) .  I used StageWebView to display it.
In iOs, all works perfectly but not on Androïd.
1 / I searched on this forum and find this trick :
var source :File = File.applicationDirectory.resolvePath("html");
var destination:File = File.applicationStorageDirectory.resolvePath("htmlCopy");
source.copyTo(destination, true);
This solution freezes my Samsung Galaxy Tab 2, and crashs after few seconds because of the weight of my html folder I guess...
2 / I load my html page as a String with loadString() but all my path to images, css, js are broken. I did not success to fix it.
3 / I tried to use this API :
http://code.google.com/p/stagewebviewbridge/
I created a "www" folder, put my html in it and try loading my content but I always got compilations errors.
Exception fault: TypeError: Error #1009: Cannot access a property or method of a null object reference. at es.xperiments.media::StageWebViewDisk$/getFilePath()[/Users/xperiments/PROJECTS/Projects/OPEN/StageWebViewBridge/src/es/xperiments/media/StageW ebViewDisk.as:277]
Could you help me in a way ??
Thank you sooooo much guys.

Some more information has surfaced...
http://kb2.adobe.com/cps/895/cpsid_89526.html#main_Cookies_are_handled_differently_across_ mobile_and_desktop_platforms
Based upon this new information, it would appear as if StageWebView on Android can NEVER piggyback on an existing session thus requiring a user to login manually first for https sites.
Perhaps somebody can explain why this is the case for Android and not iOS?  Inquiring minds want to know.
I'll file a bug to make me feel better.

Similar Messages

  • Open StageWebView link in new window

    I have a StageWebView displaying a webpage containing ads that are coming in from AdMob (due to their current lack of support for AS3 and AIR for Android).
    However, when a user clicks on the ad, the linked page opens in that small window, so the content is barely even readable. Is there a way to make the browser open the intended link in a new window, seperate from my app?
    Obviously AdMob ads were not intended to work this way, as both the user and the adveriser are getting cheated here (due to AdMob's current lack of support for AS3 and AIR for Android).
    Thanks!

    I have a question as well.  I'm trying to display a stagewebview when the button is clicked but I want the stage webview to be on a new frame and take up the entire frame.  Here is code I have found but I can't get this to work like I need it to.
    I'm trying to get Stagewebview to show on a new stage when a button is clicked.  Right now it just shows on the same stage  becuase code is this.stage.
    Also, when it shows up on the new page I want to have back button, forward, and refresh and I want it on the top and not taking alot of space and only on the screen where it's showing the web view.
    Please help!!!!!!!!!!
    Here is the code:
    stop();
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.MouseEvent;
    import flash.net.URLRequest;
    import flash.media.StageWebView;
    import flash.geom.Rectangle;
    stage.align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    var webView:StageWebView;
    var swvRect:Rectangle;
    var swvHeight:Number;
    var uiElemsTop:Number=140;
    var swvY:Number=140;
    var uiElemsBot:Number=40+20+75+20;
    var uiElemsHeight:Number=uiElemsTop+uiElemsBot;
    infoBox.text="";
    infoBox.visible=false;
    mainPanel.visible=false;
    webBtnsPanel.visible=false;
    mcStart.addEventListener(MouseEvent.CLICK,init);
    function init(e:MouseEvent):void {
        mcStart.removeEventListener(MouseEvent.CLICK,init);
        mcStart.visible=false;
        mainPanel.btnExit.addEventListener(MouseEvent.CLICK, exitApp);
        mainPanel.btnCloseSwv.addEventListener(MouseEvent.CLICK,closeSwv);
        mainPanel.btnOpenSwv.addEventListener(MouseEvent.CLICK, openSwv);
        infoBox.text="Click open stage web view to begin";
        webBtnsPanel.btnNext.addEventListener(MouseEvent.CLICK, nextPage);
        webBtnsPanel.btnPrev.addEventListener(MouseEvent.CLICK, prevPage);
        webBtnsPanel.btnReload.addEventListener(MouseEvent.CLICK, reloadPage);
        webBtnsPanel.btnStop.addEventListener(MouseEvent.CLICK, stopPage);
        swvHeight=stage.stageHeight-uiElemsHeight;
        infoBox.x=stage.stageWidth/2-infoBox.width/2;
        infoBox.y=stage.stageHeight-40;
        mainPanel.x=stage.stageWidth/2-mainPanel.width/2;
        webBtnsPanel.x=stage.stageWidth/2-webBtnsPanel.width/2;
        webBtnsPanel.y=140+swvHeight+20;
        mainPanel.visible=true;
        infoBox.visible=true;
    //When the user taps on Exit button, the app quits.
    function exitApp(event:MouseEvent):void {
        NativeApplication.nativeApplication.exit(0);
    function closeSwv(event:MouseEvent):void {
        if(webView==null){
            return;
         webView.removeEventListener(ErrorEvent.ERROR,onError);
         webView.removeEventListener(LocationChangeEvent.LOCATION_CHANGING,onC hanging);
         webView.removeEventListener(Event.COMPLETE,onComplete);
         webView.viewPort=null;
         webView.dispose();
         webView=null;
         webBtnsPanel.visible=false;
         infoBox.text="Click open stage web view to begin";
    function openSwv(event:MouseEvent):void {
        if(webView!=null){
            return;
         webBtnsPanel.visible=true;
         infoBox.text="";
         webView=new StageWebView();
         webView.stage= next.stage;
         webView.viewPort=new Rectangle(0,swvY,stage.stageWidth,swvHeight);
         webView.addEventListener(ErrorEvent.ERROR,onError);
         webView.addEventListener(LocationChangeEvent.LOCATION_CHANGING,onChan ging);
         webView.addEventListener(Event.COMPLETE,onComplete);
         webView.loadURL("http://www.math.uri.edu/~bkaskosz/webview/index.html");
    function onError(e:ErrorEvent):void {
        infoBox.text="Page is not available. Try reloading.";
    function onChanging(e:LocationChangeEvent):void {
        infoBox.text="Loading...";
    function onComplete(e:Event):void {
        infoBox.text="";
    function nextPage(e:MouseEvent):void {
        if(webView==null){
            return;
        if(!webView.isHistoryForwardEnabled){
            return;
        webView.historyForward();
    function prevPage(e:MouseEvent):void {
        if(webView==null){
            return;
        if(!webView.isHistoryBackEnabled){
            return;
        webView.historyBack();
    function reloadPage(e:MouseEvent):void {
        if(webView==null){
            return;
        webView.reload();
    function stopPage(e:MouseEvent):void {
        if(webView==null){
            return;
        webView.stop();

  • Open hyperlinks in html text using StageWebView instead of external browser

    My iPad app downloads xml data from a server and displays it as html text. The text may contain hyperlinks and currently these are correctly displayed as links in my app. However when I click on the link, it opens the link in an external browser.
    Any idea how I could instead open the links using StageWebView - I know how to open a link using StageWebView - the problem is intercepting whatever causes it to open in the external browser and instead use StageWebView.
    Thanks in advance

    Hi, John, welcome to Apple's user-to-user discussion forums.
    Does anyone here know of a way to open new windows without using command click in a tab?
    If you want links on a web page to open in a new tab, you need to command-click on them. This will work both for links set up to open in the same window and those set up to open in a new window. There is no setting in Preferences to make links on a web page automatically open in a new tab.
    There is a preference setting to open links from other programs, such as Mail, in a new tab. In Safari's Preferences, click on the General icon. Towards the bottom where it says "Open links from applications", check "in a new tab in the current window".

  • Disable access to Androïd applications: possible ?

    Hi!
    Is there, or will be there the opportunity to disable the access to the Androïd applications (the nowadays restrictions about BB World, in Security parameters, are only about the age) ?
    In fact, I downloaded the Kindle application - by Amazon - in which I am faithfull (Kindle is well known). But I saw after that, that there was a Andrïd folder on my Blackberry (in which there was Kindle).
    I mean - I saw for a while on the mobile phone of a friend that Androïd semmed to be a good product but - when Blackberry is the most secure mobile phone, Androïd is the worst about security. We periodically see corrupted applications on Androïd App Store.
    This is why I would like to deny the access to the Androïd applications on my Blackberry.
    For a question of optimization, too. I would like only applications built for BlackBerry 10.
    Is there a way to do this ?
    Thank you in advance for your answers.

    BrickyB, This is what the Creative Cloud FAQ says,
    My organization wants to block access to certain services, such as storage and access to community features, available through Creative Cloud. Is this possible?
    Yes, your IT administrators can block users from accessing the online services.  The online services and their URLs are listed here.
    As an administrator, you will also be able to deploy Creative Cloud desktop applications independent of the cloud-based services using the Creative Cloud Packager. The Creative Cloud Packager is available through Creative Cloud for teams.
    Check this for more details.
    http://www.adobe.com/products/creativecloud/faq.html

  • Sudden error I can't find and StageWebView (AIR for iOS)

    Hey all,
    In my app I allow a user to download files from a list and then typically use StageWebViews to display them (videos mostly). Recently my app started to misbehave.
    I'm using Flash Builder 4.6 with AIR 3.2 on Win7 Pro 64.
    I test on-device. I choose fast export (quick packaging) and debug right from Flash Builder so I can see traces/errors/etc from the iPad.
    After downloading a ~40MB MP4, I save it to the applicationStorageDirectory (and mark it 'do not back up'). I then wait 3 seconds just to be sure the write has a few seconds to complete. Then I black out the screen with a black sprite, stick a close button on the screen and load the video into a new StageWebView.
    The problem is the first time these larger 40MB videos are saved and attempted, TONS of code isn't firing off or affecting the display. The video plays just fine, centered on the screen. However all the code to remove tons of things from memory during video playback which has tons of trace statements sprinkled in is simply not affecting the iPads display. This ONLY happens on iPad1 (OS 5.1). iPad2 and iPad3 work just fine.
    I presumed I was being too aggressive with the iPad1 and added more and more time between downloading, saving and setting the bit on the file so the iPad1 wasn't innundated with doing to much at once. I can add 25 minutes worth of setTimeout between playing this video for the first time and it will fail every time though. So it's not being innundated.
    If the video is already downloaded and a user selects it, it works perfectly fine. All views/classes are disposing properly to free up as much ram as possible for the video playback.
    Now, I'm getting this error randomly:
    Error #2044: Unhandled ErrorEvent:. text=Plug-in handled load
    I can't find where this is coming from. Has anyone seen this before? I don't know if it has anything to do with what I'm seeing fail here. I doubt it because I get it a very short time (few seconds) after the video starts playing back. I only get this video the first time a file is downloaded and played but then never again.
    I have an UncaughtErrorEvent that isn't even catching this. Everything to do with the class that displays the video has try {} catch() {} blocks over every line of code. So doesn't the small file downloader class. Nothing is throwing an ErrorEvent.
    Is there any easy way to find where this error is being generated? Something I might not know about the Flash Builder Debugger? Other errors show up and tell me where they occured, but this brand new error does not cause the app to fail and the debugger doesn't even flinch at it.
    On the first part, has anyone recently seen their apps exhibit something like this? I have a list of files that I destroy before I show the video and it continues to exist even though I literally trace() all over the code that should destroy it and I see the traces. Everything is nulled. Objects no longer exist. The background isn't visible that I'm tracing as I build and it exists on the display list. It's very odd.
    It'd just like suddenly StageWebView has an issue loading a freshly downloaded and saved file. It nukes the display list, nothing I do to it matters. But if the file already exists it all works fine.

    Yes I use ie.jampot.nativeExtensions.MobileBackup. Worked perfectly fine before and continues to return a true Boolean value for success and Apple has never rejected the app. They initially did because I did not set the backup bit. I presume that means it's working just fine.
    This app crashes after that code happens, during trying to load the content into a SWV. But hey, why not, I'll disable that and we'll see what happens. I'll report back. I get no errors at all when the app crashes (when I fast build for debugging and test on device). No errors at all. It just crashes. That's.. not good.
    edit:
    Nope sorry, didn't change a thing. The second time I use URLLoader after properly disposing of it each time it fails on any large files and the app crashes with no info back to Flash Builder. Even with MobileBackup disabled completely. Sucks.. Flash Builder profiler is showing me the reference counts on objects and I can see I'm cleanly disposing of everything properly.Something won't leave memory even though all reference counts are 0. This does NOT happen on iPad2 or iPad3, just iPad1 past OS 5.1. Ugh...
    re-edit:
    After profiling like crazy, tracing like crazy, crossing all my T's and dotting my....... lowercase j's...... I can only conclude there is now an intolerance for MP4s being played in a StageWebView of a certain filesize. YMMV but just making a quick demo app, downloading a 44MB MP4 and playing it works fine the first time. I then dispose of everything and verify it in profiler. I even run garbage collection manually on the profiler and it still curiously has a lot more memory in use than what it had at app launch. All instance (reference) counts are 0. Curiously memory is still pretty close to the same amount as the video I just played regardless that I disposed of the SWV instance completely. It's like the dispose isn't working. My method of dereffing the class level private variable is:
    _swv.stage = null;
    _swv.viewPort = null;
    _swv.dispose();
    _swv = null;
    This doesn't seem to release the memory as fast as I'd like to see. Perhaps there's something lingering but that should properly dispose of that SWV instance.
    Upon downloading the second video, the very second it's finished downloading (via binary mode URLLoader) the app crashes. It doesn't even fire off a complete event or error in any way, the app literally just quits. Perhaps the previous 40MB video is somehow still lingering and once I have that 44MB video in mem and try to load a different 40MB video it's 40+44=84MB ram trying to be allocated. I can't see why because as above, I'm disposing of the SWV. Reference counts of _swv is 0 after the first video is played and closed.
    Really strange but be careful, something new is going on here. It used to work perfectly fine. It appears to be an issue since 5.1. Perhaps Apple caching the SWVs contents when it's not desirable to do so. I may have to go back and use StageVideo and draw up my own video controls. I only use SWV because both it comes with nice controls and a fullscreen built in that runs very smoothly. If it isn't broke, don't fix it.. Well.. it's broken.
    I have verified that 20MB videos download and work fine. 40MB is giving me issues. Not sure where the line is here.

  • JavaScript button not working in StageWebView

    Hi,
    Does anybody have an idea why the Google+ "Invite your friends!" button is not working in a StageWebView window?
    Button:
    - https://developers.google.com/+/web/share/interactive#button_design
    It's working within the Flash IDE but not on mobile.
    I'm using Air 3.6 and Flash CS6.
    Thanks for any input!

    Make sure that you do not block [[JavaScript]]
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • Problem with Android 4 StageWebView cutting off/covering up buttons on same View

    So I'm trying to pull off something similar to the example here: http://cookbooks.adobe.com/post_Create_a_basic_web_browser_with_StageWebView-18850.html. Basically, a native browser view with a few Flex controls over top. Problem is, I've been running into a lot of display problems on Android 4 devices specifically. As far as I can tell, the StageWebView seems to be preventing the button overhead from being rendered in part or *at all* - as in, the button doesn't show up at all. It's just black.
    See for yourselves. Here's a screenshot (the test page has a yellow background):
    If I touch the screen or the web view, the button will (usually) abruptly show up above the page, where it's supposed to be:
    Anyone else seen anything like this before? Any ideas what it could be?
    Additional information for those who might want it:
    - Project is being developed in Flash Builder 4.6 with the 4.6 SDK. Screenshots are from a Google Nexus 7 tablet (Android version 4.1.2, Adobe AIR version 3.4.0.254).
    - the view in this case is an ActionScript class extending View with a skin. Here's the relevant code:
    [SkinState("ready")]
    [SkinState("loading")]
    public class LogInWebView extends View
              [SkinPart(required="false")]
              public var previousButton:Button;
              private var browser:StageWebView;
              private var url:String;
              private var isFirstPageLoaded:Boolean;
              public function LogInWebView()
                        super();
                        isFirstPageLoaded = false;
              override public function set data(value:Object):void {
                        url = value.url;
                        invalidateProperties();
              // protected functions
              override protected function createChildren():void {
                        super.createChildren();
                        if (url) {
                                  browser = new StageWebView();
                                  browser.viewPort = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);
                                  browser.addEventListener(Event.COMPLETE, onFirstPageLoaded, false, 0, true);
                                  browser.loadURL(url);
              override protected function partAdded(partName:String, instance:Object):void {
                        super.partAdded(partName, instance);
                        if (instance === previousButton) {
                                  previousButton.addEventListener(MouseEvent.CLICK, onPreviousButtonClick, false, 0, true);
                                  if (browser) {
                                            browser.viewPort = new Rectangle(0, previousButton.height, stage.stageWidth, stage.stageHeight-previousButton.height);
              override protected function commitProperties():void {
                        if (isFirstPageLoaded && currentState != "ready" && browser) {
                                  // display StageWebView now that it's loaded
                                  skin.currentState = "ready";
                                  browser.stage = this.stage;
                        } else if (currentState != "loading") {
                                  skin.currentState = "loading";
                        super.commitProperties();
              // event listeners
              private function onFirstPageLoaded(event:Event):void
                        browser.removeEventListener(Event.COMPLETE, onFirstPageLoaded);
                        isFirstPageLoaded = true;
                        invalidateProperties();
    - note: the button ONLY appears in state "ready" - it's not in state "loading."
    Your thoughts?

    Hi,
    Not sure what your specific problem is, but I have encountered no problems at all by going a stage further with my implementation - it is based on http://soenkerohde.com/?s=stagewebview but I extended it to update on dimension changes of the container.
    EG:
    [code]
    override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
    super.updateDisplayList(unscaledWidth,unscaledHeight);
    updateBrowser();
    protected function updateBrowser(event:ResizeEvent=null):void {
    if(myStage && stageWebView) {
      var offsets:Point = new Point();
      offsets = this.localToGlobal(offsets);
      stageWebView.viewPort = new Rectangle(offsets.x, offsets.y, unscaledWidth, unscaledHeight);
    [/code]
    Seems to work for me, anyway. Hope it does for you too.
    G

  • Can we show flash screen over the loaded HTML5 page in StageWebView for IOS?

    Hi Guys,
    I want to show flash screen(let say abc.mxml) over loaded HTML5 page in StageWebView. But unable to show it. Even I want to interact with both pages ( flash and HTML5) bidirectionally.
    Can anyone help me out of this StageWebView issue?
    Thanks,
    Mamta

    Okay. I guess it's not possible?
    Seems like the closest way to get there would be the UIwebview Native Extension. But the examples on the website are pretty vague as to it's use. (at least for a non-C coder like myself)
    Anybody use that particular ANE? Anyone? Bueller? Bueller?
    Again, just need to set a simple property here...

  • AIR 3.9.0.880 StageWebView and Retina MBP

    When I compile my app using AIR 3.9.0.880, my StageWebView is 1/4 size on my Retina MBP unless I pass true to the StageWebView constructor for the "useNative" parameter. Is this by design?
    I have this set in my app descriptor:
    <requestedDisplayResolution>high</requestedDisplayResolution>

    1. It works fine in AIR 3.6,  3.7 and 3.8.
    2. Yes, see code below.
    3. I'm testing on a 15-inch Retina MacBook Pro running OS X 10.8.5.
    Test code:
    package
    import flash.display.Sprite;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.media.StageWebView;
    import flash.geom.Rectangle;
    [SWF(width="800", height="800")]
    public class StageWebViewExample extends Sprite
        private var webView:StageWebView = new StageWebView();
        public function StageWebViewExample()
            webView.stage = this.stage;
            webView.viewPort = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);
            webView.loadURL("http://www.adobe.com/");
            stage.align = StageAlign.TOP_LEFT;
            stage.scaleMode = StageScaleMode.NO_SCALE;

  • Definition flash.media:StageWebView could not be found ?(help)

    how to fix Definition flash.media:StageWebView could not be found.using adobe flash cs5 v11

    Target one of those in the screenshot:

  • StageWebView could not be found

    I found an example of stagewebview in help. I just put the code on the first frame. I'm getting an error saying flash.media.StageWebView could not be found. How do I use this?
    using Flash Pro CS5
    import flash.display.MovieClip;
    import flash.media.StageWebView;
    import flash.geom.Rectangle;
    import flash.events.KeyboardEvent;
    import flash.ui.Keyboard;
    import flash.desktop.NativeApplication;
    var webView:StageWebView = new StageWebView();
    function StageWebViewExample()
         webView.stage = this.stage;
         webView.viewPort = new Rectangle(0,0,stage.stageWidth,stage.stageHeight);
         webView.loadURL( "http://www.adobe.com" );
         stage.addEventListener( KeyboardEvent.KEY_DOWN, onKey );
    function onKey( event:KeyboardEvent ):void
         if (event.keyCode == Keyboard.BACK && webView.isHistoryBackEnabled)
              trace("Back.");
              webView.historyBack();
              event.preventDefault();
         if (event.keyCode == Keyboard.SEARCH && webView.isHistoryForwardEnabled)
              trace("Forward.");
              webView.historyForward();

    Thanks OMA2K,
    I put it in AIK2.7.1, and pointed the Actionscript library to it. It's found it, but the TwitterWidger thing doesn't want to do it as in for iPhone, so now at least I can experiment with it and hopefully get it working.
    I'm actually trying to get a really simple thing going here. only the Twitter auth bit is really a handfull.
    Pseudo code:
    app is running.
    user taps [send] button
    .... first time, user validates login to Twitter. this is stored so not necessary any successive time.
    ... pre-built message (tweet) is sent to twitter users timeline.
    return and wait till user presses [send] again
    I have another version of this TwitterWidger running on the iphone, which uses the PIN authorization method. However, when the web page opens to set and retrieve the authorization pin, the app closes, thus closing the page that is waiting for the pin to be entered.
    This second version, the PINLESS version - doesn't work at all. It actually just keeps looping.
    I'm beginning to think it just can't be done on the iPhone, which is a pain.
    both TwitterApp and TwitterWidget are from http://www.flashmobileblog.com/examples/
    thanks for the help. Much appreciated.

  • StageWebView and Acrobat Reader Not Working

    Hi,
    I started noticing this back in AIR 3.6. It seems that now when using StageWebView to display a pdf file, it just opens a blank window and no longer loads the adobe reader plugin to display the pdf. Has anyone else seen this?
    thx

    Hi Keith,
    It sounds like this might be a bug.  Would you mind entering it over at bugbase.adobe.com?  Please post back with the bug number once you get it and I'll follow up internally.  By the way, what platform were you on?
    Thanks,
    Chris

  • Webpages open in browser, not the stageWebView?

    Hi,
    I have an app that I'm just doing some minor updates on after having successfully published it to both Google and Apple's app stores (http://flashgamer.com/apps/ ). The app consists of several lists and UI-elements done in Flash and will eventually display a HTML page in a StageWebView control.
    This latter part no longer works on iOS. Rather than displaying the supplied string in the StageWebView control, the app now opens the browser to http://adobe.122121_instert_funky_number_here_42423423.apollo.air/
    What's up with this? Only major change on my machine is that I've updated XCode from 3.x to 4.2. Does this matter?

    Answering my own question here.

  • StageWebView Doesn't work on Android with Captive Runtme...

    If I make an apk with the default setup (requires separate runtime download) it works, but not with captive runtime. I need captive runtime so that it can be accepted into Amazon Appstore.
    StageWebView.isSupported appears to return true when run, and then it just doesn't work.
    Is there any way around this? Will this work in the future?
    I am probably just going to work around it and do without it for this release, but would like to see if anyone knows what the deal is with it and let folks know of the issue.
    Edit: I have found that any usage of a StageWebView object not only doesn't work, but makes errors and breaks other parts of the app, so I have had to disable any usage of it...

    I'm also using StageWebView, but I don't have the problems you mention. I am using Captive Runtime to compile my app and it's working fine in the Android Market (I haven't tried Amazon Appstore, though).
    The version of AIR i'm using is 3.1. Are you using this version?

  • App Freezes in when opening a link in a pdf displayed in StageWebView, is there a solution to this?

    When viewing a PDF in a StageWebView on ios6 iPad3, opening a link is setup to open externally. This works on tapping links, however holding down on the link, and pressing 'Open' freezes the app (forces you to close the app completely and reopen). Is there a way to fix this behaviour? Or is it possible to block out the dialog from even opening?
    protected function onLocationChangeComplete( _evt:LocationChangeEvent ):void
      trace(" onLocationChangeComplete: " + _evt);
                                  _evt.preventDefault();
                                  navigateToURL(new URLRequest(_evt.location), "_blank");
    It works perfectly fine in ios7, though I haven't tested in ios5.

    He was asked the security questions because he was trying to download content on a new Device. Apple instituted this new security policy a couple of months ago.
    You are correct in that you cannot consolidate iTunes accounts into one account. I think that your best bet at this point would be to contact iTunes. There is probably no other way to resolve this now.
    Use this link and email iTunes Support. They will respond but be patient, as it can take 48 hours.
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Procurement Period wise Reports in BEx?

    hi, i have 2 reports to create in BEx. 1. period wise report. User been able to enter the fiscal period,and after execution of the report in Bex analyzer it should display the Period 05 and the values for that particular period and if we change it to

  • Invocation report (Discoverer Viewer) with parameters from an application

    Hi everyone, I'm proving report in Discoverer Viewer invoking them from an application, which sends parameters to him. I cannot obtain, that they directly execute when doing click in the URL of execution with its parameters, but that opens the screen

  • AVi produced by PP media export won't play the video part on my Windows Media Player, Why?

    It's basically it - So when I find my exported file in its folder and try to play it by double clicking on it,  My default player (WMP) all I get is the sound, It take quite a while before loading and then I get the usual white music note symbol on a

  • What brush preset should be used with the quick selection tool

    I'm using Photoshop CS5 on a MacBook Air running OS X 10.8.2 I have managed to change the brush in my quick selection tool, or at least the way it looks on the screen, and I can't figure out how to get it back. It now looks like a paint brush with li

  • Error updating

    i havnt really updated my itouch before so it was still 1.1.1 firmware, but i decided that i would update to 1.1.3 just yesterday, although at the end of the update it said "error updating" and now my ipod touch wont even turn on, meaning my computer