Putting my Seconf JFrame on Top of First ...

hi
my application has a main JFrame and once a button on that JFrame is clicked ... another JFRame is opened ...
My problem is that i want my second JFrame on top of the first JFrame .. but what is happeining is that the seconf JFrame goes on the background .. I have to minimize the first JFrame and then the second JFrame becomes visible ..
Plz help me out so that my second JFrame automatically comes on top of the first JFrame,

But i m doind a lot of Database stuff retrieving values and updating DB from there in second JFrame ..
n i have to use the JFrame as it has 6 buttons, 4 combos, 5 JTextFields,,,,,
i have gone through the docs but did not find any property which will set THe second JFrame on top ..

Similar Messages

  • Is it possible to put a photo overlay on top of a QuickTime movie?

    Is it possible to put a photo overlay on top of a QuickTime movie?
    Here's what I want to happen...... Once the QT arrow controller is clicked, then the overlay photo would disappear and the QT movie would play.
    I tried to put the QT movie file in a table then place a photo as the background image, but it didn't work.
    Anyone know how this can be done?

    Easy using QuickTime Pro.
    Size the image file to the dimensions of your QuickTime file.
    Open the image with QuickTime Pro.
    Select all (Command-a) and Copy (Command-c).
    Switch to your QuickTime .mov file. Place the controller at the first frame.
    Paste (Command-v) and Save As (self contained).
    To give your still image file a bit of "time" add it (scaled) to a few seconds of audio and then "extract" the new video track.

  • Putting a still image on top of a movie clip

    Alright, let me explain my scenario. I have a scene in my movie where I want to put someone else's head on top of another persons body (it's not *****). Basically, I want to know if you can put a still image on top of a moving picture. I know this is borderline flash animation, but I want to know if it can be done in Final Cut Express 4.
    Thanks!
    - Jd

    Yes, it is possible.
    If the person's body is moving, it is not easy to make his new head on top move smoothly. So a satisfactory result may be hard to reach, but it all depends on what you are expecting to get.
    In any case you have to add the new still with the head in the timeline on top of the video, and apply the Basic Motion keyframes to its Scale, Center and/or Rotation controls. Add as many keyframes as you can manage (possibly even one every 5-10 frames) to make the still (head) follow the underlying body smoothly. Note that at 3 keyframes per second (a keyframe every 10 frames with NTSC) you need 30 keyframes in 10 seconds of movie... if you accept a jerkier result you can lower the keyframe number, but it really all depends on the body movement in the movie, and the precision you need.
    You might need also to prepare the still by removing all its background, in order to have only a head in it, before importing the still to FCE. For this you could first use Photoshop (Elements) to remove the background, save as .tif with transparency, and finally import to FCE.
    See if it works...
    Piero

  • When I open a link from another website ForeFox puts a messagge at the top of the new link saying that it has blocked the websiste from transferring me to a new

    When I open a link for another website Firefox opens a new tab but puts a line on the top of the new page saying that Firefox has blocked the website from transferring me to another page.
    I have to press ALLOW before Firefox will open the new page.
    How can I solve this problem.
    Many thanks in advance.

    hello betth007, in order to get effective help, please open a new question at https://support.mozilla.org/en-US/questions/new instead and include a bit more details about your issue (what kind of error message are you getting, etc.). thank you!

  • AS3 how to put the buttons always on top of the external swf in the code below?

    how to put the buttons always on top of the external swf in the code below?  I am  beginner use to as3, can someone help me?
    thanks, for all!!
    var Xpos:Number = 110;
    var Ypos:Number = 180;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    var defaultSWF:URLRequest = new URLRequest("swfs/eyesClosed.swf");
    loader.load(defaultSWF);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btns Universal function
    function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btn listeners
    eyesClosed.addEventListener(MouseEvent.CLICK, btnClick);
    stingray.addEventListener(MouseEvent.CLICK, btnClick);
    demon.addEventListener(MouseEvent.CLICK, btnClick);
    strongman.addEventListener(MouseEvent.CLICK, btnClick);

    use:
    var Xpos:Number = 110;
    var Ypos:Number = 180;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    var defaultSWF:URLRequest = new URLRequest("swfs/eyesClosed.swf");
    loader.load(defaultSWF);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btns Universal function
    function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChildAt(loader,0);
    // Btn listeners
    eyesClosed.addEventListener(MouseEvent.CLICK, btnClick);
    stingray.addEventListener(MouseEvent.CLICK, btnClick);
    demon.addEventListener(MouseEvent.CLICK, btnClick);
    strongman.addEventListener(MouseEvent.CLICK, btnClick);

  • How do i parse data from the second jframe back to the first?

    Hello.
    I have a jFrame were I promt users to keep a list of Names in a jTable. (I keep data for something else, but lets say names.. ) Anyway, afterwords I want to add some extra parameters for each name. So I created a new frame, which is opened when user press an Edit button. The new frame opens and users can add for the specific name some extra data, like age, height, color, sex.. etc. that characterizes this person.
    On this second form i have a save button, which when its pressed i would like to keep this information for this name, so as when user press edit again from the first frame on the same Name the data that previously entered will be loaded (lets say that the user can not enter the say name again)
    I haven' t figured the code for the save Button, but with the rest I am fine.
    Can you give any ideas with structures that I have to use and how the action listener will have to be??
    When I set visible the new form i have made a constructor that loads the new form which have a label with the name of the person that is edited., but how do i parse data from the second form back to the first that is already opened??
    Thanks very much..

    I found it.. it was not so hard afterall..
    anyway, i quote the new code..
    package namelist;
    // Java core packages
    import java.awt.event.*;
    import java.util.*;
    // Java extension packages
    import javax.swing.*;
    import javax.swing.table.*;
    public class NamesGUI extends javax.swing.JFrame {
        //Variables for managing the jTables
        DefaultTableModel tableModel;
        Vector rows,cols;
        String[] colName1 = {"List of Names"};
        ManageJTables mJT = new ManageJTables();
        Hashtable h;
        /** Creates new form ProsAgentGUI */
        public NamesGUI() {
            h = new Hashtable();
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        private void initComponents() {
            Panel = new javax.swing.JPanel();
            ToolBar = new javax.swing.JToolBar();
            ADD = new javax.swing.JButton();
            EDIT = new javax.swing.JButton();
            REMOVE = new javax.swing.JButton();
            jButton1 = new javax.swing.JButton();
            TScrollPane = new javax.swing.JScrollPane();
            Table = new javax.swing.JTable();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Names");
            setBackground(new java.awt.Color(0, 51, 51));
            Panel.setBorder(javax.swing.BorderFactory.createTitledBorder("List of Names"));
            ToolBar.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 1, 1, 1));
            ADD.setText("ADD");
            ADD.setToolTipText("");
            ADD.setBorder(new javax.swing.border.SoftBevelBorder(javax.swing.border.BevelBorder.RAISED));
            ADD.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    ADDActionPerformed(evt);
            ToolBar.add(ADD);
            EDIT.setText("EDIT");
            EDIT.setToolTipText("");
            EDIT.setBorder(new javax.swing.border.SoftBevelBorder(javax.swing.border.BevelBorder.RAISED));
            EDIT.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    EDITActionPerformed(evt);
            ToolBar.add(EDIT);
            REMOVE.setText("REMOVE");
            REMOVE.setToolTipText("");
            REMOVE.setBorder(new javax.swing.border.SoftBevelBorder(javax.swing.border.BevelBorder.RAISED));
            REMOVE.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    REMOVEActionPerformed(evt);
            ToolBar.add(REMOVE);
            jButton1.setText("jButton1");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            ToolBar.add(jButton1);
            rows=new Vector();
            cols= new Vector();
            cols=mJT.addColumns(colName1, cols);
            tableModel =new DefaultTableModel();
            tableModel.setDataVector(rows,cols);
            Table.setModel(tableModel);
            TScrollPane.setViewportView(Table);
            org.jdesktop.layout.GroupLayout PanelLayout = new org.jdesktop.layout.GroupLayout(Panel);
            Panel.setLayout(PanelLayout);
            PanelLayout.setHorizontalGroup(
                PanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(ToolBar, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 210, Short.MAX_VALUE)
                .add(TScrollPane, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 210, Short.MAX_VALUE)
            PanelLayout.setVerticalGroup(
                PanelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(PanelLayout.createSequentialGroup()
                    .add(ToolBar, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 34, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(TScrollPane, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 159, Short.MAX_VALUE))
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
                    .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .add(Panel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
                    .addContainerGap(29, Short.MAX_VALUE)
                    .add(Panel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap())
            pack();
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
            System.out.println(h.toString());
    public void updateNamesTable (int id, String na){
         Integer i2 = new Integer(id);
         Object o2 = (Object)i2;
         if (h.containsKey(o2)){
            Name a = (Name)h.get(o2);
            a.name = na;
            h.put(o2,a);
         else {
             Name aa = new Name();
             aa.name=na;
             h.put(o2,(Object)aa);
        private void EDITActionPerformed(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
            String name = Table.getValueAt(Table.getSelectedRow(),0).toString();
            int rowNum= Table.getSelectedRow();
            Integer i = new Integer(rowNum);
            Object o = (Object)i;
            updateNamesTable (rowNum, name);
            //public NameEditor(Name n,  Hashtable h, int id)
            NameEditor re = new NameEditor((Name)h.get(o), h, rowNum );
            re.setVisible(true);
        private void REMOVEActionPerformed(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
            mJT.deleteRow(Table.getSelectedRow(), rows, Table);
        private void ADDActionPerformed(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
            mJT.addRow(rows, Table);
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NamesGUI().setVisible(true);
        // Variables declaration - do not modify
        javax.swing.JButton ADD;
        javax.swing.JButton EDIT;
        javax.swing.JPanel Panel;
        javax.swing.JButton REMOVE;
        javax.swing.JScrollPane TScrollPane;
        javax.swing.JTable Table;
        javax.swing.JToolBar ToolBar;
        javax.swing.JButton jButton1;
        // End of variables declaration
    public class NameEditor extends javax.swing.JFrame {
        Hashtable h;
        Name n;
        int id;
        /** Creates new form NameEditor */
        public NameEditor() {
            initComponents();
        public NameEditor(Name n,  Hashtable h, int id) {
            this.h=h;
            this.n=n;
            this.id=id;
            initComponents();
            NameField.setText(n.name);
            jTextField2.setText(n.weight);
            jTextField1.setText(n.height);
            setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        private void initComponents() {
            NameLabel = new javax.swing.JLabel();
            NameField = new javax.swing.JTextField();
            SaveBut = new javax.swing.JButton();
            jLabel3 = new javax.swing.JLabel();
            jLabel4 = new javax.swing.JLabel();
            jTextField1 = new javax.swing.JTextField();
            jTextField2 = new javax.swing.JTextField();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Name Editor");
            getAccessibleContext().setAccessibleName("Name Editor");
            NameLabel.setText("Name: ");
            NameField.setEditable(false);
            NameField.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    NameFieldActionPerformed(evt);
            SaveBut.setText("SAVE");
            SaveBut.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    SaveButActionPerformed(evt);
            jLabel3.setText("Height");
            jLabel4.setText("Weight");
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING)
                        .add(layout.createSequentialGroup()
                            .addContainerGap()
                            .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                                .add(layout.createSequentialGroup()
                                    .add(jLabel4)
                                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED))
                                .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
                                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                                        .add(jLabel3)
                                        .add(NameLabel))
                                    .add(16, 16, 16)))
                            .add(17, 17, 17)
                            .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                                .add(NameField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 138, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING, false)
                                    .add(org.jdesktop.layout.GroupLayout.LEADING, jTextField2)
                                    .add(org.jdesktop.layout.GroupLayout.LEADING, jTextField1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 46, Short.MAX_VALUE))))
                        .add(org.jdesktop.layout.GroupLayout.LEADING, layout.createSequentialGroup()
                            .add(127, 127, 127)
                            .add(SaveBut)))
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(NameLabel)
                        .add(NameField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .add(30, 30, 30)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(jLabel3)
                        .add(jTextField1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .add(12, 12, 12)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(jLabel4)
                        .add(jTextField2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 27, Short.MAX_VALUE)
                    .add(SaveBut)
                    .addContainerGap())
            pack();
        public void updateNameTable (){
         Integer i2 = new Integer(id);
         Object o2 = (Object)i2;
         h.put(o2,n);       
        private void SaveButActionPerformed(java.awt.event.ActionEvent evt) {                                       
    // TODO add your handling code here:
            n.height= jTextField1.getText();
            n.weight = jTextField2.getText();
        private void NameFieldActionPerformed(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NameEditor().setVisible(true);
        // Variables declaration - do not modify
        javax.swing.JTextField NameField;
        javax.swing.JLabel NameLabel;
        javax.swing.JButton SaveBut;
        javax.swing.JLabel jLabel3;
        javax.swing.JLabel jLabel4;
        javax.swing.JTextField jTextField1;
        javax.swing.JTextField jTextField2;
        // End of variables declaration
    }

  • CreateInsert puts table scroll at the top position

    Hi all,
    I've found a strange behaviour with ADF Tables with editingMode="editAll":
    Clicking the CreateInsert button always puts the table scroll at the top position, which is really annoying. Does anyone know how to solve it?
    Thanks in advance
    Barbara
    Version
    ADF Business Components 11.1.1.56.60
    Java(TM) Platform 1.6.0_18
    Oracle IDE 11.1.1.3.37.56.60

    In my case, rows don't have to be added as the last in the table, just next to the current row. Anyway, your link gave me a clue: use displayRow="selected" in af:table instead of the default value (displayRow="first") turns the selected row always visible, which is exactly what I wanted : )
    Thanks, Shay!

  • Flowable form not flowing to second page - flowing to top of first page

    The content on my Dynamic flowable form flows to the top of my initial, first page, instead of the second page.
    I have created a form where the subforms are set to flowed, flow direction is either Top to Bottom or Western Text and the "Allow page breaks within content" boxes are checked. Nothing is set to positioned. In my Pagination tab, my Place is set to "Following Previous" and my After is set to "Continue Filling Parent." I have other forms which were created by other people before I got here that have similar functions, and I've gone in and checked them against this form, and I can't see any differences in the settings. I've created a 2nd master page, thinking the content didn't have anywhere to flow to and maybe that was the problem, but that doesn't help.
    I've been playing lightly with Livecycle forms over the last few years and have never had content flow to the top of the same page instead of to a second page. Of course, this is my first time trying to create a form relatively from "scratch," so I'm sure I've done something wrong, but am not sure what. I've attached an imagine of what it looks like at the top of my page after I test to make things expand.
    Any thoughts? Thanks!

    On a flowable form, you don't have a page2 exactly. You keep putting everything on page1 and it automatically flows to the next page and the next page. Getting rid of an extra page requires looking in the hierarchy and delete everything on that page including the subform which you have to delete last. Sometimes it's really stubborn and I don't know enough about subforms to know why that is but maybe someone else will jump in to tell us both. You'll get a warning telling you that you are trying to delete the last subform on the page and just say ok.
    Now, if you already have a page 2 and stuff on it, open a blank, control all, then control C and paste all that stuff onto the blank, then delete everything off page2 and then delete page2. Go to the blank and repeat the copy process for everything there and paste it onto page one. It should flow over several pages depending on how many objects you have. Then you can close the blank and get rid of it. It's just an object holder while you get your original documents extra pages deleted.
    Like I said, I create a blank form, change the Page1 subform to "Flowed" and then save that as a LiveCycle template called "Flowable Layout" or something like that. Then I look at the form I need to make and decide if it needs to flow or not and use a static template for ones that don't and my flowable template for those that do. Knowing ahead of time that you'll need it to flow saves from laying out the form twice. So I just let it flow from top to bottom and set my pieces of layout into positioned subforms. Then it's also easy to show or hide the subforms as needed. I use alot of buttons (visible screen only) to show hidden subforms that aren't needed until someone selects that section. It's all just great fun......

  • How to put title or labels on top of row headding of Cross Tab

    Hello..
                 I created one cross tab.I put labels in the top row,these labels are coming only in first page only,I tried repeat row label also,But not working....I need all the labels in all pages..

    Hi,
    In XI r3 - on a  cross-tab table under the page layout properties there is a  "Repeat header on every page" option. Is this checked?
    Regards
    Alan

  • Keeping a Jframe on top of an applet on a webserver.

    Hi
    I am developing an applet, which must display a Jframe, when somebody clicks on a JPanel. The JFrame must always be on top of the applet. I've tried to use both the .setAlwaysOnTop and .toFront when the window is deactivated.
    The applet is running on a boa webserver, which is running on a PowerPc with uClibc. When I click on the JPanel the JFrame does not display. The Java console issues a Java.security exception saying that setAlwaysOnTop is not allowed.
    I think I need to sign the applet. When I do this is can run the applet locally giving no problems, but when I do it on the web server I get the exception again. What am I doing wrong? Should I pass something along with the applet, like a cerficate or something?
    Hope that anyone can help me...
    Regards Lars

    1) Have you gone through the Sun Swing tutorials on how to create and show JFrames?
    2) Usually when an app shows another window, that second window is a dialog such as a JDialog. Once you get your code working, you may wish to consider this.
    3) If your app isn't too large, you may wish to post your code here -- with code tags of course. If it is too large, then you would do well to whittle it down to a smaller size, enough to compile and show your problem.
    4) If you are using NetBeans to generate your Swing code, I advise you to not do this, to first learn how to code Swing before trying to use this tool.
    Good luck.

  • How can I get New Window back to the top as first choice? v4.0 has swapped it with New Tab.I'm using v4.0 on a Mac.

    I'm used to clicking on File and having New Window as my first choice. New Tab is now at the top of the list. My brain is slow to make the transition to the new format and I keep choosing New Tab in error. Can I swap them?

    Hi hopefromct,
    As someone who uses predictive typing constantly when I use my iPhone I can understand not having it available would be upsetting. Let's see if we can get you back up and running.
    You can activate predictive typing by going to Settings > Keyboard > Predictive and turn it on. See this help article for reference - 
    Enter text - iPhone
    If you have just hidden the predictive text suggestions by moving the suggestions bar down you will see just the gray top of that bar. You can drag it up again to regain the view.
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Font Names at top of first help topic

    I'm using Robohelp for Microsoft Word X5.0.1. For all of our
    legacy apps, we have been generating our help file from Word
    documents in the WinHelp 4 format. I am currently involved with a
    long term project upgrading all of our legacy applications to
    Visual Basic .Net 2005. VS2005 doesn't support the WinHelp 4 format
    - it supports HTML Help (or CHM file format). I took the source
    files we have been using to generate the WinHelp 4 document and
    tried to generate a CHM file. However at the top of the first topic
    in each document, several names of fonts get generated into the
    text piece of the CHM file.
    Has anyone experienced this? How can I go about getting past
    this issue?
    Thanks in advance for your help!
    Chris

    A Search on "font names" brought me to
    this
    previous thread.
    Oh no, 'twas nothing; anyone can do that magic...
    Good luck,
    Leon

  • How can I put a vertical menu ON TOP OF the background image?

    I've taken a screenshot to describe my problem.
    http://i48.tinypic.com/10ndeg4.jpg
    I want to put the menu on top of the background image. Compare it to placing another image on top of the background image. HOW on earth can I do this?

    Did you try putting the image in a <div> and setting the background image for the <div> with CSS.  Then within the <div> place your menu.
    Just a thought.
    LJD

  • How to keep Allways JFrame on top of JApplet?

    I have Japplet runs on the client side. after pressing buton on the applet
    a jframe pops up. but if i click on the japplet it hides under japplet.
    Any ways to keep this jframe on the top ? if i use jframe.keep always on the top will thought security exception. I know applets have some security issue to access local OS resources or permission. just need to know any possibitly to achive this somehow?
    thnx

    I don't think this is possible. Others feel free to correct me. Perhaps try signing the applet or setting the permissions in the policy file.
    You can use a JInternalFrame to keep the frame within the JApplet.

  • Thief can put a passcode protected phone offline without first having to access the phone.

    Hello there,
    my daughter's passcode protected i phone was stolen the other day. the first thing the thief did is to put the phone offline, thereby effectively disabling the find my iphone feature. Quite frankly, i do not understnad why the design allows this to happen. I would suggest that putting the phone offline should only be possible after you have entered the correct passcode. If not, the find my i phone feature is in effect of no use (to the rightful owner)
    regards,
    Robert Vornis

    vornis wrote:
    Hello there,
    my daughter's passcode protected i phone was stolen the other day. the first thing the thief did is to put the phone offline, thereby effectively disabling the find my iphone feature. Quite frankly, i do not understnad why the design allows this to happen. I would suggest that putting the phone offline should only be possible after you have entered the correct passcode. If not, the find my i phone feature is in effect of no use (to the rightful owner)
    regards,
    Robert Vornis
    So, you want it set up so that you have to enter a passcode in order to turn off the phone. 
    Tell, me, what is the legitimate iuser supposed to do if the screen is not responding (which is the only way to enter a passcode), and the recommended troublehsooting step is to resest the iPhone?
    In your proposal, that user would be stuck with no way to reset their non-responsive iPhone.  So, they're supposed to do what, then?  Just buy a new one?  Go to the Apple Store to get the device fixed?  And what about those people that don't leave near an Apple Store?
    Requiring a passcode to turn off the phone is a very, very bad idea.

Maybe you are looking for

  • What does a "?" in a folder symbol mean on startup?

    I've seen a symbol (a question mark inside a folder - small at center of screen) at startup. It looks alarming, what does it mean? I've been having internet problems and have been changing configuration of my network - switching between ethernet and

  • Manual Reservations

    Dear All, When i am trying to create Manual reservations the system gives the following error: You entered an order whose category only permits automatic reservations. The following order categories do not allow manual reservations: 10 PP production

  • ANN: New Regular Expressions Sample

    Hi, Regular expressions introduced in Oracle 10g Database is one of the most powerful ways of searching, manipulating and transforming text data. Check out this new [url http://www.oracle.com/technology/sample_code/tech/pl_sql/regexp/dnasample/readme

  • Rebuild/Redesign FND_USER_RESP_GROUPS  view in 12.1.1

    Hi All, DB:11.1.0.7.0 Oracle Apps:12.1.1 OS:Red Hat Linux 4 86x64 Issue Description:"Switch Responsibility" (Top Hat) Takes Much Longer In Forms more than 40 seconds for LOV to populate. Did anyone try Rebuilding/Redesigning FND_USER_RESP_GROUPS view

  • Download software for PL/SQL

    Help! Can anyone tell me how to download the Oracle software, or order a free Oracle software CD ? I need to practice the PL/SQL at home. As some Oracle books explain, the readers can download the Oracle software from the Oracle.com. But I failed. SO