KeyPressed and KeyReleased on canvas

Dear programmers
I'm nearing the final stages of my remote desktop pet project but have a few small issues. One of them is that I can't seem to capture key events when the cursor is over the canvas. My system is in 2 parts.
1 - Server which listens to events.
2 - Client(Applet) which adds a canvas.
How would I capture key events while the mouse cursor is on the canvas? Below is the code so far.
public void keyPressed(KeyEvent e)
int KeyCode = e.getKeyCode();
pw.println(KEYD + KeyCode);
where pw is PrintWriter.

import java.awt.event.*;
import java.awt.*;
public class Test extends Frame {
  boolean mouse;
  public Test() {
    Canvas c = new Canvas();
    c.addMouseListener(new MouseAdapter() {
      public void mouseEntered(MouseEvent me) { mouse=true; }
      public void mouseExited(MouseEvent me) { mouse=false; }
    c.addKeyListener(new KeyAdapter() {
      public void keyPressed(KeyEvent ke) {
     if (mouse) System.out.println("key="+ke.getKeyCode());
    add(c);
    addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent we) { System.exit(0); }
    setSize(100,100);
    show();
  public static void main (String args[]) { new Test(); }
}

Similar Messages

  • Overwriting the keyPressed() and keyReleased()methods within a TextBox

    Dear All,
    I have written a simple predictive text midlet by overwriting the keyPressed() and keyReleased() methods (found in the TextBox class). This is fine and works perfectly when I emulate the midlet on my pc. However, when I transfer the midlet to my mobile, the existing predictive text system takes over and as my midlet acts only as a standard TextBox. Is I turn off prediction, then the TextBox acts as if I had not overwritten those methods! Does anybody know how to stop this from happening?
    Many thanks in advance
    David Fowler

    David,
    I think something is going wrong in your code, 'cause the TextBox doesn't provide the key listener methods that you have overwritten..these methods are declared in the Canvas class..
    May you show some code to let me see what are you program really doing?
    Ricardo

  • Lost keypresses and mouse clicks:  Hardware problem?

    I recently bought an Intel MBP, and I've been noticing strange behaviors with regard to keypresses and mouse (touchpad) clicks getting lost sometimes. The problems I'm having are hard to reproduce intentionally, but I can hear the keypresses and mouse button clicks when I do them, yet nothing happens. While it's possible, that I sometimes am hitting the wrong key, I have been paying closer attention lately to this problem, and of course, the mouse button kinda hard to hit incorrectly. Here are some examples of weird things I encounter:
    If I click in a text field in Safari, sometimes the first keypress (and only the first) will get lost.
    Sometimes, the first keypress I type right after clicking gets lost. For instance, just now, I noticed a typo in the above sentence, so I clicked on the character and hit the Delete key. The cursor was in the right place, but the delete didn't happen. I had to press the key again.
    Sometimes, even when the window for sure has focus and the pointer is squarely pointing to a link, the first click on the link won't take. I have to click it again. Since Safari doesn't have adequate feedback for when you click something, that can get particularly frustrating. Similar things happen with buttons in applications or on the title bar.
    If I'm using an X11 app, and I copy/paste with the clipboard, the touchpad won't respond to movement for 2 or 3 seconds afterward. This is particularly visible with "nedit". I don't think this is an "ignore accidental touchpad input" issue, because this only happens with clipboard actions; other keys don't have this effect. I haven't noticed this with native apps.
    However, I have noticed in X11 and native apps, sometimes, Ctrl/Cmd-C and Ctrl/Cmd-V will be ignored. They're never ignored if I selected the text using the keyboard (shift+arrows), but if I select the text with the mouse and then use the shortcut to copy, the copy/paste sometimes doesn't happen.
    I have noticed that if I am more deliberate about clicks (make sure to hold the button down longer), the probability of losing the event SEEMS to be reduced, but not eliminated. Is there a debounce circuit involved that's causing me trouble?
    This kind of loss of input is unusual to me. I have a number of Windows and Linux PCs, and I've never experienced this sort of thing. I've also used a few Macs at school before I got this one and didn't notice anything weird.
    Can anyone shed some light on this for me? It would seem odd that I should have to modify my keyboard/mouse using behavior when switching to the Mac. If the problem is hardware, how can I prove it? (Perhaps I could boot Knoppix from a CD and mess around a bit.) If the problem is software, is this a case of MacOS trying to second-guess user input?
    Thanks!

    Theosib,
    Apple regularly monitors these boards, but you may never see a response from Apple directly. Assume this is a user to user forum. If you are having a problem with the computer and need a response from Apple call 1-800-APLCARE and speak to customer relations at that office if the technician is not able to satisfy your needs.
    Your problem while not unheard of, is more uncommon than the boards may make you believe.
    Remember, Spotlight is constantly indexing. If your hard drive is overfull, it may take longer for Spotlight to index, thus cause a multitasking delay. If you have many Dashboard widgets, they may all be trying to access the net for updates at once, and again, a delay might happen. I've written a FAQ* about several other factors which may affect Mac OS X speed, which could in theory also affect keyboard input:
    http://www.macmaps.com/Macosxspeed.html
    And of course, you should always check Apple menu -> System Preferences -> Keyboard and Mouse to make sure your input settings are the ones most comfortable for you when using the keyboard. It is possible a repeat rate could cause a delay.
    Edit: I attempted to answer another of your questions here recently with an update:
    http://discussions.apple.com/click.jspa?searchID=-1&messageID=3988468
    Please take a look and see if it answers your question.
    * Links to my FAQs may give me some compensation.

  • [svn:fx-trunk] 5019: ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/ AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spa

    Revision: 5019
    Author: [email protected]
    Date: 2009-02-19 13:17:21 -0800 (Thu, 19 Feb 2009)
    Log Message:
    ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spark equivs
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Panel.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • Content canvas and  a stacked canvas moving when scroll through the details

    Dear Friends
    I have Mater and Details Block , and I have two canvas content canvas and a stacked canvas, and the a stacked canvas on top of content canvas , and I have set the horizontal and vertical scroll bar for the stacked canvas , my problem is that when I inquire and click on the details block which is on stacked canvas the header content canvas is moved up
    and what I want the header to be stable and not moving when scroll through the details .
    Best regards
    Jamil Alshaibani

    if the canvas is moved during runtime in general the problem is that is does not fit completly in the window. Try to adjust your window-size so that the whole layout fits into it.

  • Hide and show tab canvas

    Is it possible to disable all the tabs in a tab canvas in Forms 10g?
    I am developing a new form in Forms 10g. Problem is with hiding and showing tab canvases.
    I have a main canvas and a tab canvas.
    In the when-new-form-instance I need to hide the two tabs. I have a list item that has two values. Based on the value chosen in the list I need to show the tab canvas. How can I do it. I tried hide_view and show_view. It gives me an error FRM-41053. Cannot find canvas Invalid ID.
    Help is appreciated. Thaks in advance
    Anu

    If you are looking to hide individual tabs on a tabbed canvas, refer to SET_TAB_PAGE_PROPERTY
    http://www.oracle.com/webapps/online-help/forms/10g/topics/f1_help/builts/f50settppr.html

  • How to use translatetransform and rotatetransform on Canvas

    Hi,
    Used TransalateTransform and Rotatetransform on canvas individually using ManipulationMode.
    How to apply, both TransalateTransform and Rotatetransform on canvas Concurrently in Windows Store App.
    Regards,
    Chakradhar

    This is the wpf forum rather than windows store app forum.
    It is in your own interest to ask questions in a forum where the most developers who work on your technology of interest are likely to be reading questions.
    https://social.msdn.microsoft.com/Forums/windowsapps/en-us/home?category=windowsapps
    I suggest when you post there you also explain your requirement more.
    EG
    Is this in code, xaml, are you considering binding values, is it the children of the canvas or the canvas itself?
    What end result are you hoping to achieve? 
    Without understanding those I would have to guess what you mean.
    I should think it's pretty similar to wpf.
    A translatetransform is about moving stuff round and you would apply it in xaml like:
    http://www.c-sharpcorner.com/uploadfile/mahesh/translatetransform-in-wpf/
    <Rectangle Width="200" Height="50" Fill="Yellow" Margin="61,27,117,184" />
    <Rectangle Width="200" Height="50" Fill="Blue" Opacity="0.5" Margin="59,101,119,110">
    <Rectangle.RenderTransform>
    <TranslateTransform X="50" Y="20" />
    </Rectangle.RenderTransform>
    </Rectangle>
    A rotatetransform is about rotating something.
    http://www.codeproject.com/Articles/14895/WPF-Tutorial-Part-Transformations
    <ListBox Name="listBox1" FontSize="15"
    Canvas.Bottom="140" Canvas.Left="30"
    Canvas.Right="150" Canvas.Top="40">
    <ListBoxItem IsSelected="True">Canada</ListBoxItem>
    <ListBoxItem>Spain</ListBoxItem>
    <ListBox.RenderTransform> *(1)*
    <RotateTransform Angle="-20"
    CenterX="50" CenterY="50" /> *(2)*
    </ListBox.RenderTransform>
    </ListBox>
    You do multiple transforms using a transformgroup
    https://msdn.microsoft.com/en-us/library/ms750975%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
    And you can bind those values to properties of a viewmodel or a dynamicresource.
    This might, of course, be slightly different in windows store apps.
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML

  • ValueChanged- and keyReleased-Events in JTree

    Hello,
    Suppose I have Items in a JTree. Any time the selected item changes, heavy work has to be done to get the details of the node and present it to the user.
    Suppose further the user uses the arrow-keys to scroll through the list an he holds down the key. I do get many calls to my Listeners valueChanged(TreeSelectionEvent event), but I am interested just in the last event, in order to avoid all the heavy work. How can this be done?
    I tried the following, but I do get a keyReleased-Event at any new selection. (Maybe because a nested component of the JTree feels like I had released the arrow-key. Is this a bug?):
    private class NodeSelectionEventHandler implements KeyListener, TreeSelectionListener {
    private boolean forwardEvents = true;
    private EventObject lastEvent;
    public void keyTyped(KeyEvent e) {
    public void keyPressed(KeyEvent e) {
    forwardEvents = false;
    public void keyReleased(KeyEvent e) {
    //System.out.println(e.getComponent());
    // Leider bekomme ich nach jeder auswahl mit Cursortaste auch einen
    // keyReleased-Event, obwohl die Taste immer noch gedrueckt ist.
    forwardEvents = true;
    if (lastEvent != null) {
    lastEvent = null;
    fireNodeSelectionChanged();
    //System.out.println("Last Selection forwarded");
    public void valueChanged(TreeSelectionEvent event) {
    // there is no event.getValueIsAdjusting() in JDK1.3
    handelEvent(event);
    private void handelEvent(EventObject event) {
    //Thread.dumpStack();
    if (forwardEvents) {
    lastEvent = null;
    fireNodeSelectionChanged();
    //System.out.println("Selection forwarded");
    else {
    lastEvent = event;
    //System.out.println("Selection eaten");

    I have a JTree from which I generate classes on selection.
    To ensure only one event is fired I install two listeners.
    I install a mouse listener and capture an event when the mouse is clicked, and I install a key listener and only catch the enter key being pressed as follows:
    tree.addMouseListener(new java.awt.event.MouseAdapter() {
              public void mouseClicked(MouseEvent e) {
              showFunction();
    tree.addKeyListener(new java.awt.event.KeyAdapter() {
    public void keyReleased(KeyEvent e) {
    if (e.getKeyCode() == KeyEvent.VK_ENTER) {
    showFunction();
    This means something happens only if a user clicks on the node with the mouse or selects the node and presses the enter button. I have used this as a general standard throughout my application and it works on all platforms.
    Hope this helps

  • KeyPressed and unicode characters

    Is there anyone that can explain me why no keyPressed / keyReleased events are generated, but only keyTyped, when I press unicode characters as :
    � � � � � � � � � �
    The "Alt Gr" key doesn't generated any kind of event too.
    You can experiment it with the KeyEventDemo.java source in the Java tutorial.
    I'm using an italian keyboard on java 1.5 / linux fc2
    Thanks in advance

    If you're still looking for info, this may help.
    (From the KeyEvent JavaDoc, http://java.sun.com/j2se/1.4.2/docs/api/java/awt/event/KeyEvent.html)
    "Key typed" events are higher-level and generally do not depend on the platform or keyboard layout. They are generated when a Unicode character is entered, and are the preferred way to find out about character input. In the simplest case, a key typed event is produced by a single key press (e.g., 'a'). Often, however, characters are produced by series of key presses (e.g., 'shift' + 'a'), and the mapping from key pressed events to key typed events may be many-to-one or many-to-many. Key releases are not usually necessary to generate a key typed event, but there are some cases where the key typed event is not generated until a key is released (e.g., entering ASCII sequences via the Alt-Numpad method in Windows). No key typed events are generated for keys that don't generate Unicode characters (e.g., action keys, modifier keys, etc.). The getKeyChar method always returns a valid Unicode character or CHAR_UNDEFINED. For key pressed and key released events, the getKeyCode method returns the event's keyCode. For key typed events, the getKeyCode method always returns VK_UNDEFINED.
    "Key pressed" and "key released" events are lower-level and depend on the platform and keyboard layout. They are generated whenever a key is pressed or released, and are the only way to find out about keys that don't generate character input (e.g., action keys, modifier keys, etc.). The key being pressed or released is indicated by the getKeyCode method, which returns a virtual key code.

  • Retrieve variable value from local Storage and display on canvas

    Hi
    I'm working on a project that has multiple html files (the projects are split into 12 so 12 different edge projects and im linking them via window.open()). I have a variable that keeps track of correct answers stored in LocalStorage html object. I have managed to get the localStorage variable to increment up by one each time the object is correct however my last step is to get the variable and them display the result on the canvas. I have tried
    var outPut localStorage.getItem(' ') method to retrieve the variable then used the set and get method to display the result however it doesn't work. Im not sure if I need a for loop to go though the localStorage and get the elements
    Code:
    // insert code to be run when the composition is fully loaded here
    yepnope({nope:['jquery-ui-1.10.0.custom.min.js','jquery.ui.touch-punch.min.js'],complete: init}); // load the jquery files
    sym.setVariable("myScore", 0);
    var c = localStorage["myCount"] || 0; //loading from localStorage
    function init(){
    sym.getSymbol("barLimit").$('scrubber').draggable({start: function(e){
    },drag: function(e,ui){ // start: ...  // Find original position of dragged image
    var leftLimitScrubber  = sym.getSymbol('barLimit').$('scrubber').position().left; // position of the scrubber
    var rightLimitScrubber  = sym.getSymbol('barLimit').$('leftLimit').position().left;
    var LimitTwoLeft  = sym.getSymbol('barLimit').$('rightLimit').position().left;
    if(leftLimitScrubber == rightLimitScrubber){
      sym.getSymbol('correctBar1').play('in'); //
      sym.getSymbol('nextButton').play('in');
      sym.getSymbol('incorrectBar1').play('out'); //
      sym.getSymbol('thumbsDown1').play('out'); //
      sym.getSymbol('thumbsUp1').play('in'); //
      sym.getSymbol('congrats').play('in'); //
    localStorage["myCount"] = parseInt(c)+1; //Converting string to number, and then saving it
    console.log("numberOfCorrectAnswers", localStorage["myCount"]);
    var finalScore = sym.getVariable("myScore");
    finalScore = c;
    sym.setVariable("myScore", finalScore);
    sym.$("Score").html(finalScore);
    } else if(leftLimitScrubber == LimitTwoLeft){
    sym.getSymbol('incorrectBar1').play('in');
    sym.getSymbol('correctBar1').play('out');
    sym.getSymbol('thumbsUp1').play('out');
    sym.getSymbol('thumbsDown1').play('in');
    axis: "x",
    containment: "parent"
           //for (var i = 0; i < localStorage.length; i++){ // iterate throught the local storage
             //var getItem = localStorage.getItem(localStorage.key(i));
              //if(getItem == 'numberOfCorrectAnswers' ){
    The above is the code for the 12th project in  this projects it needs to display the variable inside the object localStorage and display on the canvas.
    Any help will mean a lot. Thank You in advance
    P.S edge animate has a lot of bugs hard to code in

    what you need to do is to create a text box and set a default value of zero. Once that is don't you need a code on the stage which grabs the value form the localStorage object. I used the .text() jquery method to display the value on the canvas. So the zero will be replaced with whatever the value of the localStorage is.
    You also need a if statement to check if the localStorage is undefined, if its not then grab the value and display on the canvas.
    e.g
    var number = localStorage['finalValue']; // for the sake of completeness I had to put this line of code
    if( number ! = undefined){ // if not undefined so the object exits then ...
         sym.$(' (text identifier) '). text(number); // note text identifier is the name of the text box you create in edge
    } // Done

  • Images look great in viewer and terrible in canvas

    I made some map animations in Motion and Keynote. They plook perfect in the Viewer window but terrible in the Canvas window. I have a 480i DV/NTSC timeline. As far as I know, all my settings are correct.
    The problem is that colors look blocky in the canvas window. Is there any way to get the Canvas window to display images as cleanly as they are displayed in the Viewer window of FCP7?
    Is there anything I should do to these images in Photoshop to prep them for FCP?
    Thanks very much in advance,
    - Nick
    Message was edited by: Nicholas Natteau1

    The Viewer just shows whatever you have in its native state.
    Moving the clip or image to the Canvas forces it to display at the resolution and color space of the codec used in the Sequence setting.
    FCP works best with still images that were saved in the TIFF format. PNG will also give good results. You should always use images with a RGB color space.
    The problem is that colors look blocky in the canvas window.
    The images very likely need to be rendered, then they will look much better.
    Consider also that the Canvas always shows a low res proxy. This is less demanding on system resources for real time playback. To see what you really have requires connecting a calibrated, broadcast monitor or at the very least, an excellent TV.
    Is there anything I should do to these images in Photoshop to prep them for FCP?
    Unless you need to zoom and pan the images, open one of Photoshop's Film & Video presets that matches the pixel dimensions of your FCP timeline settings. Paste your images into the preset template and use the transform tools to scale them to the right size.

  • Master block content canvas and Detail Tabbed Canvas...

    Hi All,
    I am trying to create master block content canvas and then detail block on tabbed canvas.
    How i can view these two canvases together ?
    these two canvases opening in separately in layout editor...how i can show them both in one window..???
    Please some advice on this ..
    Thanks,

    Hi
    these two canvases opening in separately in layout editor...how i can show them both in one window..???it's just a matter of x & y issue ; pls increase the y position of the tab canvas to move it downward (straight lower down the content) minimize the tab w & h if necessary just for temporary adjustments form design.
    By this way u would control the design layout of the two canvases.
    Hope this helps...
    Regards,
    Amatu Allah

  • KeyPressed/KeyTyped/KeyReleased

    I have a JDialog (2 JTextFields and 2 JButtons) that needs to respond to the <enter> key the same way that it should respond when the user clicks the 'OK' button on the same dialog (both actions result in running a report that displays in another window). The first time the dialog is opened and the user presses the <enter> key, all appears fine. Subsequent openings of the dialog and pressing the <enter> key produce multiple copies of the same report (i.e. the second time in, 2 reports are created. The third time in, 3 reports are created. etc). This does not happen when the user clicks the 'OK' button on the dialog...it produces one report each time (as it should).
    I have key listeners on both JTextFields so that the user can press <enter> at any time while in the dialog to create the report. The key listener (KeyAdapter) method I originally coded was the keyReleased. I check for the <enter> key being pressed, and run code so that it will produce the report. I've attempted to consume the event within all 3 methods of the KeyAdapter, but with no luck.
    Is this a good approach? What suggestions do you have to correct this problem?
    Thanks,
    Van Williams

    Fixed my own problem. Decided not to use the key listeners on the text fields. Using JRootPane, decided to set the default button (which is really what I wanted), and this works fine.
    Van Williams

  • Interlace issues from 1080i50 to - iDVD, PS3, Apple TV and even FCE canvas

    Hello all,
    I am struggling to get smooth output from my FCE, interlace is thwarting me at every turn. I can produce a smooth DVD but at low quality with a work around as described at end of post, but really want smooth HD file, here is my workflow an plight
    Have captured footage with Panasonic HDC-SD5 AVCHD camcorder in 1920 x 1080i50, imported into FCE with the newer 1920x1080 apple intermediate codec at 25fps
    On inspection in the canvas set to 100% I see interlace jaggies, play back is not smooth either. So this is the first question should I really interlace in the canvas at this point?
    Export to iDVD, use Quicktime Movie export, import into iDVD and produce DVD - result awful not smooth and blurred.
    So try to export a HD MP4 , using Quicktime conversion. I produced in 1080i at 25fps and it's jumpy and blurred on the PS3 in playback. Then I did one at 29.97fps and as expected the video jumped every second BUT there were periods of smooth HD playback so I was so close! But just could not find the correct export setting.
    Export to Apple TV directly from FCE produce awful results, however if I use the Quicktime movie and run it through visual hub I can encode for Apple TV using H.264 it de-interlaces correctly but movei not smooth (so it just removes a frame)
    So, over a period of 2 days I have tried seemingly every export in Quicktime conversion for PS3 and Apple TV, VisualHub conversions and MPEG StreamClip all producing blurred or jumpy results due to interlacing.
    The only smooth output was achived by using technique of another poster
    Export Quicktime Movie and use Mpeg_StreamClip exportthat movie in
    DVPRO50, set to PAL and 16:9, no deinterlace
    then take movie and drop into iDVD and resulting DVD is Smooth
    BUT quality is poor.
    So, the main question is
    How do I get all my nice HD footage out of FCE and onto Apple TV, PS3 or even iDVD in quality and without interlace making it jumpy or jaggy.
    Any help would be greatly appreciated.
    Cheers
    Andy.

    Wow thanks for quick reply. Apologies I didn't give full info.
    I am viewing DVD on TV - well a plasma being played via DVD on PS3.
    BUT, DVPRO50 is the only output that shows a "smooth" movie, if I playback on the canvas at 50% the interlace line are gone due to the scaling BUT the movie plays jumpy, so the DVPRo50 method is the only way I can get a smooth pan for example, every other method just gives a jumpy playback on DVD.
    iDVD is set to Production quality, when I do a QT movie direct to iDVD without the DVPRO50, the quality is better but the movie is jumpy.
    The movie is also 47 minutes long - it's quite big, file produced is about 19GB.
    Also I understand about getting HD quality and BlueRay disk etc, but I would expect to get DVD quality from iDVD, doing the DVPRO50 conversion makes it pretty bad. but smooth!
    As I said the anooying things is when I exported to MP4 on quicktime at 1080 HD and 18000kbps and 29.97 it also plays smooth for a short bursts of a few seconds (albeit jumping every second to 25 -> 29.97 issues), in 25 fps it's just blurry and jumpy. (playback on PS3)
    Thanks

  • No audio and flicker on Canvas : Final Cut Express

    I imported some footage onto Final cut Express and once it was imported the audio and video were fine. Then five minute later the audio this appears, sometimes I press play on the viewer and the audio will play for a split second and disappear. The audio on my MacBook seems to be operating fine on every other program I use. I really need help on this. No audio is working. I een imported a regular song to see if taht would play and it would but with no sound. The sound lever's seem to be bouncing up and down, which signifies that there is sound but it's not hearable.
    The other problem that I am having is that my Canvas seems to flicker bright and dark (normal contrast) when I playback the sequence on the canvas. This as never happened before.
    thanks for reading!

    What is FCE's audio output set to? Look in View > Audio Playback.
    What video format did you import and does the Easy Setup reflect this?
    What are your Sequence Settings?

Maybe you are looking for

  • PlSQL insert

    Hi all oracle lovers I am trying to insert a value which is difference between two dates, for that reason i am doing (" rec_jag_promos.end_date -rec_jag_promos.start_date") inside my insert statement. but it is not working. my plsql code is running b

  • Delete fields table

    I want delete all fields of the table Z_ABC, but after I want write all data of the internal table i_tab2 DELETE FROM Z_ABC WHERE SYSTEM NE 'delete_all'. "I want delete all fields of table     MOVE-CORRESPONDING i_tab2 TO Z_ABC.     update Z_ABC. I o

  • ABAP proxy (Client proxy)

    Hi all, Could you provide an insight onto how the ABAP proxy on the client side works? What i want to know is, 1. How do we trigger the proxy. (in case of file -> abap proxy , when ever we pick the file and once the message is inside the XI and sent

  • Java error

    I am working on the program below, but currently at present I cant get it to compile. At the moment I am getting the error of: import java.util.Scanner; class jets24 public static void main (String[]args) Scanner input= new Scanner (System.in); //var

  • Picture of the contact when calling and...

    Hey, When someone calls me, I don't see his photo on full screen, instead I see the wallpaper and a small pic of him at the top. How can I make it put the photo of the caller instead of the wallpaper when he calls me? And can I put a password to ente