Frames problem

Hello! My problem is that a link from a flash button in the
upper frame opens in a new window instead of going into the main
frame. The target of the flash is the name of the main frame.
Please suggest any proposals. If there is need I'll post the code,
but please explain me which code exactly. Thank you all in
advance.

Also i'd like to in some cases make the class (frame) being called the only one focusable until the operations arre carried out on it,Typically an application only has one JFrame. When you need to collect additional information or do additional processing you would use a JDialog (not a JFrame). When you create the JDialog you would make it a modal dialog (read the API). This means that you must close the dialog before focus will go back to your main JFrame.

Similar Messages

  • Premiere Elements 7 - When play my work frame problems occur. codec issues?

    Hello,
    I use Premiere Elements 7 to edit my videos; however, recently I have found that most of the videos I add to my work shows a frame problem every time I play. I am not so familiar with the terms but I will try my best to explain how it happens.
    1. I open a new project
    2. Add a video (usually avi format)
    3. I play the video whitout editing.
    4. I see that after every 5 frames there is a frozen frame (like a dublicate of the 5th frame)
    It results me to cut my video in every 5 frames to get rid of the frozen frame and it takes a lot of time.
    What would be causing that? When I play the video with my media players it shows perfectly but when I add it to Premiere Elements 7 to edit, this is what happens.
    I also see that there are multiple fddshow icons on the right bottom of my screen.
    I assume there is something wrong with the codecs. In that case, what would be the best codec to have in order to edit my videos on PE7?
    What do you suggest I do?
    Thank you in advance.

    Dear Bill,
    I have formated my computer and reinstalled my operating system Vista Home 32 bit. Then I switched from PRE7 to PRE8.
    This is my computer info below;
    CPU Türü QuadCore Intel Core 2 Quad Q9300, 2500 MHz
    4GB RAM
    ATI Radeon HD 3600 Series 512 MB
    I have AVC Core 2.0.0 codec, NVIDIA PureVideo codec for MPEG, K-lite MEga codecs installed as they are-without any configuration.
    Gspot still shows Xvid codec XviD ISO MPEG-4.
    File Length Correct
    Multipart OpenDML AVI (2 parts)
    (69639 frames in first part, 2663 frames follow)
    Interleave: 1 vid frame (40 ms), preload=504
    Audio frames: Split across interleaves
    [JUNK] VirtualDub
    [JUNK] MPEG2 build 24586/release
    [ISFT] VirtualDubMod 1.5.4.1 (build 2178/release)
    [USER] XviD0050
    So I assume Xvid was used for this file. Considering that what would you reccomend me to do in order to view this file and be able to edit on PRE8?

  • Calling javascript from swf (which is source file of frame) - problems with OPERA

    hey,
    right now i have the swf-file as the source file for a frame,
    because i want the swf-width depend on the browser-size.
    it looks kinda like this:
    <frameset cols="10,*,10">
    <frame src="border.htm" name="leftFrame">
    <frame src="file.swf" name="mainFrame">
    <frame src="border.htm" name="rightFrame">
    </frameset>
    from the swf i call a javascript-code that is located in the
    'border.htm'
    file.
    the javascript simply opens a popup window.
    function open_popup() {
    MM_openBrWindow('popup.htm','pop','toolbar=no,location=no,status=no,menubar=no,scrollbars =no,resizable=no,width=400,height=500');}everything
    works fine ine firefox, ie, netscape (at least in another tab),but
    when it comes to the opera browser (and apparently also safari)i
    don't get any reaction at all ...i told opera to allow
    popup-windows, so that shouldnt be the reason.now i am thinking
    maybe some browsers have a problem with callingjavascripts from
    within swfs that are not located in that specifichtml-file?maybe
    some of you encountered the same problem ...would be grateful for
    any advices ...thanx,eva

    hey,
    right now i have the swf-file as the source file for a frame,
    because i want the swf-width depend on the browser-size.
    it looks kinda like this:
    <frameset cols="10,*,10">
    <frame src="border.htm" name="leftFrame">
    <frame src="file.swf" name="mainFrame">
    <frame src="border.htm" name="rightFrame">
    </frameset>
    from the swf i call a javascript-code that is located in the
    'border.htm'
    file.
    the javascript simply opens a popup window.
    function open_popup() {
    MM_openBrWindow('popup.htm','pop','toolbar=no,location=no,status=no,menubar=no,scrollbars =no,resizable=no,width=400,height=500');}everything
    works fine ine firefox, ie, netscape (at least in another tab),but
    when it comes to the opera browser (and apparently also safari)i
    don't get any reaction at all ...i told opera to allow
    popup-windows, so that shouldnt be the reason.now i am thinking
    maybe some browsers have a problem with callingjavascripts from
    within swfs that are not located in that specifichtml-file?maybe
    some of you encountered the same problem ...would be grateful for
    any advices ...thanx,eva

  • Application Frame problem

    Hi:
    Of late when I use the application frame it is sized so large (not by me) that you cannot see the information at the bottom on the tabbed image and the Panels section.  I have tried to resize it but it extends so low that the cursor cannot reach the control.  I have already tried uninstalling and installing and that worked and I reset it to my desired size but when I came back the next day the problem was back.  I figured finally that it must be a Preference and I restarted and allowed for resetting and again this worked.
    My question is does anyone know what the actual plist is for the Application frame so that I can trash that directly?
    Herman R.

    PECourtejoie wrote:
    The + jellibean is the maximize button (for those that might not see the image)
    Which is also useful to know for those of us who use the Graphite theme (System Preferences > Appearance) and thus see no color and no "jelly beans" anywhere in our Macintosh user interface:

  • JAVA Frame problem

    Hi,
    I hav a problem in JAVA. I have a main frame. This has an internal
    frame as its compnent. The size(height) of internal frame is more
    than the main frame. I want the a to vertically scroll in main frame
    to see the entire internal frame.
         The following code i tried with JSCrollPane gives me only
    horizontall scrolling , so i can see entire width, but no verticall
    scroll to see entire height of internal frame.
         Can u solve this problem.
    Bye,
    Pradeep
    import java.awt.*;
    import javax.swing.*;
    public class Main extends JFrame
         JInternalFrame jInternal;
         JScrollPane jPane;
         Main()
              jInternal = new JInternalFrame();
              jInternal.setSize(200,600);//Internal Frame height bigger
              jPane = new JScrollPane(jInternal);
              getContentPane().add(jPane);
              setSize(200,200);//Frame height smaller
              jInternal.show();
         public static void main(String a[])
              Main m = new Main();
              m.show();     

    Hi.. This might help:
    JScrollPane jPane;
    jPane = new JScrollPane(jInternal,
    ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,
    ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
    U can change those constants so that it shows the scrollbars at all time.. Now they only appear when needed..

  • CS6 Match Frame Problem, Sequence Clip vs Source Clip issue

    Hey folks.
    So, I'm on Windows 7, Premiere Pro CS6.
    I've found an issue with Match Frame (Control F), it seems to be acting inconsistently.  Sometimes when I double click on a clip in my sequence and hit F it brings up the sequence clip, other times it brings up the source clip (in the Source Monitor)
    The problem here is that I'm placing markers on my sequence clips to line them up based on visual cues in the scene.  This work fine for a while, but then, seemingly randomly, I'll double click a sequence clip and when I hit F it brings up the source clip, not the sequence clip.  Now when I place markers they do not show up in the sequence because I'm marking the source clip not the sequence clip.
    Anyone else encounter this?  If needed I can try to capture video of this happening.
    Thanks all,
    ~ James

    Does this mean that it isn't possible to "Reviel in project", or otherwise locate a merged clip in the project window?
    So far "Reveal in project", and "match frame", point to the same subfile of a merged clip... not very useful. What other options are there?
    ... A sad workaround is to type in the name of the merged file in the search frame at the top of the Project pain.
    I guess this one for the feature request list.

  • Imovie11 splitting clips and freeze frame problems

    I am having a problem with imovie11 splitting cips and using the freeze frame function.  When I highlight the clip I want split, it splits a different clip either on the line below it or somewhere else in my project!  Also, my freeze frame function freezes the frame where my playhead is BUT doesn't split the clip...so what I'm left with is the entire clip- then the freeze frame - then the continuation after the freeze frame.  Is there a fix for this??

    Remove any in or out points you have on the timeline. Place the playhead at the frame on the timeline you want to freeze, and then select Modify > Make Freeze Frame, the freeze should appear instantly in the viewer. You can then click the Overwrite button, and the freeze should now be placed on the timeline in the correct place.
    Is this not happening?
    MtD

  • Repeating Frame Problem - please guide

    Dear Gurus,
    I am developing a report in reports 6i. The structure of report is something like this.
    M1
    R1
    f1
    f2
    R2
    M1 is a fixed frame containing all other elements. R1 is repeating frame containing
    2 fields and one repeating frame.
    Now while printing records of R2 overflow to next logical page. that's fine but space of f1 and f2 also get repeated on to next page.
    To give an analogy :-
    Purchase Order Report
    po number - f1
    supplier - f2
    po lines -r2
    next page
    empty space present ( equal to the required fields r1 and r2 )
    po_lines
    Now point is i want the Po lines to continue without the space for fileds for f1 and f2 repeating.
    and yes i kept vertical elasticity for M1,R1 and R2 as variable.
    How can i solve it.
    please guide.
    regards ravi

    Print Object on property it is "First Page". the structure is like
    <code>
    M1
    R1
    f1
    f2
    R2
    </code>
    Problem is when r2 overflows to next page, the space for f1 and f2 is also there on next page. What i want is content of r2 should come at the start of the page rather than at the location where its fixed when it's overflowing to next page.
    regards

  • Repeating frame problem

    Hi,
    I've Matri with group report which prints 'region' level data in Repeating frame (down).
    But, for the Last region of the report, the report is prinitng twice the data. I observed this problem when I have more than one 'region' level data and then for the last region data in that.
    ( means, if there is only one region data, it's not priniting twice, rather priniting fine).
    Please suggest anything on this..urgent a bit..
    Thanks,
    Ratnakar

    Hi,
    Do one thing, place a group frame around repeating frame , sure it must be of size to occupy 3 or more reocrds generated by query. Below this group frame , place additional fields you want to appear below . Remember to keep vertical and horizontal elasticity fixed for this group frame.
    Adinatn Kamode

  • Display Format (Video) Frames problem

    The timecode display when set to frames is not working correctly in CS4.
    When you specify Frames instead of timecode it does not change.
    Project Settings>General
    Video | Display Format | Frames
    Can others reproduce this? Seems like a bug to us.
    Link to reference in help:
    http://help.adobe.com/en_US/PremierePro/4.0/WS3E67AF4C-B2A2-4f04-90B4-F8CCFB74B144.html

    >Is there an official problem area that I can report this
    FAQ:How/Where do I report a bug?
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Cross dissolve and still frame problem

    Sorry for reposting this issue but I am still have problems.  In fact, it is extremely frustrating and I don't know why.
    I am using FCP X 10.0.8 and when I try to add cross dissolves to some still frames it will not allow me. 
    I get the following error msg.
    The Japanese error msg says that there is insufficient media length outside the clip edge to make a transition.  And it asks whether I want to make a ripple trim to the media in order to make the transition.  It says that if I decide to do so then the overall project duration will be shortened.  However, even if I decide to do the later it will not let me make the cross dessolve.
    As you can see there should be enough length outside the clip edge to allow this.  Or am I misleading myself in this view?
    According to me - and I know that I am a sheer novice at this, there should be enough media length to allow the transition.  This is happening in not only cross dissolves but any other dissolve which I attempt to add.  The problem seems to be intermittent or varies.  If I replace the still frame then sometimes it will allow the transition but effects subsequent frames.  Either putting in "flash" or bogus frames - even just a black frame.  These I can only detect when I expand the timeline to the very limit.  And on some occassions there is nothing whatsoever that seems to be blocking the adding of the cross dissolve.  This will be the 3rd time which I have had to restart the project and it is getting rather annoying, not to say that I am approaching the time limit which is adding even more pressure.
    Can you suggest what the problem is and how I should go about rectifying it please?  Is anybody else having the same issue?
    Thanking you,
    Mitaka27
    Tokyo

    This is what I see but it doesn't quite make sense to me.  One, I don't know why there should be two AUDIO01 files showing.  The still frame which I am trying to add the crossover to is FRTOTSUKA.  It will allow me to add to the end but not to the start.  The same is happening with a couple of other frames.  If I add one to the start it won't allow me to add it to the end. 
    Hope I am making sense.
    Thanking you,
    Mitaka27

  • Flash frame problem fcpx.

    When I drop clips into my timeline (W) or when I copy and paste a clip from the timeline or hold "option" and copy a clip and drag it elsewhere. I always get these flash frames. Sometimes they are so small I can't expand the timeline enough to delete them. Anyone having the same problem?

    After I left the last message, things started getting even wierder. First, video scrubbing stopped working--nothing, wouldn't scrub at all. So I did a restart, and then video scrubbing started responding but would cause strobing flash frames as I was scrubbing. Much more than just a few frames between clips, but all throughout. At the same time my laptop fans were kicked into high, and the computer was getting very hot.
    I looked at my activity monitor, but the cpu wasn't working more than maybe a fifth of capacity. I then checked my dock and noticed that I had Quicktime 7 Pro running. I had used it to trim a video and output an audio sample from it. Just an old workflow habit. I shut down Quicktime and the fans quieted down, and then the scrubbing/strobing stopped happening. It was scrubbing smoothly again.
    I remembered I had previously duplicated the project I have been having the problems with, so I went back to the earlier copy. It still had the two story lines, with no black or flash frames yet. So I repeated the same process that had caused the flash frames to appear, dragging the clips from the secondary storyline down to the main storyline, and deleating the previous main storyline clips. I then dragged a buch of clips around, and added more with the 'e' command.
    No flash frames or black frames. No fans running on high. No overheating.
    I'm pretty sure that I started Quicktime 7 immediately after I duplicated the project, and it was still running when I made the changes to the duplicate that started exhibiting problems. And now with Quicktime off, I can't get it to repeat the flash-frame-effect. So it looks like, in my case at least, the cause of the problems was having FCPX and Quicktime 7 running at the same time.

  • Target Frame problem

    On
    http://www.adamsrecruitment.com/06/frameset/3.htm
    - the left menu items (Intro, how we work etc.) need to be opening
    in de frame. The target is defined well (main). Unfortunately some
    people experience on their computer with IE 6 that the page is nog
    opening in the frame (main) but outside the frame (as a _blank). I
    don't experience this problem on my computer not in IE 6 nor IE 7,
    and have no clue why this is happening. Can anyone help me
    out?

    You have discovered just one of the many reasons not to use
    frames. I
    suppose it's too late to suggest that you get rid of them?
    With framesets
    like this, I suspect you are driven around the bend working
    on this site -
    <frameset cols="*,825,*" frameborder="NO" border="0"
    framespacing="0">
    <frame src="../left/1.htm" name="left" frameborder="no"
    scrolling="NO"
    noresize id="left" >
    <frameset rows="*,310,*" frameborder="NO" border="0"
    framespacing="0">
    <frameset rows="*,50"" frameborder="NO" border="0"
    framespacing="0">
    <frame src="../top/1.htm" name="top" frameborder="no"
    scrolling="no"
    id="top" >
    <frame src="../middle/1.htm" name="middle"
    frameborder="no" scrolling="NO"
    noresize id="middle" >
    </frameset>
    <frameset cols="325,501" frameborder="NO" border="0"
    framespacing="0">
    <frameset cols="140,184">
    <frame src="../mainleft/3.htm" name="mainleft"
    frameborder="no"
    scrolling="no" id="mainleft" >
    <frame src="../pic/3.htm" name="pic" scrolling="no"
    id="pic">
    </frameset>
    <frame src="../main/3.htm" name="main" frameborder="no"
    scrolling="auto" id="main">
    </frameset>
    <frame src="../bottom/3.htm" name="bottom" scrolling="NO"
    noresize
    id="bottom">
    </frameset>
    <frameset rows="*,310,*" frameborder="NO" border="0"
    framespacing="0">
    <frameset rows="*,50"" frameborder="NO" border="0"
    framespacing="0">
    <frame src="../righttop/1.htm" name="righttop"
    id="righttop" >
    <frame src="../rightmiddle/1.htm" name="righmiddle"
    frameborder="no"
    scrolling="NO" noresize id="righmiddle">
    </frameset>
    <frame src="../right/1.htm" name="right" frameborder="no"
    scrolling="NO"
    noresize id="right" >
    <frame src="../rightbottom/1.htm" name="rightbottom"
    frameborder="no"
    scrolling="no" id="rightbottom">
    </frameset>
    </frameset>
    <sigh>
    Why on earth have you used such a complex frame layout?
    Also, there is a grammatical conflict in this line -
    "Adams' Multilingual Recruitment was founded by Maureen Adam"
    and unfortunately in the logo. If the name is "Maureen Adam"
    then the
    proper possesive construction is "Adam's" not "Adams'". If
    "Adams'" is
    correct, then the last name would have to be "Adams".
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "web girl" <[email protected]> wrote in
    message
    news:[email protected]...
    > On
    http://www.adamsrecruitment.com/06/frameset/3.htm
    - the left menu items
    > (Intro, how we work etc.) need to be opening in de
    frame. The target is
    > defined
    > well (main). Unfortunately some people experience on
    their computer with
    > IE 6
    > that the page is nog opening in the frame (main) but
    outside the frame (as
    > a
    > _blank). I don't experience this problem on my computer
    not in IE 6 nor IE
    > 7,
    > and have no clue why this is happening. Can anyone help
    me out?
    >

  • Large Repeating Frame Problem

    Dear All:
    My problem is as below:
    I need to draw a large repeating frame ( sized 8 inches x 38 inches) and print it out using A4 paper (sized approximately 8.5 inches x 11 inches) via PDF format in Acrobat Reader. The problem is the report print out to be so small in order to fit the A4 size.
    Is there anyway to fix the Layout Model Body Section as A4 size and at the same time include a repeating frame in the report body which sized larger than the layout body?
    Thank You.
    Regards;
    Jessie

    Jessie,
    Check the "Horizontal Panels per Page" property, in the "Main Section" node of "Layout Object" (in the Object Navigator window).
    I believe this will solve your problem.
    Pedro das Neves
    ([email protected])

  • Photoshop Elements 12 frame problem

    I just purchased photoshop elements 12. I am trying to down load a frame in the addtional frames with the blue corner on it. I have done the drag method and the double click I get nothing, "no can't down load" saying or anything. PLEASE can anyone help me with this problem?
    Thank you so very much for any advice,
    Mona Joyner

    What operating system are you using?
    You have an image open when you double click on the Frame?

Maybe you are looking for

  • ORA-19279 How do I write a query to return the data?

    I have XMLType tables in Oracle 11. I insert XML data from documents and each table only contains one XML document. I can write queries to return outer tags and inner tags but not outer and inner tags in the same result set. There can be one to many

  • SQL Server 2012 Management Studio:Importing XML file to new Table of new Database-XML parsing: unexpected end of input???

    Hi all, In the Notepad, I created an xml file (ZenQroducts.xml) : <Qroducts> <Qroduct> <SKU>1</SKU> <Desc>Book</Desc> </Qroduct> <Qroduct> <SKU>2</SKU> <Desc>DVD</Desc> </Qroduct> <Qroduct> <SKU>3</SKU> <Desc>Video</Desc> </Qroduct> In my SQL Server

  • Programs have trouble with retina display?

    I'm about to buy a MBP 15" with retina. So far I have read some posts about incorrectly displaying programs like PS elements and CS6 programs. Does Lightroom 5 also have this problem? I'm mainly buying the laptop for my photography hobby.

  • Video quality poor including titles

    I purchased this product to try something different. I normally use another video editor. I love everything about the program except when it burns to DVD. When I burn it, the quality is horrible. And I've read the other forums regarding the size/reso

  • Error in account determination: table T030K key 1000 ZVA

    Dear Friends, I have created a sale order.I have created Delivery document with reference to sale order. I have created Tax invoice with reference to Delivery document.Invoice is generated and getting saved also.But whlie saving I am getting an error