StageWebView MP4 not exiting when I tap "done"?

I am calling a StageWebView to play an MP4 video in my Flash Air for iOS project. The video plays great, but when I tap done, it does not remove the video from the stage to let me go back to the application. Am I missing some additional code? Thanks.

If you have the stagewebview filling the stage, then you won't be able to get a touch from the user to then set the stagewebview to null. If it has to be full screen video, then you may need to use timers to know when the video has finished playing. If it can initially be not full screen, say a thumbnail sized version which has your Flash navigation showing underneath it, then if the user plays the view, zooms to full screen, and then touches Done, your Flash interface will reappear, and you will be able to proceed (setting the stagewebview to null if you've finished with it).

Similar Messages

  • I opened a PDFs file that was attached to an email message and now it will not close when I press "Done" as it usually does. Does anyone have a solution to suggest? Thanks.

    I opened a pdf file that was attached to an email message I received and now it will not close when I press "Done" as files usually do. Does anyone have a solution to suggest please? Thanks.

    Try double clicking your home button then force close the stuck PDF by swiping upward. Once you've done that just click the home button again to exit.

  • I am unable to work on docs in adobe as the toolbar does not appear when I tap on the doc.

    how do I get my adobe to work? I open the doc in adobe but cant work on the doc. the toolbar does not appear when I tap in the middle. All contact us help leads to nowhere. the e mails from support cant be replied to. is there another app that one couls use to download doc and actually be able to work on them?

    What is your operating system?
    What is your Reader version?
    Are these local or online documents?  If online, in what browser?

  • My new touch won't play the music or a how pix I downloaded.  It worked once and now the songs and files are faded and do not open when I tap them

    My iPod touch is new, I downloaded music and pix from my pc.  It worked one time. Now the music and files are faded and do not open when I tap them.

    - Reset the iPod. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsyce and resync the music
    - Restore from backup
    - Restore to factory defaults/new iPod

  • Delivery note printout not coming when PGI is done by Idoc

    Hi All,
    We are doing a third party  WM-SAP interface project.
    Earlier in SAP when PGI was done for delivery note the print use to come automatically.
    But when the PGI is done through Idoc the print done not come and it requires the user to go to VL02n and save to get the print.
    Please help.
    Pankaj

    Hi,
    Please check the SAP note 393096.
    Summary
    Symptom
    During pick order verification/vendor confirmation via the logical messages WHSCON, SHPCON and SDPICK, no message determination is carried out in the delivery for subsequent messages. If the picking process is performed manually using Transaction VL02N, then message determination for subsequent messages takes place when you save the delivery.
    Other terms
    MESSAGING, DELVRY01, DELVRY02, DELVRY03, WS_DELIVERY_UPDATE, VL10CUC, VL10, LD00, delivery note, pick
    Reason and Prerequisites
    As of Release 4.6C, during inbound processing of the logical IDoc categories WHSCON/SHPCON, the system reads the VL10 profile '2000' and interprets the profile parameters.Among other things, the VL10 profile '2000' contains a parameter (NoOutputDet.) that can deactivate message determination for the process.
    Solution
    Start Transaction VL10CUC ("Parameter per Profile in Delivery Process") in change mode.
    Go to the detail screen of the profile '2000'.
    Check the status of parameter 'NoOutputDet.' and adjust the settings of the parameter as follows:
    If the parameter 'NoOutputDet.' is active, then message determination is not carried out for the process.
    If the parameter 'NoOutputDet.' is not set, then message determination is carried out for the process    
    Please reward points if it helps
    Seema

  • My iPad won't hold my credit card info when I tap "done"?

    Every time I tap done I can go back in and only the cards last four digits show the security number and the expiration dates are gone?

    See Here for
    Unresponsive iPad
    http://support.apple.com/kb/TS3281

  • App bar not appearing when I tap the ellipses

    I'm trying to get my app bar to appear when I tap the 3 dots at the bottom of the screen, but when I do so it doesn't happen. Anyone know
    why & how this problem can be rectified?
    MainPage.xaml
    <Page
    x:Name="pageRoot"
    x:Class="HP.MainPage"
    DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Exits_Expert_London_Lite.Lines_and_Stations.WC"
    xmlns:common="using:Exits_Expert_London_Lite.Common"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:q42controls="using:Q42.WinRT.Controls"
    mc:Ignorable="d">
    <Grid Background="Black">
    <Grid.ChildrenTransitions>
    <TransitionCollection>
    <EntranceThemeTransition/>
    </TransitionCollection>
    </Grid.ChildrenTransitions>
    <Grid Name="CustomAppBarRoot" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" Loaded="CustomAppBarRoot_OnLoaded"
    ManipulationMode="TranslateY"
    ManipulationDelta="CustomAppBarRoot_OnManipulationDelta"
    ManipulationCompleted="CustomAppBarRoot_OnManipulationCompleted"
    Tapped="CustomAppBarRoot_OnTapped">
    <Grid.RenderTransform>
    <TranslateTransform X="0" Y="0"/>
    </Grid.RenderTransform>
    <Grid.Background>
    <SolidColorBrush Color="Black" Opacity="0.5"></SolidColorBrush>
    </Grid.Background>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <TextBlock Name="DotsTextBlock" FontSize="28" Text="..." HorizontalAlignment="Right" VerticalAlignment="Top"
    Margin="0 0 15 0" Tapped="DotsTextBlock_OnTapped" Width="50" Height="50" TextAlignment="Center">
    <TextBlock.RenderTransform>
    <TranslateTransform Y="0" X="11"/>
    </TextBlock.RenderTransform>
    </TextBlock>
    <StackPanel Name="ButtonsStackPanel" Grid.Row="1" Orientation="Horizontal">
    <AppBarButton Label="tfg" Icon="Add"/>
    <AppBarButton Label="tfg" Icon="Add"/>
    </StackPanel>
    </Grid>
    <Hub>
    <Hub.Header>
    <!-- Back button and page title -->
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="80"/>
    <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Button x:Name="backButton" Margin="-1,-1,39,0" Command="{Binding NavigationHelper.GoBackCommand, ElementName=pageRoot}"
    Style="{StaticResource NavigationBackButtonNormalStyle}"
    VerticalAlignment="Top"
    AutomationProperties.Name="Back"
    AutomationProperties.AutomationId="BackButton"
    AutomationProperties.ItemType="Navigation Button"/>
    <TextBlock x:Name="pageTitle" Text="Page name" Style="{StaticResource HeaderTextBlockStyle}" Grid.Column="1"
    IsHitTestVisible="false" TextWrapping="NoWrap" VerticalAlignment="Top"/>
    </Grid>
    </Hub.Header>
    <HubSection Width="800" Padding="40,50,0,0">
    <HubSection.Header>
    <StackPanel>
    <TextBlock Text="hub section 1" Style="{StaticResource HeaderTextBlockStyle}"/>
    </StackPanel>
    </HubSection.Header>
    <DataTemplate>
    <Grid>
    <StackPanel>
    <TextBlock Style="{StaticResource SubheaderTextBlockStyle}" Margin="0,0,0,5" TextWrapping="Wrap">
    <Run Text="Hello World"/>
    </TextBlock>
    </StackPanel>
    </Grid>
    </DataTemplate>
    </HubSection>
    </Hub>
    </Grid>
    </Page>
    MainPage.cs
    using HP.Common;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Media.Animation;
    using Windows.UI.Xaml.Navigation;
    // The Hub Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=321224
    namespace HP
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    this.Tapped += Page_OnTapped;
    private void Page_OnTapped(object sender, TappedRoutedEventArgs tappedRoutedEventArgs)
    if ( isAppBarShown )
    HideCustomAppBar();
    #region custom app bar
    private Storyboard hideCustomAppBarStoryboard;
    private Storyboard showCustomAppBarStoryboard;
    private Size appBarSize;
    private Size appBarButtonsSize;
    private bool isAppBarShown = true;
    private void CustomAppBarRoot_OnLoaded(object sender, RoutedEventArgs e)
    appBarSize = new Size(CustomAppBarRoot.ActualWidth, CustomAppBarRoot.ActualHeight);
    appBarButtonsSize = new Size(ButtonsStackPanel.ActualWidth, ButtonsStackPanel.ActualHeight);
    InitializeStoryboards();
    HideCustomAppBar();
    private void ShowCustomAppBar()
    isAppBarShown = true;
    showCustomAppBarStoryboard.Begin();
    private void HideCustomAppBar()
    isAppBarShown = false;
    hideCustomAppBarStoryboard.Begin();
    private void DotsTextBlock_OnTapped(object sender, TappedRoutedEventArgs e)
    if (isAppBarShown)
    HideCustomAppBar();
    else
    ShowCustomAppBar();
    private void InitializeStoryboards()
    hideCustomAppBarStoryboard = new Storyboard();
    showCustomAppBarStoryboard = new Storyboard();
    var showDoubleAnimation = new DoubleAnimation()
    EasingFunction = new CircleEase() {EasingMode = EasingMode.EaseInOut},
    To = 0,
    Duration = new Duration(TimeSpan.FromMilliseconds(200))
    var hideDoubleAnimation = new DoubleAnimation()
    EasingFunction = new CubicEase() {EasingMode = EasingMode.EaseInOut},
    To = appBarButtonsSize.Height,
    Duration = new Duration(TimeSpan.FromMilliseconds(200))
    hideCustomAppBarStoryboard.Children.Add(hideDoubleAnimation);
    showCustomAppBarStoryboard.Children.Add(showDoubleAnimation);
    Storyboard.SetTarget(hideCustomAppBarStoryboard, CustomAppBarRoot);
    Storyboard.SetTarget(showCustomAppBarStoryboard, CustomAppBarRoot);
    Storyboard.SetTargetProperty(showCustomAppBarStoryboard, "(UIElement.RenderTransform).(TranslateTransform.Y)");
    Storyboard.SetTargetProperty(hideCustomAppBarStoryboard, "(UIElement.RenderTransform).(TranslateTransform.Y)");
    #endregion
    private void CustomAppBarRoot_OnManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)
    var translateTransform = (CustomAppBarRoot.RenderTransform as TranslateTransform);
    double newY = e.Delta.Translation.Y + translateTransform.Y;
    translateTransform.Y = Math.Max(0, Math.Min(newY, appBarButtonsSize.Height));
    private void CustomAppBarRoot_OnManipulationCompleted(object sender, ManipulationCompletedRoutedEventArgs e)
    // if small appbar-position changes are made app bar should back to previous position, just like in windows phone
    if (Math.Abs(e.Cumulative.Translation.Y) < 20)
    isAppBarShown = !isAppBarShown;
    if (!isAppBarShown)
    ShowCustomAppBar();
    else
    HideCustomAppBar();
    private void CustomAppBarRoot_OnTapped(object sender, TappedRoutedEventArgs e)
    e.Handled = true; // prevents raising Page.Tapped event so appbar won't be closed on AppBar-area tap

    When I debug, the app runs as normal and doesn't crash when I tap the elipses hence nothing happens.
    Does your tapped handler get called?
    It looks like your buttons stack panel may be on top of your ellipses. Try reversing that so the ellipses are on top:
    <StackPanel Name="ButtonsStackPanel" Grid.Row="1" Orientation="Horizontal">
    <AppBarButton Label="tfg" Icon="Add"/>
    <AppBarButton Label="tfg" Icon="Add"/>
    </StackPanel>
    <TextBlock x:Name="DotsTextBlock" Text="&#xe10c;" FontSize="14" FontFamily="Segoe UI Symbol" HorizontalAlignment="Right" VerticalAlignment="Top"
    Tapped="DotsTextBlock_OnTapped">
    </TextBlock>
    You can also use the Segoe UI Symbol "More" character to match the standard more ellipses rather than trying to implement your own. A step further would be to make it a button so that it has proper clickable semantics and will work properly with the
    keyboard, although for this specific use you can get away without it since you'll provide standard Windows+Z AppBar behaviour.

  • JVM not exiting when program terminates

    I am developing an application that uses Frames on a pocket PC. At some certain event, I call System.Exit to close my application. However, doing this does not shutdown the JVM. Is there a way to force the JVM to exit?

    Are you using j9.exe or j9w.exe to run your code? j9.exe launches a console which does not exit until the user closes it, otherwise you wouldn't be able to see your stdout after your application terminated. j9w.exe does not launch the console window.

  • HT4889 did not read, when I got done with migration, where does my files go, can not find them

    When I used the migration asst., when done I did not read the messages and I can not find my information, such as pictures & music.

    Have you tried searching in Spotlght?

  • Will not exit when logout button/tab highlighted

    When trying to exit webmail site amongst others, clicking on the logout tab/button does not get a response

    Have no idea what to do or try

  • Why will my itunes icon not open, when I tap on it on my iphone?

    For the last 5 days I have been unable to open my itunes app from my iphone. Everytime I tap on it, it will open for about 5 seconds then close completely out without an error message or anything. I tried resetting my phone, and powering it off and on, yet nothing is working. All of my other apps work just fine (including the App Store) but iTunes will not open at all. Is there anyone that can help me fix this? It be greatly appreciated, thank you!!

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    Also try a  Reset all settings
    Settings > General > Reset > Reset all Settings.
    This will return all iDevice settings to factory defaults... you will not lose any data.... But you will have to re-enter all of the device settings.
    If no joy...
    1)  Connect to iTunes on the computer you usually Sync with and Restore
    http://support.apple.com/kb/HT1414
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download

  • Program not exiting when dispose() used.

    pl see the code.
    I am unable exit the window if the new class Ex() is defined.
    No error displayed, while running the program. What is the mistake. If anyone see please inform. No compilation error and at runtime, if Exit button is pressed, the window is not getting closed. I want to use dispose() instead of System.exit(0).
    This is because, If I use System.exit(0), my menu program would also get disconnected.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.sql.*;
    import java.io.*;
    class ts extends JFrame
    JPanel jpn1,jpn2,jpn3;
    JButton b1,b2,b3;
    JLabel jlh;
    JFrame fr;
    Container cp;
    Connection con = null;
    Choice ch1,ch2;
    public ts()
    final JFrame jf = new JFrame();
    JPanel jpn1 = new JPanel();
    jpn1.setLayout(null);
    jpn1.setBackground(Color.pink);
    jpn1.setPreferredSize(new Dimension(800,100));
    JPanel jpn2 = new JPanel(new GridLayout(0,1));
    jpn2.setPreferredSize(new Dimension(775,50));
    jpn2.setBackground(Color.cyan);
    jlh = new JLabel("Test Module",JLabel.CENTER);
    jlh.setFont(new Font("TimesRoman",Font.BOLD,25));
    jpn2.add(jlh);
    JPanel jpn3 = new JPanel();
    jpn3.setBackground(Color.yellow);
    jpn3.setPreferredSize(new Dimension(800,50));
    Container cp = jf.getContentPane();
    cp.add(jpn1,BorderLayout.WEST);
    cp.add(jpn2,BorderLayout.NORTH);
    cp.add(jpn3,BorderLayout.SOUTH);
    JButton b1 = new JButton("Get Details");
    b1.setBounds(150,450,100,20);
    jpn1.add(b1);
    JButton b2 = new JButton("Update");
    b2.setBounds(300,450,100,20);
    jpn1.add(b2);
    JButton b3 = new JButton("Exit");
    b3.setBounds(450,450,100,20);
    jpn1.add(b3);
    b3.addActionListener(new Ex());
    /* b3.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    jf.dispose();
    return;
    //System.exit(0);
    jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    jf.setSize(800,700);
    jf.setVisible(true);
    //jf.pack();
    jf.show();
    class Ex implements ActionListener
    public void actionPerformed(ActionEvent evt)
    if(evt.getSource() == b3)
    dispose();
    return;
    public static void main(String[] args)
    new ts();
    }

    Your class both extends JFrame and instantiates a (separate, totally different!) JFrame. You are disposing the wrong JFrame -- and there shouldn't be two anyhow.
    Since you are not modifying any default behavior of JFrame, your class has no reason to subclass JFrame. Always prefer composition over inheritance.
    In future (not this time), Swing questions should be posted in the [Swing forum|http://forums.sun.com/forum.jspa?forumID=57]
    db
    edit And go through the [Swing Tutorial|http://java.sun.com/docs/books/tutorial/uiswing/index.html] which will (hopefully) raise your level of competence. You need more inputs than a forum can provide.
    Edited by: Darryl.Burke

  • Ipad does not work when you tap "continue" or "next"

    the "continue" buttons do not work. When I sign in for instance to my bank and put in my username and then it says "continue" that button does not work. I also happens on buttons that say "next". Any one know if this is a flaw?

    Please be wary of vacuuming the speakers, this can lead to damage of the speaker due to the force/static this can generate. Normal heat generated by usage should be enough to dry out the speaker in a short period fo time.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • How do I tell the CR DLLs to exit when I am done?

    Post Author: AndersG
    CA Forum: General
    Ie (skeleton code)hr = m_Application.CreateInstance("CrystalRuntime.Application"); m_Report = m_Application->OpenReport(ReportPath, dummy); job->PrintOut(vPromptUser, vnCopies, dummy, dummy, dummy);  m_Report->Release(); m_Application.Release();Should not CR know that I am done and unload the DLLs?

    You can look at Adblock Plus.
    * Adblock Plus: https://addons.mozilla.org/firefox/addon/adblock-plus/
    You need to subscribe to a Filter list (e.g. the EasyList).
    * http://adblockplus.org/en/subscriptions
    * http://adblockplus.org/en/getting_started

  • Vendor field should not display when GI is done in MB1A?

    Hi  guys ,
    i have  a  report programe here i am pulling  all the material data  and purhasing order info  in the background using the BADIO MB_DOCUMENT BADI.  here i am writing my logic. this BADI is triggering  once material Documnet is created  in MIGO MB1A,MB1B,MB1C . when i am trying to excute the MIGO tranasaction all the data shoulb be displayed . when I am trying to excute MB1A  Here i dont need one field like Vendor Number ? can  any one please help me on these ?
    Thanks In Advance.

    Instead of <?for-each:G_CF_SUB_SEG_VALUE?>
    use
    <?for-each:G_CF_SUB_SEG_VALUE[TOTAL_CUST_AMT!=0 or TOTAL_CUST_B0!=0 or TOTAL_CUST_B2!=0 or TOTAL_CUST_B3!=0 or TOTAL_CUST_B4!=0 or TOTAL_CUST_B5!=0 or TOTAL_CUST_B6!=0]?>

Maybe you are looking for

  • Video problems with Snow Leopard

    Since upgrading to Snow Leopard, I can no longer view any Quicktime video from my Panasonic network cameras. I have the latest version of Flip4Mac (2.3.0.14) and keep getting the following error "The operation couldn't be completed. (OSStatus error -

  • How to block unwanted calls? Thank you.

    Hello I am Italian by about three months I get a call from Romania to 20 times a day. I wanted to know if it was possible to block the number. thanks Excuse my English. greetings

  • IMovie 09 crashing using Canon EOS 5D Mark II, 1080p files too large?

    Constantly crashing; have repeatedly: repaired permissions, restarted, ran latest Disk Warrior. Largest .MOV files 380.6MB, smallest 4.6. The project file size (unfinished) is 6.78GB. Does that sound beyond iMovie 09's capacity? Unit info: Model Iden

  • Should I insert a .cpvc slide or an .mp4 to show a software simulation?

    I recorded a software simulation using Captivate 8.  Most of the project is made up of individual slides, except in 2 sections that demonstrate how the screen moves when you swipe on a touch screen.  To capture the swipes, I recorded a new video demo

  • Wireless controller image corrupted

    HI all, My wireless 526 controller is corrputed and now i am not able to load the image. any one can advise on how to reload the image ? i only see the below from console thanks grub> Possible commands are: blocklist boot bootp cat chainloader cmp co