Can't get the canvas back to normal

hi all,
i'm very very new with FCP and i can't figure out what i did wrong.. i was dragging some clips on the canvas and i must have hit some key short-cut or something.. now my canvas has a square-frame in it. this square-frame can be rotated and re-shaped, but it won't go away. the canvas remains black and doesn't show anything, it's blacked-out even when the play head is scrolling for playback.
i must have done something i can't figure out.. PLEASE HELP !
thanx !

You turned on wireframe display. Not at the edit machine right now but if you look at the top of the Canvas window, click on the rightmost icon at the top of the window and select the first option. this will turn things back to the basic display.
x

Similar Messages

  • ADF and JQuery: How can I get the data back to server listener.

    Jdeveloper 11g Version 11.1.1.2.0
    I use Jquery to draw the signature. How can I get the svgOutput back to my server listener.???
    e.getSource give me the error e.getSource is not function.
    Both of function saveSignatureCapture(which calling from ADF button) and $('#save-output').click(function (event) can not send the the data back to my server listener.
    Thanks.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="dSignature" title="Signature Capture">
          <af:resource type="javascript" source="../resources/lib/jquery/jquery-1.4.2.min.js"/>
          <af:resource type="javascript" source="../resources/js/jquery.drawbox.js"/>
          <af:resource type="javascript">
            var svgOutput = '';
            function saveSignatureCapture(e) {
                var signatureText = $('#drawbox-data').val();
                var source = e.getSource();
                var type = 'saveSignatureCapture_ServerListener';
                var immediate = true;
                var params = {
                    signatureText : signatureText
                AdfCustomEvent.queue(source, type, params, immediate);
            function beginSignatureCapture(e) {
                $('#drawbox').drawbox( {
                    caption : 'This is a caption', lineWidth : 3, lineCap : 'round', lineJoin : 'round', colorSelector : true
                $('#view-output').click(function () {
                    svgOutput = window.open('data:image/svg+xml,' + $('#drawbox-data').val());
                    svgOutput.document.close();
                    return false;
                $('#save-output').click(function (event) {
                    var signatureText = $('#drawbox-data').val();
                    var source = $(document);
                    var type = "saveSignatureCapture_ServerListener";
                    var immediate = true;
                    var params = {
                        signatureText : signatureText
                    AdfCustomEvent.queue(source, type, params, immediate);
                    return false;
            $(document).ready(beginSignatureCapture);
          </af:resource>
          <af:panelStretchLayout id="psSignature">
            <f:facet name="bottom"/>
            <f:facet name="center">
              <af:panelGroupLayout id="pgSignature" layout="vertical">
                <f:verbatim>
                  <div id="divSignature">
                    <canvas id="drawbox" width="600" height="200">
                      <p>Your browser does not support &lt;canvas&gt;</p>
                    </canvas>
                  </div>
                  <br/>
                  <br/>
                  <a href="#" id="view-output">View Rendered SVG Output</a>
                  <br/>
                  <br/>
                  <a href="#" id="save-output">Save Signature</a>
                </f:verbatim>
                <af:spacer width="10" height="10" id="s10"/>
                <af:panelGroupLayout id="pghl14" layout="horizontal" halign="center">
                  <af:commandButton text="Save Signature" id="cbSaveSignatureButtonId" partialSubmit="true">
                    <af:clientListener method="saveSignatureCapture" type="click"/>
                    <af:serverListener type="saveSignatureCapture_ServerListener"
                                       method="#{backingBeanScope.mainBackingBean.saveSignatureCapture_ServerListener}"/>
                  </af:commandButton>
                </af:panelGroupLayout>
              </af:panelGroupLayout>
            </f:facet>
            <f:facet name="start"/>
            <f:facet name="end"/>
            <f:facet name="top"/>
          </af:panelStretchLayout>
        </af:document>
      </f:view>
    </jsp:root>Edited by: user553450 on Sep 17, 2010 4:02 PM
    Edited by: user553450 on Sep 17, 2010 4:13 PM

    Hi Frank,
    Thank you so much for your advice, I got lot of knowledge from your book and articles since I am in transition from forms to JDeveloper.
    By surrounding <af:panelStretchLayout id="psSignature"> with <af:form id="f1">
    Now the following code is work on Firefox, everything fine, I can get the data back and call my server listener as I expected.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" title="Signature Capture">
          <af:resource type="javaScript" source="../resources/js/excanvas.js"/>
          <af:resource type="javascript" source="../resources/lib/jquery/jquery-1.4.2.min.js"/>
          <af:resource type="javascript" source="../resources/js/jquery.drawbox.js"/>
          <af:resource type="javascript">
            function saveSignatureCapture(e) {
                var signatureText = $('#drawbox-data').val();
                alert(signatureText);
                var source = e.getSource();
                var type = 'saveSignatureCapture_ServerListener';
                var immediate = true;
                var params = {
                    signatureText : signatureText
                AdfCustomEvent.queue(source, type, params, immediate);
            function beginSignatureCapture(e) {
                var cmd = "$('#drawbox').drawbox({lineWidth:3,lineCap:'round',lineJoin:'round',colorSelector:true});";
                if (navigator.userAgent.indexOf('MSIE') !=  - 1) {
                    setTimeout(cmd, 1000);
                else {
                    $('#drawbox').drawbox( {
                        caption : 'This is a caption', lineWidth : 3, lineCap : 'round', lineJoin : 'round', colorSelector : true
          </af:resource>
          <af:form id="f1">
            <af:panelStretchLayout id="psSignature">
              <f:facet name="bottom"/>
              <f:facet name="center">
                <af:panelGroupLayout id="pgSignature" layout="vertical">
                  <f:verbatim>
                    <canvas id="drawbox" width="600" height="200">
                      <p>Your browser does not support &lt;canvas&gt;</p>
                    </canvas>
                  </f:verbatim>
                  <af:spacer width="10" height="10" id="s10"/>
                  <af:panelGroupLayout id="pghl14" layout="horizontal" halign="center">
                    <af:commandButton text="Save Signature" id="cbSaveSignatureButtonId" partialSubmit="true">
                      <af:clientListener method="saveSignatureCapture" type="click"/>
                      <af:serverListener type="saveSignatureCapture_ServerListener"
                                         method="#{backingBeanScope.mainBackingBean.saveSignatureCapture_ServerListener}"/>
                    </af:commandButton>
                  </af:panelGroupLayout>
                </af:panelGroupLayout>
              </f:facet>
              <f:facet name="start"/>
              <f:facet name="end"/>
              <f:facet name="top"/>
            </af:panelStretchLayout>
          </af:form>
          <af:clientListener method="beginSignatureCapture" type="load"/>
        </af:document>
      </f:view>
    </jsp:root> However, I got the error following error when I run the page from IE8.
    Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichCommandButton[oracle.adf.RichCommandButton] id=cbSaveSignatureButtonId StackTrace:function(x217)[AdfRichCommandButton[oracle.adf.RichCommandButtonId]..........
    FYI, the following simple testing code has the similar error in IE8 too (not for Firefox).
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:resource type="javaScript" source="../resources/js/excanvas.js"/>
          <af:form id="f1">
            <f:verbatim>
              <canvas id="drawbox" width="600" height="200">
                <p>Your browser does not support &lt;canvas&gt;</p>
              </canvas>
            </f:verbatim>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>The error is: Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichDialog[oracle.adf.RichDialog] id:::msgDlg StackTrace function(x217).......
    Your advice is very much appreciated.

  • By mistake, I shrink the size of a particular page, which firefox then remembers. How do I get the size back to normal?

    When moving around on websites, somehow I manage to shrink the size of what is shown on the screen. I have not figured out how to get the size back to 'normal'. However, Firefox remembers this so when I reenter this particular size, it will still be in the smaller format. Very frustrating and as this has happened for at least two of my most watched sites, I am more and more using competing formats, e.g. Explorer.
    I have alsl asked more experienced users of Internet to try to solve this but they are as lost as I am.
    Looking forward to getting your advice.
    Best regards,
    Lars Henriksson

    You can hit CTRL++ to zoom. Or install these add-ons:
    https://addons.mozilla.org/en-US/firefox/addon/theme-font-size-changer/
    https://addons.mozilla.org/en-US/firefox/addon/zoom-page/

  • My iphone is broken,and i came to store to change a new one today. When I come home, I found I lost my backup and may be mistake is made during before backup.The information in my previous iphone is really important for me? how can I get the backup back?

    my iphone is broken,and i came to store to change a new one today. When I come home, I found I lost my backup and may be mistake is made during before backup.The information in my previous iphone is really important for me? how can I get the backup back?

    If you don't have a backup then the only possible solution is to go back to the store and see if they can get your old phone and create a backup of that. I know very often that Apple employees will wipe the returned iPhones clean before shipping them back to wherever they ship them.
    When you say your old phone was "broken" does this mean it is dead and won't turn on?
    Do you have a Time Machine backup of your computer, or a clone that might have this info on it?
    Other than that I hate to say you may be out of luck. Time Machine and/or a cloning program performed regularily will inevitably save your a** in situations like this.
    Good luck
    PM

  • I have reinstalled mountain lion on my MacBook Pro and can't get the games back App Store says they'll already installed how can i download them can anyone help

    I have reinstalled mountain lion on my MacBook Pro and can't get the games back App Store says they'll already installed how can i download them can anyone help

    I have eactly the same problem - it seems that the downloaded version on MBA is version 6.0 and on iPad is is version 2.0 -
    Issue is when i tried to save the presentation on MBA Keynote 09 - Keynote crashed.
    I tried to save is as Powerpoint in MBA and it crashed as well!
    Message was edited by: Innovaxin

  • I down loaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you

    I downloaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you.

    Hi- apparently I also had a similar moment of madness and thought that 'freeride games' would be fun. Well, so much for that! It added a ton of things to my tool bar, I would like to uninstall it, any suggestions for this one?
    thanks :)

  • How can I get the tabs back where they belong beneath the address bar , NOT on top ???

    how can I get the tabs back where they belong beneath the address bar , NOT on top ???
    they are on top, which puts the address bar at a variable position depending on how many tab rows exist - makes a moving target for navigating to across my dual 24 inch screens
    I tried your "solution" using about:config and setting browser.tab.on.top or whatever to false, but that had NO effect
    Maybe because TabMixPlus is installed?
    It does allow putting the tabs all the way at the bottom, but I don't like that either.
    PLEASE, give me the address bar at TOP with tabs under that!!!
    Also, I don't want FlashGot to be at the right of the address bar!!!

    why should we use yet another add on to get the tabs back at the bottom? Big mistake.
    Moreover, why make FF look more like Chrome? If I wanted Chrome, i would have installed it long time ago.
    FF 29.0 is NOT an improvement.
    Nasty piece of mud.

  • I just created a slide show with music and tried to export it to a thumb drive to play on another computer.  File seemed too large and slow to export, so I deleted the music. Now, I can't get the music back on it and don't know what to do...

    Can't export my slide show.  Is the file too big? Tried to export without music.  Now, can't get the music back into it.

    If you want help you’ll need to give us more information. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • How can I get the data back from my game

    How can I get the data back from minecraft if I deleted the app and bought with a different Apple ID

    No, they are tied to the ID that purchased them, and cannot be transferred to anyone else.

  • Formscentral charged me twice for a yearly account. Can I get the money back for the second time (and be sure it wont' happen this month again ?

    I got charged twice (the last two months) for a yearly account on formscentral. Can i get the money back ?

    Here's a link to a procedure:
    http://www.ehow.com/how_5590751_refund-itunes.html

  • I downloaded 4.0.1 and lost all my Yahoo toolbar apps but still have the Yahoo search bar. How can I get the apps back? Refreshing the "gear" does nothing.

    I have Windows XP and downloaded Firefox 4.0.1. After it was installed 5/7/11, I noticed all my Yahoo search bar apps were missing. Rebooting did not help. Neither did the "gear" on the toolbar next to the yellow Yahoo search box. Internet Explorer browser still shows them. How can I get the apps back in Firefox?

    I have Windows 7, the Yahoo toolbar has been working fine until today now all my apps are missing.
    Refreshing the toolbar does nothing.

  • Accidentally deleted an App Store app.  how can I get the icon back on my home screen?  when I search for it in the App Store it comes up 'open'. thanks.

    accidently deleted an app Store app.  how can I get the icon back on my home screen?  in the app store it comes up 'open' instead of install.

    What happens if you tap on open?
    Remember, if you ever want to find an app quickly, you can slide all the way to the left (iOS 6 and lower) or pull down (iOS 7 and later) to get to an app.
    If you know for certain that you have deleated the app, please try restarting your phone. There are many ways to do this, but the safest way would be to hold down the power button and then slide to power down.
    Once powered down, restart and try to find the icon on your screen. If you still can't find it, go into the App Store and then find the app you were trying to access. It should have an iCloud download symbol since you've purchased it before, rather than saying "install."

  • I downloaded an album a while ago on my ipod and i had to restore my ipod and everything left, can i get the album back for free?

    i downloaded an album a while ago on my ipod and i had to restore my ipod and everything left, can i get the album back for free? when i restored my ipod, all of my music left but i bought a few things, but they are not in the icloud so can i get the music back?

    See Here  >  Download Past Purchases
    http://support.apple.com/kb/HT2519

  • I accidentally deleted iPhoto on my mac and it says the the app was downloaded with a different apple id and now i can't get the app back without paying $14.99

    i accidentally deleted iPhoto on my mac and it says the the app was downloaded with a different apple id and now i can't get the app back without paying $14.99

    Did you install it yourself are somebody else for you?
    If you installed them yourself, but do not remember which AppleID you used, try all AppleIDs you might have used in turn.
    If somene else set up your Mac for you, ask the person to reinstall it. If you bought the mac second hand, the previous owner needs to contact Apple to transfer the iLife apps. If that is not possible, delete the apps that you cannot update and buy them using your AppleID.

  • I deleted my ibooks author file but the preview is still available on my ipad, can I get the ibook back into ibooks author to continue to edit?

    I deleted my ibooks author file but the preview is still available on my ipad, can I get the ibook back into ibooks author to continue to edit? I have not published anything, just previewed on my ipad but the file seems to be deleted from my imac which is what I was using ibooks author on. Any help is welcome!

    It's not a 'process' at all.
    If it was easy/straightforward, people would be turning store versions into iBA versions left/right and all **** would break loose. It's not and that's a good thing, sorry
    Work up from whatever version you have.
    Any work you value should be backed up....period. That backup should be used and tested regularly. Consider this a lesson learned, perhaps. Good luck in the future.

Maybe you are looking for

  • Does anyone know how to load a skin . swf file with video to dreamweaver

    I have input the video into flash cs3 and then used the properties section for adding the video in the source section. I then put the skin with the first drop down. I saved and just put it in dreamweaver however does not work.. I was told the skin ma

  • How to deploy a JSR-168 Portlet in Weblogic?

    I am running WLS 8.1 with the advanced JSR-168 support installed (not yet running SP2). I have a JSR-168 portlet war that I had been testing in the JSR-168 reference implementation (pluto). Can someone please point me to the instructions on how to no

  • Cannot convert character sets for one or more characters

    Hello, Issue: Source File:   Test.csv Source file dropped on application server as csv file via FTP Total records in csv file 102396 I can able to load only 38,000 records after that I am getting error message  " convert character sets for one or mor

  • Single key to deactivate Type tool and activate Selection tool ??

    The set of keystroke shortcuts on the CD that comes with Deke McClelland's InDesign One-on-One books has a shortcut that deactivates the Type tool and activates the Selection tool by pressing Enter key on the keypad. I can't even imagine working with

  • ITunes And Digital Copy Question

    sorry if this has been asked before but is there a way to register all my digital copy blu rays onto my itunes and delete them so they dont take space away from my macbook pro? i copied Juno onto the computer then deleted it, and they let me know tha