Unable to pause a video using Navigate and UpdateContext in Beta2

Hello,
In the Beta1, I had set the DefaultPause property of my VideoPlayer to "videoPause", and I set the OnSelect event of a navigation button to the following statement in order to navigate to the screen "scrHome".
UpdateContext({videoPause: true});Navigate(scrHome, ScreenTransition!Fade)
With Beta2, this is not working anymore: the video continues to play when I touch the navigation button.
I also tried with the following statement, but it does work either.
Navigate(scrDémos, ScreenTransition!Fade,{videoPause: true})
Thanks for your help !

Are you setting the videoPause property to true in the rule you're using to navigate to the video screen? For example, assume you're using a button to navigate to the VideoScreen, its OnSelect property should be: Navigate(VideoScreen, ScreenTransition!Fade,{videoPause:false}).
Basically, the value needs to change for the video to pause. If you don't have that set up, you could also do that within the rule you're using to navigate to scrHome as follows:  
UpdateContext({videoPause: false});Navigate(scrHome, ScreenTransition!Fade,{videoPause: true})
Thanks
Robin

Similar Messages

  • When recording a video using quicktime and my built in camera (isight) how come the program wont let me use my audio interface rather than the built in mike?

    when recording a video using quicktime and my built in camera (isight) how come the program wont let me use my audio interface rather than the built in mike?

    when recording a video using quicktime and my built in camera (isight) how come the program wont let me use my audio interface rather than the built in mike?
    The basic answer is that Apple has not programmed the capture routine with this capability. As such, you can always send QT feedback requesting this feature be added as a future enhancement.

  • Unable to play recorded video using BB multimedia api in other platform

    Hi all,
    I am new to Blackberry application development. The application I am developing it is required to record a video using multimedia api.
    I am using
    video encoding : MPEG-4
    audio encoding : AMR
    res : 320 x 240
    Device using Curve 8250
    It is the same encoding combination BB curve use to record a video from default recorder.
    _player = Manager
    .createPlayer("capture://video?encoding=video/3gpp&width=320&height=240&fps=12&video_codec=MPEG-4&audio_codec=AMR");
    After recording it from my application I am able to play the video in vlc even in BB devices. But when I am trying toplay in android,J2ME and iPhone platform. It is unable to play the video..Can anybody help me out in this regard.
    I am really in trouble. I need your help .
    Thanks in advance.
    Regards,
    Angan

    In my experience if windows media player plays it(the mpeg4), it will not be compatiable with quicktime. At least if you do not go installing the codecs to read ISO mpeg 4 (.mp4 is the standard extension that quicktime puts on the files). Another thing to check is if you are creating ISO compliant files. The mpeg4s that windows media reads by default are not ISO compliant. You also need to keep in mind that Quicktime is a simple profile mp4 and main profile mp4 player (although not all b frames are compatable with quicktime). See http://en.wikipedia.org/wiki/Quicktime for a basic overview of the profile support. I suggest that you try playing the media with free softwares such as vlc http://www.videolan.org/vlc/ and mplayer http://www.mplayerhq.hu/design7/news.html and check that the format and codecs are correct. Although they will play non standard files they will list the codecs in use (make sure that you are using ISO compliant standards as you can put more than MPEG 4 in mp4).

  • Trying to print to video using in and out

    I am trying to print to video (Mini DV) using in and out points. It works fine when I just play through the camera and record and it will print to video when I start at the beginning, but when I place in and out points and I have set the media to print "In to Out", but it just records the black leader then stops.

    For exporting, IN and OUT points must be set in the +timeline of the sequence+ you want to export: make sure the timeline is selected, but NO clip in the timeline is selected before setting the points (use ****-cmd-A to deselect all clips).
    If they are properly set you'll see an highlighted area in the timeline between the IN and the OUT points.
    Piero

  • I am unable to open encrypted emails using webmail and a CAC reader.  It says "content can't be displayed because the S/MIME control isn't available."  I'm using a Macbook Pro with 10.10 OS and have tried both Safari and Chrome.

    I am using a Macbook Pro with OS X Yosemite 10.10.2.  I am unable to open encrypted emails using webmail.  I have verified my certificates are loaded in the keychain for my military common access card while using a CAC reader.  When I try to view the message it gives me the error saying "content can't be displayed because the S/MIME control isn't available." 

    I am using a Macbook Pro with OS X Yosemite 10.10.2.  I am unable to open encrypted emails using webmail.  I have verified my certificates are loaded in the keychain for my military common access card while using a CAC reader.  When I try to view the message it gives me the error saying "content can't be displayed because the S/MIME control isn't available." 

  • Unable to capture a video using robot.createScreenCapture

    Hi all,
    I'm having one problem with robot.createScreenCapture, i used the
    below code to take screen shot, everything goes fine except one case, I'm unable to capture videos played in windows media player & winamp, black screen is displaying instead of the video. I used avi files.
    here is the code
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Image;
    import java.awt.Rectangle;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    public class CaptureImage implements ActionListener {
         Robot robot = new Robot();
         Image image = null;
         public CaptureImage() throws AWTException {
              JFrame frame = new JFrame("Capture");
              JButton button = new JButton("Capture");
              frame.setAlwaysOnTop(true);
              button.addActionListener(this);
              frame.getContentPane().add(button);
              frame.pack();
              frame.setVisible(true);
         public void actionPerformed(ActionEvent e) {
              // image = robot.createScreenCapture(new Rectangle(800, 600));
              String outFileName = "shot.png";
              // determine current screen size
              Toolkit toolkit = Toolkit.getDefaultToolkit();
              Dimension screenSize = toolkit.getScreenSize();
              Rectangle screenRect = new Rectangle(screenSize);
              // create screen shot
              Robot robot;
              try {
                   robot = new Robot();
                   BufferedImage image = robot.createScreenCapture(screenRect);
                   ImageIO.write(image, "png", new File(outFileName));
                   System.out.println("Saved screen shot (" + image.getWidth() + " x "
                             + image.getHeight() + " pixels) to file \"" + outFileName
                             + "\".");
              } catch (IOException e2) {
                   e2.printStackTrace();
              } catch (AWTException e1) {
                   e1.printStackTrace();
         public static void main(String[] args) {
              try {
                   new CaptureImage();
              } catch (AWTException e) {
                   e.printStackTrace();
    }

    Are you setting the videoPause property to true in the rule you're using to navigate to the video screen? For example, assume you're using a button to navigate to the VideoScreen, its OnSelect property should be: Navigate(VideoScreen, ScreenTransition!Fade,{videoPause:false}).
    Basically, the value needs to change for the video to pause. If you don't have that set up, you could also do that within the rule you're using to navigate to scrHome as follows:  
    UpdateContext({videoPause: false});Navigate(scrHome, ScreenTransition!Fade,{videoPause: true})
    Thanks
    Robin

  • Unable to play youtube videos - using proxy (squid)

    Youtube videos do not play in my configuration. Most youtube content appears, but attempting to play a video results in a popup message "This movie could not be played". Sorry for the length of the post, but I'm trying to get enough documentation down here to save some time for the next person who runs into this.
    My basic network configuration is:
    ipod->wireless-router->squid-proxy->pix->internet
    *I am analyzing logfiles from the proxy and the pix, and I have network traces from the proxy.
    There are 2 issues so far with proxy access from the youtube application on the fw v2.2 ipod touch. After hitting the first issue, I made a call to tech support who pointed me to an older apple discussion thread about a similar issue which indicated the problem could be fixed by "reconfiguring the proxy server", but no details were given in that discussion thread about exactly what needed to be 'reconfigured'. I believe have figured out what was going wrong, and I document it as issue 1 below in case anyone else runs into it.
    Issue 1 (which I managed to get solved) is that the youtube application sends a 'Host:' header pointing to gdata.youtube.com, but the requested url is actually iphone-wu.apple.com. Squid rewrites the 'host' header to iphone-wu.apple.com, and the target server fails the request with a 404. A solution (for squid) is to use a redirector to rewrite these url's to actually go to gdata.youtube.com and to set the 'urlrewrite_hostheader off' value.
    Unfortunately, resolving issue #1 was not sufficient to get youtube off the launch pad:
    Issue 2 (which seems unsolveable at the moment) is that the youtube application is ignoring proxy settings for some of its content requests. In addition to the proxy requirement, I have egress firewalling and logging set up. I observe the youtube application asking for many url's via the proxy and then I observe the egress firewall deny an attempt at a direct access to port 80 on an external server BYPASSING the proxy settings. Without opening up the egress firewall rules (and thereby disable requirement for a proxy), this makes the youtube application inoperative.
    If anyone has some insight on how I can get this working, I'd appreciate it. I will attempt another support call tomorrow with my logfiles in hand...

    Thanks for posting! -- I'm glad the info is helpful to you. There is more that I have been deliberately keeping quiet about while trying to work through a support call that was logged 27-dec-08. Without going into a lot of detail, the support call is still open, and I'm still working on getting a resolution from apple engineering. I hope that by providing this information, my support call doesn't get terminated as having been "solved" - which it most definitely has not been. It is my belief that only a firmware update will fix this.
    (And as an aside ... I've spoken with three or four support reps at apple, and all have been very nice and have tried to help out! I've been quite pleased with the front end to their support org. I just really want to hear that someone has LOOKED at the code and found the error and it will be fixed in a future update!)
    A work-around for the youtube and itunes applet failures is to set your squid up as a transparent proxy. That way, the network accesses that these applets make that attempt to bypass the proxy are hidden and the applets "work".
    I would most certainly appreciate any further corroboration of this misbehavior -- more than one site being able to demonstrate these applets bypassing the proxy would be quite helpful.
    (Note also that the lastest firmware 2.2.1 also exhibits this issue)
    Thanks.

  • Sectioning videos using iMovie and iDVD

    I did my first conversion of some video from Mini-DV to DVD using my new iMac yesterday. I read the "Getting Started" tutorials for iMovie and iDVD and successfully burned a DVD. It came out good in the end, but I'm not sure I did things the best way. I wanted to section the video so when I watch the DVD I can click on a "button" from the menu for whatever section I want. So, I transferred all the video from the camcorder to iMac. That was easy. Then, I went into iMovie and marked off the sections of the video I wanted as "favorites" and it put a green line above it, then I selected the option for it to only display the favorites. So, it was easy to edit out the bad parts. Then, I dragged it all from the Event Library to the Project Library. I went to Share-Media Browser and clicked on Publish. Then, I went into iDVD and was able to get the video into it. But, I couldn't get it into sections like I wanted.
    So, I went back into iMovie and did a File-Duplicate Project and named it with a "-1" at the end. Then, in the Event Library I selected the first section of the video (so it had the yellow boarder around it) then dragged it to the Project Library. Then, I did a Share-Media Brower and clicked on Publish. I went back to the original and did a File-Duplicate Project and named it with a "-2" at the end, and repeated the whole thing for the next section. I did this for each section, "-3", "-4", etc. Then, I went into iDVD and was able to get the video into sections like I wanted. I renamed the "-1", "-2" stuff to what I wanted and burned the DVD.
    Did I do this right or did I do this the hard way? I have iMovie '08 7.0 (471) and iDVD '08 7.0 (1068).
    Someone told me that the "sections" I'm referring to are called "chapters". I did a search for chapters and the only reference I can find is in the "iMovie '08 Getting Started" document where it says "Click Import. You can also import video from a project created in iMovie HD. … All chapter markers are also lost".

    I would consider the usage of iMHD6 plus a slightly different 'structure' of workflow and final DVD ...
    'problem' with Chapters, as they are implemented in iDVD, is, that they really functioning just as a bookmark... you jump directly to some specific position in timeline.. but then, the disk play 'til the end of a movie... (showing the next and the next and... chapters...)
    iDVD allows sub-menus, think of it as 'Folders' ... which also could keep Folders..
    create a movie, showing the whole program/dance...
    now, select (in iMHD6) the few clips which show 'Right Hand Pass'
    in the Export/Quicktime/Full Quality dialog of iMHD6, check the box 'selected clips only' ...
    now, you get a/many .movs on your harddrive, with all the individual segments ...
    due to lossless export, you can import that short clips into new iM projects and add content.. a slow-mo, a chart, some narration, recordings of other dancers doing the same 'move' etc ...
    in IDVD, switch to 'map view' .. illustrated how-to here:
    http://www.apple.com/ilife/tutorials/#idvd-create-67
    now, create a structure for YOUR how-to... on top should be a button for the movie which shows the whole dance; create a sub-menu containing other sub-menus for 'spins', 'turns', 'passes' (= I have NO idea of Square Dance ); inside each sub-menu item (which is a 'Folder'), you place the concerning clip(s) (drag'n drop/choose form Media) ...
    structured that way, you are allowed to add much more than just a chapter = a part of your movie; editing a 'standalone' clip of your section allows to 'process' that part, as mentioned above: you can repeat it, you can add slowmos, you can add stills/charts/paintings, explaining specificly that 'move', add a narrated and a no-audio version, whatever ... there's a nice plug-in from geethree.com for iMHD6, *Slick 6* (click here), called 'White Board', which allows drawings on videos..
    when the 'chapter', which is now a clip/movie on its own, is finished, the dvd will jump back to the menu/submenu... and the viewer is allowed to watch it again, choosing the next one, a different one, or jumping to 'top level' to choose a different section or watching the whole dance...
    only limitation: all movies added together should stay under 120min..

  • Creating podcasts and videos using keynote and ???

    Hello all,
    I am looking for software solutions.
    I am preparing to turn some of my lectures into podcasts and quicktime videos. I hope to make it so that each slide has its own audio track so that as the lecture changes over time, so too can just that small bit of audio. For this reason (and the fact that the audio is then built into the lecture) I dont really want to record directly with Keynote.
    I have briefly messed around with Garageband to see if this is the best solution, but when I export the Keynote to GB, it wont let me manage the slide time individually. I suppose I could create an image out of each slide and drop that into GB, but that seems rather convoluted.
    What have you all been using to create easily modifiable podcasts and quicktime videos from Keynote presentations?
    Thanks in advance.

    tschoenb wrote:
    I am looking for software solutions.
    Welcome to the discussions. I don't know whether the following suggestions will do what you want, but they may be worth looking in to...
    ProfCast provides synchronization of slides with audio and Keynote support.
    ScreenFlow can capture your soundless Keynote video as it plays and then allow adding of audio files via drag & drop.
    _Podcast Maker_ may also be of interest.

  • Updated to firefox 4,now unable to download youtube videos using realplayer as i did previous using 3.6?

    when using firefox 3.6 it was fine and the settings in realplayer were set up the same aswell,but since updating to firefox 4 i wont let me download videos still.

    Very easy:
    1) Go to Add-on Mozilla page witch is:
    https://addons.mozilla.org/nl/firefox/?browse=featured
    2) Then choose in the left colom downloadmanager witch is
    https://addons.mozilla.org/nl/firefox/extensions/download-management/
    3) Finally choose Easy You Tube Video or:
    https://addons.mozilla.org/nl/firefox/addon/easy-youtube-video-downl-10137/
    Install the add-on from now on you'll be able to download you're .flv streams.
    How to do this: under the videobox you see thumb up / thumb down, Add to, shair from NOW ON don't use the realplayer tab nolonger
    INSTEAD you use "DOWNLOAD AS"
    https://support.mozilla.com/users/pwreset/9gr2/2y2-121fa565bbd922c391c3

  • Unable to connect to internet using wifi and lan cable after updating to windows 10

    HI Team,                   After updating to windows 10. I'm unable to find wifi and lan connectivity in settings->internet . I m trying all stuff to resolve the problem, But i'm unable to to do it . Please help me with this. I cannot attach screen shots over here if possible i could send screen shots if any of the e-mails id's available

    Hi there ,  Thank you for visiting the HP Support Forums and Welcome! This is a great site to get answers and ask questions. I understand that you are having an issue with your Wi-Fi on your HP Envy M6-1125dx.  I did some research and found a great document for your called HP PCs - Troubleshooting Wireless Network and Internet (Windows 8). This document will help you troubleshoot the Wi-Fi issue.  Have you received any error messages? If you are receiving any of these errors:Internet Explorer cannot display the Web page.Work Offline: No connection to the Internet is currently available.Not connected: You are currently not connected to any networks.Here is another document called HP PCs - Resolving Broadband Internet connection problems (Windows 8).  Have you tried to Restore the BIOS? Have you uninstalled the driver in the Device Manager?If not, please do the following: 1. Uninstall the driver in Device Manager2. Restart the Notebook3. Reinstall the driver. You can use either the HP Driver's page for your specific Notebook, or you can use the HP Support Assistant. 
    Here is a link to the HP Support Assistant if you need it. Just download and run the application and it will help with the software and drivers on your system at the time of purchase or that need updating. Have you tried to directly connect to the Modem/Router?  Please follow the troubleshooting steps and re-post with the results and information required from the questions above.  Thanks!

  • Unable to capture C drive using Dism and imageX commands

    I am trying to capture C drive using dism command but it did not work, but the same command is capturing E drive. i am using following command.
    dism /Capture-Image /ImageFile:E:\image.wim /CaptureDir:C:\  /name:"Image File"
    I am getting following error.
    Deployment Image Servicing and Management tool
    Version: 6.3.9431.0
    Error: 32
    The process cannot access the file because it is being used by another process.
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
    An in the log file the error is:   DISM   DISM.EXE: WimManager processed the command line but failed. HRESULT=80070020

    Hi,
    As far as I know, Dism command doesn't support hot image backup, that to say, you do need to complete the image backup job at Windows PE enviroment.
    The contents of the link below also list the Dism command capture image requirement:
    http://technet.microsoft.com/en-us/library/hh825072.aspx
    Roger Lu
    TechNet Community Support

  • How to mirror iPad video using ATVS and wireless projector

    I have an iPad2 (iOS 7.1.2) that I have connected to an Apple TV, - which is connected to a wireless projector.  It works great except when I try to play video. It doesn't matter what type of video...movies, user created, safari website...I get a message that “an error occurred loading this content.”   I have tried everything I can think of and have spent too many hours trying to find a solution. Anyone have any ideas?  I appreciate any help!

    It's pretty much just plug it in, though doing something the first time in a live presentation, without having the opportunity to test things first, is a scary proposition. You'll get the presentation on the projector and a "presenter" display with tools. See:
    http://support.apple.com/kb/PH3489
    Hope all goes well.
    Regards.

  • Split audio/video using Airplay and Apple TV?

    I have a MBP and a Vizio TV hooked up with my ATV. They are in the same room in my living roon. The computers on my MBP are great and the speakers on my Vizio TV suck. When playing a movie in iTunes and clicking Airplay to send it to my ATV is it possible to send only the video while keeping the audio coming form my computer speaker setup? Thanks!

    Sorry, that's not possible.

  • With latest version of Flashplayer - unable to download streaming video with realplayer

    The latest version of Adobe flashplayer (11.5)  was loaded today (nov 9, 2012).  As a result, using either IE9 or Firefox, I was unable to download streaming videos using Realplayer, where it was set up by "Download the Video".  I had no trouble with Flashplayer 11.4, although I had the same problem with Flashplayer 11.3.

    Good comments by Hicks. While I an not as anti-iMovie '08 as many others appear to be, I really agree with both his assessment of the product and some of his distribution ideas. However, rather than the simple 2-tier product recommendation he presented, I would personally like to see a renamed version of the current iMovie '08 product be distributed as a free application to users and keep all of the DV based editors as a part of the current 3-tier iLife (which can be purchased by users who wish more editing/plug-in compatibility at a moderate price but are not willing to invest the money or time to use of FCE), FCE "prosumer", and FCE/Studio true profession editing packages purchased according to individual user needs.
    As we have seen in the past, innovations introduced by FCE frequently filter their way down to lower level software as enhancements over time. In addition, we have also seen a number of the new iMovie '08 developments being adapted to other applications as the means and processes are developed to do so. Frankly, I am curious to see where all these new innovations may lead given the opportunity for further development.

Maybe you are looking for