Content in topic disappears

After edting a few topics, the content in the window
disappears. If I open other topics, the window is also blank.
Copying and pasting seems to encourage this behavior. I have to
quit RoboHelp. The WYSIWYG display is okay.
I'm using RoboHelp HTML 5.0.2 with Word 2003 in XP.

Welcome to the forum.
If you do a search you will find this is something that a
number of people have encountered, myself included. It seems to
happen for a while and then you can go days, weeks, months without
it, then back it comes.
I have not seen it occur in RH7.
No known way to prevent it.

Similar Messages

  • Show Navigation pane link in topics disappears

    When I click on a help link the topic with the navigation
    pane link is shortly displayed and is then replaced with the topic
    and the TOC in the left pane. I want to display the topic with the
    navigation pane link.

    Clarification of the WebHelp generation process seems to be
    called for.
    The .htm file that appears in the "Select Output Folder and
    Start Page" field at the top of the first "WebHelp General -
    WebHelp" dialog is the file in which RH will place all the frameset
    and browser information needed to display the three frames (toolbar
    pane, left-hand TOC/Index/Search navigation pane, and right-hand
    topic pane). (The "Default Topic" field, in the same dialog, tells
    RH which actual content page/topic to display when that start page
    is launched.)
    The direct launching of any other topic (you double clicking
    the filename or R&D calling it in the application) will result
    in one topic pane being displayed for that topic, with the "Show"
    button provided to switch over to the three-pane frameset.
    However, launching a specific topic
    indirectly through the start page will display that page
    with the three-pane format. The call from the application would
    then be StartPage.htm#DestinationPage.htm. If you want to open the
    same topic at a prearranged bookmark, the call would be
    StartPage.htm#DestinationPage.htm#BookmarkSection.
    Good luck,
    Leon

  • My software is updated to 3.0.2 but I still have the same problem. My content keep on disappearing. Any suggestions? Apple TV, iOS 5.0.1 and windows 7

    My software is updated to 3.0.2 but I still have the same problem. My content keep on disappearing. Any suggestions?
    Apple TV 1st gen., iOS 5.0.1 and windows 7.

    Thank you for your reply. I tried but it didn't work. I also tried rebooting the atv. Any other suggestions?

  • Help with JTable - content of cell disappears when selected

    Hello,
    I have a jTable and I have created a custom cell renderer. It does what it's supposed to do (which is set the background color of all cells with null or "" value to red - as an indication to the user that b4 proceeding he/she has to fill in this cells). The problem is that when I select a red cell, it becomes white and the text value it contains disappears. When I double click I can start typing in a new value.
    I would appreciate any hint why this happens? Ideally I would like the cell to keep its color when clicked or double-clicked and its value, and only when i'm done editing its content and it's not null or empty string to become white.
    I'm including majority of my code (some automatically generated code from Netbeans is not included).
    Thank you very much,
    Laura
    public class DataNormalisation extends javax.swing.JFrame {   
        JTextArea txt=new JTextArea();
        public Object[][] DataSummary;
        public Vector<String> colName;
        MainF p;
        String[] ExpNames;
        /** Creates new form DataNormalisation */
        public DataNormalisation(String[] EN, MainF parent) {
            p=parent;
            ExpNames=EN;
            colName= new Vector<String>();
            colName.add("Sample Name");
            colName.add("Replicate Group");
            DataSummary=new Object[ExpNames.length][2];
            for (int i=0;i<ExpNames.length;i++){
                DataSummary[0]=ExpNames[i];
    initComponents();
    this.jTable1.getTableHeader().setReorderingAllowed(false);
    TableColumn column = jTable1.getColumnModel().getColumn(1);
    column.setCellRenderer(new CustomTableCellRenderer());
    private void initComponents() {
    jScrollPane1 = new javax.swing.JScrollPane();
    jTable1 = new JTable (new DataModel());
    jButton1 = new javax.swing.JButton();
    jButton2 = new javax.swing.JButton();
    jLabel1 = new javax.swing.JLabel();
    jLabel2 = new javax.swing.JLabel();
    jLabel3 = new javax.swing.JLabel();
    setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
    setTitle("Data Normalisation");
    jTable1.setAutoCreateRowSorter(true);
    jTable1.setCellSelectionEnabled(true);
    jScrollPane1.setViewportView(jTable1);
    // Variables declaration - do not modify
    private javax.swing.JButton jButton1;
    private javax.swing.JButton jButton2;
    private javax.swing.JLabel jLabel1;
    private javax.swing.JLabel jLabel2;
    private javax.swing.JLabel jLabel3;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTable jTable1;
    // End of variables declaration
    class DataModel extends AbstractTableModel {       
    class TML implements TableModelListener{
    public void tableChanged (TableModelEvent e){
    txt.setText(""); // Clear it
    for (int i=0;i<DataSummary.length; i++){
    for (int j=0; j<DataSummary[0].length;j++){
    txt.append(DataSummary[i][j] + " ");
    txt.append("\n");
    public DataModel(){
    addTableModelListener(new TML());
    @Override
    public void setValueAt(Object val, int row, int col){
    DataSummary[row][col]=val;
    fireTableDataChanged();
    @Override
    public boolean isCellEditable(int row, int col){
    return (col != 0);
    public int getRowCount(){
    return DataSummary.length;
    public int getColumnCount(){
    return colName.size();
    public Object getValueAt(int row, int column){   
    return DataSummary[row][column];
    public String getColumnName(int col) {           
    return colName.get(col);
    class CustomTableCellRenderer extends DefaultTableCellRenderer {       
    @Override
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected,
    boolean hasFocus, int row, int column) {
    Component cell = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
    if (value == null || value.equals("")) {
    cell.setBackground(Color.red);
    } else cell.setBackground(Color.white);
    return cell;

    Ideally I would like the cell to keep its color when clicked or double-clicked Not sure why is changes color when you click on the cell.
    But when you double click the editor is invoked, which is a JTextField and its background is white by default.
    The code you posted doesn't help because its not executable.
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    And don't post NetBeans generated code, because we don't use IDE to write GUI code.
    Also, why did you create a custom TableModel. The DefaultTableModel will store your data for you.

  • The contents of Spaces disappears after long inactivity!

    OS X 10.7.2, 10 virtual spaces with assigned apps accessed as Ctrl1-Ctrl9. Everything’s definitely fine as long as I keep switching between them. If spaces are not accessed fro a certain (? maybe 30 minutes, maybe 2 hours - unknown), their contents... auto-disappears!   Switching to a space results in a blank wallpaper, with the upper menu (near the Apple logo) containing the name of the recent app you just switched from. Mission Control would demonstrate all spaces abandoned >1 hour ago as empty! No minimized windows (as long as the Expose for the app cannot be shown - we are not in that app yet! The space “forgot” about the app being there), nothing.
    Apps are demonstrated in the Dock as active, in the Application Switcher (e.g. Cmd+Tab) as running, and whenever summoned by clicking through either of these ways (or through Launchpad) immediately re-appears as they should be. One at a time though, all others need to be re-clicked likewise. For whatever apps that do not have “neighbors” on their desktops, e.g. occupy the whole space even if in different windows, I’d’ve never noticed the problem if I used Dock or Cmd+Tab to switch APPS. I do need to switch SPACES though, as 1) this is so easy with keyboard shortcuts 2) each space’s combination is important, e.g. Outlook is coupled to Finder on Space etc.
    This happens to ALL apps including Finder -whenever the give Space has been left unattended for long enough. This never happens to any apps when you keep switching.
    This only started to occur 3-4 days ago, the only event that took place about that time is MagicPrefs installation (could it possibly affect that?! OK, now I occasionally use 4-finger click for Cmd+W, so what?). This NEVER happened before, with spaces unattended for days keeping showing all the app windows as last left.
    System resources (CPU, RAM, HDD) on the iMac 2011 are abundant (<1% CPU used etc.). No external displays.
    Why could this happen to me, all of a sudden??? Thanks!

    iTunes v10.5.1b2 fixed it. Thank you all

  • Portal Content Created is disappearing/missing the next day!! NOde Synchron

    Hello SDN Portal Friends:
    Greetings!
    We have our DEV portal setup with 3 server nodes and a dispactcher. The dispatcher and two servers are running in PRoductive mode and one server in DEBUG mode. See below.
    *Dispatcher*:-- Productive Use: Yes
    Server0:-- Productive Use: Yes
    Server1:-- Productive Use: Yes
    Server2:-- Productive Use: Yes DEbug Use: Yes
    Then yesterday, we newly created a BI report iview, added it to a workset and added the ws to the role and role to a group and every one in that group were able to see the new work. and OK it is. Today morning, Alas! Everything disappeared. The iview, the workset, the role changes, all  went away. We are not not on VPN or any such thing. Plain network.with in the same domain.
    Some of our colleagues suspect it to be a node synchronization issue, which I am very ignorant about.
    Please, please, please think about this and help us understand it and solve the problem.
    YOur help is highly appreciated.
    Prasad Nutalapati

    Hi Prasad,
    I agree with Sushil, It must have been the PCD and/or Navigation Cache... These two caches also apply when you do not have a FPN, so in other words also for you scenario.
    What really confirmed this suspicion is your quote:
    Prasad V.Nutalapati wrote:
    > One good news. when we restarted the server the content came back OK. Surprise. we still don't know the reason. though.
    Cheers,
    B

  • Content on ATV Disappears and Reappears without Syncing

    The content on my Apple TV has been disappearing and reappearing without syncing. I have also been having the "firewall port 3689", "ATV not showing up in iTunes", and "this video format is not recognized/can't be played" errors. What is going on? These errors began this last week. I also upgraded to the most recent iTunes version and synced the ATV to upload some new TV shows that I purchased this last week. Is there a cause/effect here?
    Some details...
    1. I disabled all firewalls temporarily. Did not help.
    2. My ATV can connect to my router and stream content over the internet (trailers, etc)
    3. The ATV menu will not show some TV shows that are on the ATV drive. I know that they are there because when the ATV does briefly show up in the iTunes devise menu it has the expected amount of hard drive space free. Also, the missing shows will reappear without syncing. When the shows reappear I can watch them most of the time but other times I will get a video format conflict (they were purchased from itunes so I doubt that is a real error).
    4. Resetting the ATV, power cycling, and restarting the computer can temporarily fix the problem but it comes back.
    I believe that the error messages that pop up are not accurately describing the problems. Does anyone have any ideas?

    AppleTV supports H.264 codec with a maximum resolution of 720p (1280x720) at 24fps, or MPEG-4 with a maximum resolution of 720x432 at 30fps. Audio sound support is either AAC, MP3, Apple Lossless, AIFF, or WAV. Up to 7.1 digital surround channels can be encoded.
    For most of my older home movies, I have been using Anamorphic 850x480 (from standard-def DVD size of 720x480) with a bitrate of 2000kps (using open-source Handbrake to encode), with AAC+AC3 audio tracks, and they look almost as good as the original, but at about 1/3 the size. I don't have a HD Video camera, so I can't speak for HD sources - I'd probably keep it as close to 720p as I could though.

  • Why the painted content flash and disappear?

    I try to run a simple code example from java almanac site but the painted content just flash and disappear. Can any people help to find the reason? Thanks in advance.
    Below are the code:
    package font;
    import java.text.AttributedString;
    import java.awt.*;
    import java.awt.font.LineBreakMeasurer;
    import java.awt.font.TextLayout;
    import javax.swing.*;
    public class DrawParagraphDemo extends JPanel {
        public DrawParagraphDemo() {
            this.setPreferredSize(new Dimension(500,500));
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("Demo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            DrawParagraphDemo demo = new DrawParagraphDemo();
            frame.setContentPane(demo);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
            demo.drawParagraph((Graphics2D) demo.getGraphics(), "One line of test string", 400);
        public void drawParagraph(Graphics2D g, String paragraph, float width) {
            LineBreakMeasurer linebreaker = new LineBreakMeasurer(
                new AttributedString(paragraph).getIterator(), g.getFontRenderContext());
            float y = 0.0f;
            while (linebreaker.getPosition() < paragraph.length()) {
                TextLayout tl = linebreaker.nextLayout(width);
                System.out.println(tl);
                y += tl.getAscent();
                tl.draw(g, 0, y);
                y += tl.getDescent() + tl.getLeading();
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    Hi i have similar problem and i have followed Camickr's suggestion but it looks like my image was still being painted over here's my code
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    * FileChooserDemo2.java is a 1.4 application that requires these files:
    *   ImageFileView.java
    *   ImageFilter.java
    *   ImagePreview.java
    *   Utils.java
    *   images/jpgIcon.gif (required by ImageFileView.java)
    *   images/gifIcon.gif (required by ImageFileView.java)
    *   images/tiffIcon.gif (required by ImageFileView.java)
    *   images/pngIcon.png (required by ImageFileView.java)
    public class Asst4 extends JPanel
                                  implements ActionListener {
        static private String newline = "\n";
        private JTextArea log;
        private JFileChooser fc;
         private JPanel display,button;
         JButton load,grey,color;
         private Image image;
         static JComponent newContentPane;
        public Asst4() {
            super(new BorderLayout());
            //Create the log first, because the action listener
            //needs to refer to it.
              display=new JPanel();
              display.setOpaque(true);
              button=new JPanel();
              load=new JButton("Load Image");
              grey=new JButton("Greyscale Image");
              color=new JButton("Color Image");
              load.addActionListener(this);
              //display.setBackground(Color.BLACK);
              //System.out.println("displayable: "+isDisplayable()+" visible: "+isVisible()+" valid: "+isValid());
              //System.out.println("displayable: "+display.isDisplayable()+" visible: "+display.isVisible()+" valid: "+display.isValid());
              display.setSize(500,500);
              button.add(load, BorderLayout.WEST);
              button.add(grey, BorderLayout.CENTER);
              button.add(color, BorderLayout.EAST);
              add(button,BorderLayout.NORTH);
              add(display,BorderLayout.CENTER);
              setVisible(true);
        public void actionPerformed(ActionEvent e) {
                   //Set up the file chooser.
                   if (fc == null) {
                        fc = new JFileChooser();
                        //Add a custom file filter and disable the default
                        //(Accept All) file filter.
                        fc.addChoosableFileFilter(new ImageFilter());
                        fc.setAcceptAllFileFilterUsed(false);
                        //Add custom icons for file types.
                        fc.setFileView(new ImageFileView());
                        //Add the preview pane.
                        fc.setAccessory(new ImagePreview(fc));
                        //Show it.
                   int returnVal = fc.showDialog(Asst4.this,"Load Image");
                   //Process the results.
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        Toolkit toolkit = Toolkit.getDefaultToolkit();
                        image = toolkit.getImage(file.getAbsolutePath());
                        MediaTracker mediaTracker = new MediaTracker(this);
                        mediaTracker.addImage(image,0);
                        try {
                           mediaTracker.waitForID(0);
                        } catch (InterruptedException ie) {
                           System.err.println(ie);
                           System.exit(1);
                   } else {
                        System.out.println("Loading cancelled by user." );
                   fc.setSelectedFile(null);
        protected void paintComponent(Graphics g)
              super.paintComponent(g); // this paints the background
              if(image!=null)
              drawImage(image);
        private void drawImage(Image image){
              Graphics2D g=(Graphics2D)display.getGraphics();
              g.drawImage(image,0,0,null);
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            JDialog.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("Compsci_375_Assignment_4");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            newContentPane = new Asst4();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.setBounds(50,50,500,500);
               //frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }Can anyone tell me what's going on and also why if i pack the frame my display panel is disappear?
    Thanks a lot

  • Content of iview disappear when using imbedded isolation method

    Hi
    I have a strange problem with one of me iviews....
    I have developed an iview that uses marquee html tag in order to show moving text in a left to right direction.
    I set the Iview isolation method to url and added it to a page, the problem is whenever I choose the text inside I get a scroll bar that hides some of the text.
    In order to get rid of the scroll bar I changed the iview isolation method to imbedded but then the content of the iview disappear for some users.
    I guess it has to do with explorer definitions , because on my explorer I can view the iview content.
    I have compared all explorer definitions between me and the user that cant view content but still he and some others cant view content.
    do any of u have some suggestions???
    Thanks
    Nitsan

    Hi Harish,
    If you are looking in for some javascript code just see if this can help you.
    <script language="Javascript">
    function ToPrint() {
    self.print();
    </script>
    and the button define it as
    <hbj:button
    id="Print"
    text="Print"
    tooltip="Print"
    onClientClick="ToPrint()"
    design="STANDARD" />
    This should print the contents. Instead of window.print(), self.print() should work.
    Hope this helps,
    Regards,
    Uma.

  • Folder content (Application, Utilities) disappear after Software Update

    Please help!
    Folder content of Application and Utilities disappeared! Applications still working through shortcuts and Dock.
    After performing another Software Update (iTunes 8.0, Security Update 2008-006 (PowerPC), Quicktime 7.5.5), a task that worked for many years on the same formated G5, the multiple errors listed in the log. Please note that I did this through Remote Desktop from a distant Mac.
    Can Disk Utility fix this? Looks like the Update did not finish well.
    Please help!

    Hi Phil, and a warm welcome to the forums!
    I think Francine's page will cure this, it just picked up the Hidden Bit, happens to Disks and/or folders...
    http://homepage.mac.com/francines/articles/invisible.html
    Or use this...
    show hidden files in OSX Finder
    Open the terminal and type or copy/paste:
    defaults write com.apple.finder AppleShowAllFiles -bool true
    Reverting to the default of NOT showing hidden files:
    defaults write com.apple.finder AppleShowAllFiles -bool false
    Restart or Force Quit Finder required to take effect.

  • Get back the folders and contents that have disappeared

    All of a sudden subfolders of my inbox for one of my accounts have disappeared, even though I can still see them (and their contents) when I access that account through outlook and the provider's webmail. I want to see them (and their contenets) in the thunderbird left hand panel once again.

    right click the account in the left pane and select subscribe. Are the folders subscribed?

  • Contents of Stacks disappear!? Why?

    Hi,
    I was thinking maybe some of you guys where experiencing something similar.
    Sometimes, when my iMac (new, Aluminum) has been on for a while I click on the "stacks" on the dock, and the stack appears to open, but all you see is a "shadow" where the name of the file should be and you see NO icons.
    If the stack is too big (and actually expands as a window) when you open it, its fine. To solve the issue, I have to restart the iMac.
    Anyone? Any ideas?

    I get that problem from time to time.
    Some part of the dock stops rendering things generally and I have also noticed the bitmap that the dock displays disappear.
    You don't need a full restart though. Logout and login again and the dock will restart.
    -Andy

  • XML Content Editing - link disappeared

    Greetings,
    We have recently upgraded our portal from SP11 to SP19, and several KM functionalities changed.
    Beforehand we had an "edit" link while displaying XML forms (left bottom corner), and clicking the link opened an XML editor for that specific document.
    I am 99% sure that this is one of settings under /etc/xmlforms/... folders, which was overwritten during the upgrade, and that this link appeared in SP11 becuase of customization.
    Did anyone ever had to implement such a functionality?
    Thanks in advance!

    Hi Ivan,
    In my opinion this upgrade should not affect on your customized  xml form or KM content. But if in upgrade the template is deleted or overwritten by transporting the old data then your expected result will hamper.
    As you are mentioning about  "/etc/xmlforms/.." folder structure; it is a folder in which actual xml code of your xml form template is stored & we don't  have to do any changes here.
    If you have created edit button functionality  in your code then just look it again. And if you have made provision of it in xml form only then check it the form again & add the ' edit ' functionality by opening it in xml form builder.Or transport the (backup) old xml form templates again by ice package.

  • When booting for the day, all contents of Mail disappear second time

    When I signed on today, mail was essentially gone. I was asked if I wanted to learn about mail and I answered no. Then opened it and was asked for a password for my .MAC account, which I haven't used for years. Configuration was gone. This happened last week and I reconfigured but lost all of the folder contents. Even tried from my backup hard drive and there was nothing there.
    In addition today, my desktop had been reorganized.
    I'm the only user.
    Is anything retrievable and can this be prevented. I've been happy with it for several years.

    I don't use Mail, so I'm just using this to bump your msg up the line - hopefully someone who does can come to the rescue.
    I do use Outlook, however, and I know that there is an option to download headers only - is there something like this in Mail?
    Good luck - hopefully someone will respond (sometimes people just tend to skip over items with long message headers)...
    Clinton

  • Flash content appears then disappears

    I am having problems with Flash Player. On a website it will briefly show what is there and then revert to the page backgroung color. If I point at the content the arrow changes to a hand and I can click and proceed. However that is because I know what is on the page (Hp.com - support and downloads - drivers). I also went to http://www.adobe.com/shockwave/welcome/  and clicked the link to test the Flash Player and I see the version info and a broief flash across the top but I do not see the swirling F. Then I see a Get a Free PC Health Check box come up. I downloaded and tested FireFox and had no problems there. I am using IE9 32-bit on Windows 7 Pro SP1 32-bit. My Flash version is 11.1.102.55. In Internet Options - Programs - Manage Addons I have Shockwave Flash Object version 11.1.102.55 enabled. I also have Shockwave ActiveX Control version 11.6.3 enabled.

    Windows: how do I update the device driver for my video/display adapter?
    How do I disable or enable hardware acceleration?

Maybe you are looking for