StageWebView question

Hi :
I can not connect to dropbox by using StageWebView to open a window inside my App in iPad Air,
but it works fine in PC iOS simulator. I get the user agent string by What's My User Agent?.
User agent string in PC iOS simulator:
Mozilla/5.0 (Linux; U; Android 2.2; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.19.4 AdobeAIR/14.
The user agent string is lacking of "Safari" on iPad Air as following by using StageWebView :
iOS in iPad Air with the test App
Mozilla/5.0 (iPad; CPU OS 8_1 lik Mac OX S) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12B410
I think it should be the same as the native ? or at least I can get something like "Safari" ?
Safari in iPadAir
Mozilla/5.0 (iPad; CPU OS 8_1 like Mac OSX) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4
It would be appreciated if anyone could give me some suggestions.
Best Wishes,
Ben

I found the reason, I forgot to set the StageWebView() to true.
code:
webView = new StageWebView(true);
Once I set it for the constructor, the problem is solved.

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

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

  • 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

  • AIR and performance questions

    Hey,
    I'm new to AIR mobile development although i have around a decades experience with Flash, but with AIR for mobile i'm a bit lost. So i was hoping someone can answer these questions for me...
    1. Is there currently no way to use a phones vibration with AIR? I remember seeing people asking this on these forums last year, and it still looks as if this extremely simple thing cannot be done? And if it cant, are there plans to have it in AIR 2.7?
    2. When i select GPU acceleration, does it cache all bitmaps automatically? Or do i still have to manually select "Cache as Bitmap" for everything i want cached? (i'm using Flash Pro CS5.5). Because it seems to have no effect on frame rates whatever i do here as long as GPU render mode is selected.
    3. Would i get better performance using vectors or bitmaps for graphics?
    4. Whats the texture size limit for Android and iOS before it can no longer be cached?
    5. Does it matter performance wise if JPG's and PNG's are used for graphics instead of bitmaps? (when i've not selected Cache as Bitmap).
    6. Whats the differences between a AIR for Android and AIR for iOS? I've noticed that for Android it supports use of the camera, for iOS it dont. Is there anything else?
    7. How can i embed a HD video in an AIR for Android app? i've seen this thread: http://forums.adobe.com/thread/849395?tstart=0
    but it's for AIR on iOS, i wouldn't think it's any different for Android, but i'm getting a blank screen when i use the code from that thread (and i'm testing on a Android phone too, not in Flash > Test Movie).
    Or if anyone has ANY tips for performance at all then i'd love to hear them

    Hello,
    I think that Colin may have answered a lot of your questions but here it is:
    1. There is currently no way to make the phone vibrate for within AIR. You can read this post on how to create an Android/AIR hybrid application which gives you extension access to some native functionality. Warning: it is somewhat advanced and not supported by Adobe
    http://www.jamesward.com/2011/05/11/extending-air-for-android/?replytocom=163323
    You can expect to have this functionality in AIR at some point in the future, perhaps not in 2.7
    2. in AIR for Android, there is no need to set GPU if you are only using bitmaps. Cache As Bitmap is only needed for vector art.
    3. Bitmaps would be better but performance is not the only consideration. Remember that memory is limited so bitmaps can use it all so vectors may be a good option if you have a lot of art. A great advantage of using AIR is that you have the option between the two. My recommendation would be that if your art is going to be animated, create it as bitmap or use cacheAsBitmap if it only moves on x and y axis and use CacheAsBitmapMatrix if it transforms in other way (rotation, size).
    4. The limit on Android was 1,024×1,024 last time I checked.
    5. JPGs are smaller in size but PNGs look better. A side note, because the PPI is so high on devices, everything looks great so you can get away with lesser quality assets. Test all options.
    6. The differences between the two platforms are minimal. Camera first but also Android lets you access the media library (where all the images taken by the device are stored) where iOS do not. In general Android is more open.
    7. Video is a very large topic. If you embed the video, you will have a black screen until it is fully loaded. I should say that I did a project with a 1 GB movie and it loaded right away. I have not used the StageWebView to display the movie. Keep in mind that the way the video is endoced matters a great deal (use baseline profile).
    Here is some sample code:
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.media.Video;
    import flash.events.NetStatusEvent;
    var connection:NetConnection;
    var video:Video;
    video = new Video();
    video.width = 480;
    video.height = 320;
    connection = new NetConnection();
    connection.addEventListener(NetStatusEvent.NET_STATUS, netConnectionEvent);
    connection.connect(null);
    function netConnectionEvent(event:NetStatusEvent):void {
    event.target.removeEventListener(NetStatusEvent.NET_STATUS,
    netConnectionEvent);
    if (event.info.code == "NetConnection.Connect.Success") {
    var stream:NetStream = new NetStream(connection);
    stream.addEventListener(NetStatusEvent.NET_STATUS, netStreamEvent);
    var client:Object = new Object();
    client.onMetaData = onMetaData;
    stream.client = client;
    // attach the stream to the video to display
    video.attachNetStream(stream);
    stream.play("someVideo.flv");
    addChild(video);
    function onMetaData(info:Object):void {}
    I would recommend looking at my book. I cover a lot of these topics in detail (and went through the same hurdles as you):
    http://oreilly.com/catalog/0636920013884
    (you can get it on Amazon too).

  • AIR for Android - StageWebView and Video (YouTube iFrame)

    Hey all,
    I've been converting an iOS tablet app over to Android and I've noticed the StageWebView has some curious limitations, especially with anything that accessed the GPU (video, etc).
    At first the embedded YouTube (iframe) videos would just show the first frame of the video dutifully with the usual play button. When pressed, the video went black and all I heard was audio. The reason I even mention this is it took quite a while to locate this Adobe page with a section entitled "Enabling Flash Player and other plug-ins in a StageWebView object". So I added in the application tag to enable the plugins with acceleration (<application android:hardwareAccelerated="true"/>) and now I can see video.
    The erratic thing is on ICS (Android 4.0.x) the video plays in the StageWebView but it horizontally closes to about 20% its normal width. The video player doesn't scale to 20% width, the iframe is just somehow collapsing to that narrow width removing the ability to see 80% of the video or use the controls (e.g. no fullscreen button visible).
    When tested on Jelly Bean (4.1.x) the video does not pinch horizontally, it (amusingly) plays horizontally backwards (mirrored) and upside down.
    Previously with hardwareAccelerated="true" missing I could press play and then toggle fullscreen and the video would work fine. After adding hardwareAccelerated="true" I can no longer use fullscreen, it crashes the devices after locking up.
    I also tried appending ?html5=1 to the YouTube videos to force GoogleAPI to choose a HTML5 player. This didn't do anything.
    Has anyone found the sacred tome of knowledge required to get an embedded YouTube video to play in a StageWebView iframe?

    Hi Sinuous.  Thanks for all your good help so far.
    I decided to go the ANE route.  I found an example ANE that plays videos, to follow, and I am getting on famously so far.  I can send a message from Javascript (in the SWV) to Flex (using the location trick), and from there I instruct the ANE to show and play the video, which appears on top of the SWV.  Huzzah.   I have two questions for you (or others listening).
    1.  My build has one platform:   <platform name="Android-ARM">
          Do I need another for Intel, or other architectures that Andriod supports?
    2.  My video appears full-screen.  How can I control the size and position of the video?  I've tried a couple
         of things that don't seem to work.  The code resembles this:
    //get the root container
              ViewGroup rootContainer = (ViewGroup)((ViewGroup)getActivity().findViewById(android.R.id.content)).getChildAt(0);
    //make a VideoView
              VideoView videoView = new VideoView(getActivity());
              videoView.setZOrderOnTop(true);
              videoView.setMediaController(new MediaController(getActivity()));
    //make a video container and add the video view
              ViewGroup videoContainer = new FrameLayout(getActivity());
              videoContainer(videoView, new FrameLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
    //add the video container to the root container
              rootContainer.addView (videoContainer, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.CENTER));
    //set the video URL and start it
              videoView.setVideoURI(Uri.parse(url));
              videoView..start();

  • [AIR/Desktop] StageWebView doesnt load remote URLs when rendermode is direct

    Hey there,
    Im porting an CS6-AIR-App from IOS to Desktop, in the IOS-App, i use rendermode GPU, everything works fine.
    In the Desktop-App im using renderMode "direct" (no GPU mode selectable in CS6).
    Some strange behavior came up.
    If rendermode is "auto" (or cpu), StageWebView loads local and remote html, but the App is slow, not an option.
    If rendermode is "direct", StageWebView loads local, but not remote html, though the App is fast now.
    My Fallback is to use HTMLLoader and it works with both rendermodes for both local/remote urls.
    Question: is there any drawback using HTMLLoader instead of StageWebView (e.g missing hardware accelaration)?
    Anyway, It would be nice to know whats going on and why StageWebView doesnt work.
    Using: captive/included runtime Air 3.5+3.6, Flash CS6, OSX 10.7.5.
    thanks,
    V.

    I'm also having problems with StageWebView:
    - Only in Desktop (iOS and Android work fine)
    - Only with AIR 3.6 and 3.7 beta (older versions such as 3.5 work fine)
    - But in my case it happens BOTH with Direct mode and CPU mode
    In my case, the page is just shown black, no content, and no events are fired. That's why I filed this bug:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3514201
    I've also tried to use the ASC 1.0 version or AIR 3.6 and the problem persists, so it's not a problem with the new compiler, but with AIR 3.6 itself.
    Please, vote the above bug report, to try to get this fixed!

  • StageWebView not work in android

    I'm new on the Android platform, and I need to port an iOS app. Flex 4.6  was selected for this. There's a need to load an app bundled PDF within the app but I cannot seem to figure out how...
    ·         I tried using StageWebView, but it seems it won't load a PDF on Android (but works on iOS).
    ·         I don't want load it up in the web browser (it seems not to work anyhow)
    ·         I don't want to convert the PDF to SWF or to images...
    Is there no "native" way to do this? I couldn't find any answered similar questions.
    Thanks!

    Did you find a solution? I'm having the same problem, and have tried several fixes such as copying file to a temp folder, enabling external storage permission, copying to applicationStorageDirectory... no luck yet. Anyone?!

  • StageWebView for Local HTML file

    I simply cannot get this to work.  I see a lot of people offering advice on the web for how to implement it, I've been trying all day and it doesn't work with Adobe AIR 2.5 for Android Flash CS5 plug-in.
    Instead of linking to an external website:
         webView.loadURL(http://www.google.com);
    I want to use StageWebView (because of the nice scroll capability) to load a local html file.  I have tried EVERYTHING, and it doesn't work.
    I have included the file in the APK (tried as a subdirectory and eventually, to simplify testing, I just included it in the same directory so no complex path).
    I have tried what others had recommended:
        webView.loadURL("test.html");
    I have tried using the filesystem and resolving the path:
        import flash.filesystem.File; 
        var file:File = File.applicationDirectory.resolvePath("test.html") ;
        webView.loadURL(file.nativePath) ;
    I have tried numerous change-ups on the filesystem approach, including:
        var file:File = new File("app:/test.html");
    and
        webView.loadURL(file.url);
    NONE OF THESE THINGS WORK.  Can anyone help me?  I'd like to have scrollable content, included inside the Android app - like a license html file or others.
    If none of this will work, any suggestions on creating simple, scrollable content that looks nice (scroll pane, scroll list, anything?)

    Hi Joe,
    can you show code snippet for the 1st solution? With loadString you can't load anything else into that page (i..e stylesheet)
    Edit: soon after I've posted this question I have found a solution:)
    var resultsPageUrl:String = File.applicationDirectory.resolvePath("output-html/result_html_pattern.html").nativePath;
    //and later
    webView.loadURL(resultsPageUrl);
    Edit2: above was just enough to have it working in adl still no joy
    Here is an example of temporary file being loaded, this works, http://forums.adobe.com/message/3443946
    var source:File = File.applicationDirectory.resolvePath("output-html");//copy entire folder (with css)
    var destination:File = File.applicationStorageDirectory;
    source.copyTo(destination, true);//copy to the application storage
    //get path to the html page within copied folder
    var resultsPageUrl:String = "file://" + destination.resolvePath("result_html_pattern.html").nativePath;
    best regards

  • StageWebView via proxy?

    Hi,
    Is it possible to use StageWebView with a proxy? If it's not built in, is there a way to use https://code.google.com/p/as3corelib/source/browse/trunk/src/com/adobe/net/proxies/RFC2817 Socket.as with it ?
    Cheers

    I knew exactly what error code 401 meant, but if you search through this forum and the nokia discussion groups you will find nothing but people asking the same question but getting no useful answers. I could point you to at least 30 forum threads. I performed plenty of searches with no useful results. But I'm sure it must be nice to be as intelligent as you.

  • Stagewebview is not using the default browser?

    Hello community,
    We encounter an issue regarding the userAgent we get with Javascript when our page is viewed from an Android App running Air and using the Stagewebview.
    We noticed that despite the default browser set as Google Chrome (Webkit v.537), we identify that app using Webkit v.534.
    After a lot of trouble shooting, it seems that there is a difference between "native" browser and "default" browser.
    Is that correct?
    If so, the question is: Is there a way to make Stagewebview use the user selected browser/engine ?
    Our website needs to display text vertically (japanese text) and the form elements are not well recognized in the 534 version browser, but work perfectly in the last version of Chrome we can get running on those devices.
    (We target Android 4.2+ users)
    Any input will be appreciated.
    Cedric Simon

    Hello ArkadiuszOkoń,
    I downloaded the 4.4W sdk and replaced the file as proposed, but I don't notice any change.
    On Desktop, I can see that Air webkit 533 is used. did my compile really took the new file into configuration?
    I'm using FlashDevelop, are there settings to change in the bat fie or in the manifest?
    As you proposed about the <uses-sdk> settings, some are already setup and I didn' change them, should I higher the minSdkVersion for example?
    Here is the current section:
      <android>
        <manifestAdditions><![CDATA[<manifest android:installLocation="auto">
      <uses-sdk android:minSdkVersion="8" />
      <uses-permission android:name="android.permission.INTERNET" />
      <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch" />
    </manifest>]]></manifestAdditions>
      </android>
    Also, Jan-F-W, thank you for your proposal,
    I should explain something else:
    The app is using "stagewebviewbridge" package that one can find here : stagewebviewbridge -  Extend Adobe AIR StageWebView ( Desktop, iOS, Android ) - Google Project Hosting
    We do not have access to the source code of that app, but we have to investigate the case and propose a solution otherwise the development company in charge will not make a single move.
    So I created a sample application that loads a page on my machine and that displays the userAgent to check what engine is running.
    (in that case, I can use a StageWebView directly if I want)
    I can see that depending on the useNative boolean parameter of StageWebView I get a different userAgent, which is great.
    BUT, I had a doubt on mobile, as stated by Adobe Documentation: This parameter is ignored on mobile.
    In doubt, I checked on the mobile device, and in both base, the device "native" browser is used, not the Chrome set as "default".
    Maybe my tests are not accurate enough? I'm not a flash developer, so I feel a bit lost there.
    Thank you for your guidance.

  • Reposition StageWebView With Orientation?

    I've been following the "Admob - Google Ads?" post (http://forums.adobe.com/message/3434770) with success.  However, I have one issue that I can't seem to figure out.  The banner displays at the bottom of my app initially, but if I rotate it horizontally if is out of view.  If I start the app horizontally it loads at the bottom initially, but is right in the middle of screen when the device is vertical. I added an orientation event listener that resets the viewport property, but that doesn't seem to work.
    My next plan of attack was to create two different banners.  One for vertical display and one for horizontal.  That is working great position wise, but I can't seem to figure out how to hide a StageWebView.  I tried deleting/recreating it with orientation changes but that throws an error.
    Can anyone answer one or both of these questions:
    Is it possible to reposition a StageWebView dynamically?
    Is it possible to hide/unhide a StageWebView?

    Thanks for the reply Saumitra!
    Neither is working for me.  I setup an event listener to respond to orientation changes, but it doesn't seem to get called.  Here is an example of my code:
    <fx:Script>
         <![CDATA[
              private var admob:StageWebView = new StageWebView();
              private function admobBanner():void  //***** GETS CALLED FROM addedToStage() *****
                   admob.stage = this.stage;
                   admob.viewPort = new Rectangle(0, stage.stageHeight - 40, stage.stageWidth, 48);
                   admob.loadURL('http://www.mojackllc.com/admob/myMeetup.html');
                   admob.addEventListener(StageOrientationEvent.ORIENTATION_CHANGE, updateAdmobBanner);
                   admob.addEventListener(LocationChangeEvent.LOCATION_CHANGE, clickAdmobBanner);
              private function updateAdmobBanner(event:StageOrientationEvent):void
                   admob.viewPort = new Rectangle(0, stage.stageHeight - 80, stageWidth, 48);
                   //admob.stage = null;
              private function clickAdmobBanner(event:LocationChangeEvent):void
                   if (admob.location != "http://www.myurl.com")
                        event.preventDefault();
                        navigateToURL(new URLRequest(event.location));
         ]>
    </fx:Script>

  • Just found this forum! StageWebView causes fatal crash in AIR on Android

    Hi,
    I posted here http://forums.adobe.com/message/5144040#5144040 but then found this, better, forum when googling for others who'd found the same.
    Essentially, I have a URL that I know a) has a redirect b) may have a security cert issue with some of the content it loads. When I launch this URL in a StageWebView in Nexus 7 running the latest Android OS, it wipes out fatally without any warning, notification etc... It just goes. Gone. Dead. Bang.
    I am trying to get to the bottom of this, but need to work out first if it is OS, StageWebView, Nexus or what... I know I can open the same URL in Xoom without issue (other than the cert notification) but that is a slightly earlier OS release and different hardware.
    G

    Thanks for the heads up.  Could you please open a new bug report on this over at bugbase.adobe.com?  When adding the bug, please include some sample code and the URL in question so we test this out internally.  If you'd like to keep this private, feel free to email me the sample code/url directly ([email protected]). 
    Once added, please post back with the URL so that others affected can add their comments and votes.
    Thanks,
    Chris

  • Questions on Print Quote report

    Hi,
    I'm fairly new to Oracle Quoting and trying to get familiar with it. I have a few questions and would appreciate if anyone answers them
    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    Thanks and Appreciate your patience
    -PC

    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    I think I posted it in one of the threads2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    Yes, your understanding is correct.3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    No, there is no conc program getting called, you can directly call a report in a browser window, Oracle reports server will execute the report and send the HTTP response to the browser.4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    This is detailed in many threads.Thanks
    Tapash

  • Satellite P300D-10v - Question about warranty

    HI EVERYBODY
    I have these overheating problems with my laptop Satellite P300D-10v.
    I did everything I could do to fix it without any success..
    I get the latest update of the bios from Toshiba. I cleaned my lap with compressed air first and then disassembled it all and cleaned it better.(it was really clean insight though...)
    BUT unfortunately the problem still exists...
    So i made a research on the internet and I found out that most of Toshiba owners have the same exactly problem with their laptop.
    Well i guess this is a Toshiba bug for many years now.
    Its a really nice lap, cool sound (the best in laptop ever) BUT......
    So I wanted to make a question. As i am still under warranty, can i return this laptop and get my money back or change it with a different one????
    If any body knows PLS let me know.
    chears
    Thanks in advance

    Hi
    I have already found you other threads.
    Regarding the warranty question;
    If there is something wrong with the hardware then the ASP in your country should be able to help you.
    The warranty should cover every reparation or replacement.
    But I read that you have disasembled the laptop at your own hand... hmmm if you have disasembled the notebook then your warrany is not valid anymore :(
    I think this should be clear for you that you can lose the warrany if you disasemble the laptop!
    By the way: you have to speak with the notebook dealer where you have purchased this notebook if you want to return the notebook
    The Toshiba ASP can repair and fix the notebook but you will not get money from ASP.
    Greets

Maybe you are looking for

  • I am unable to copy fillable fields from a pdf form into Microsoft Word or notepad....Help! thank you!

    I am unable to copy fillable fields from a pdf form I created in Adobe X Pro into a Microsoft Word or Notepad document. Please help! Thank you!!

  • Copy Control of Payment Terms

    Hi all, We group multiple deliveries into one invoice for one customer. Am maintaining Payment terms in my sales orders but i cld not c the same in Invoice Header data. Its showing blank. Doc flow: Sales order->Delivery->Invoice. is that because of s

  • How to enlarge font in the mail in Marverisk

    I have recently upgrade my OS to Mavericks which resulted in the fornt became smaller then when operating under my previous OS. Plese help whether there is a way to enlarge the font in th email.

  • Smart Guide/Snap to point not working

    Hi I am trying to remove a circular shape from a rectangle in illustrator, the retangles width is 10px and the diameter of the circle is 13px, I centre the circle ontop of the rectangle ( or I appear to)  but when I use the Shape mode tool minus fron

  • Movies in iWeb not working

    Exported iMovie to the desktop using "Share to Web" selection. Then ran it through Lillipot to set the "Fast Start" option. Dragged the movie into a new iWeb page & posted. But, alas it does not play until the entire movie is downloaded (Fast Start"