Importing TOC from other RoboHelp Project

Is it possible to import a TOC from one RoboHelp project into
another one? I searched the help file but couldn't find any
information on it.
TIA.

Hi Rick,
Thanks. I figured a way around it by importing the entire
book again and not overwriting the files I already had in the
project. Basically we have 4 manuals that share the same chapter.
It's a long chapter with alot of sections and I didn't want to have
to import that into each RoboHelp project and "clean" it up for
each manual. So I did it for one manual and then just copied the
files to the other manual folders and did a quick find and replace
for text I needed to change (manual name). However, the TOC for
that section wasn't being created because I omitted it from the
book. And I was too lazy to create a TOC by hand for that section.
But I think I have a workaround that will still have some clean up
but saves time over creating the whole TOC. Make sense:-).
Anna

Similar Messages

  • Can I import HTMLs from inside the project and use as portlet page ?

    As you know, I am using Java Studio Creator 2 Update 1 for my current portal project. I have created JSR-168 JSF Portlet Project for my portlet development.
    As I have some html pages ready for my development,
    Can I import HTMLs from inside the project and use as portlet page for my project?
    I did the followings steps:
    1: In side the project - File -> Add Existing Item -> Web Page ( imported test.html page from my local folder)
    2: Let it convert some of the tags for me ( so now it becomes - �test.jsp� )
    3: Set it to initial view.
    4. A default portlet page � newPortletPage.jsp is still there with no initial view.
    Now after doing this, No Visual Designer and Properties window available to for that �test.jsp� page. Though it allowed me to �build� the project successfully.
    When I build and run the portlet application, got the error message �Error occurred in portlet!� on Pluto Portal. Please advice.

    You do not open fcpproject files. You don't double click or anything else. The files have to be in the correct folder structure in the Final Cut Projects folder and the application opens them automatically. Can you post screen shots of the Final Cut Projects folder and its location.

  • Using the Import utility from other users and going to a different schema

    I has a user today with rights
    Insert into XXXX.TABLE values(); Works just fine for another schema's table which has select,insert,update,delete.
    We tried to utiile the import utility from OTHER USERS
    Insert failed ORA-00942
    Do you want ot ignore all errors
    Even though we have rights to the schema under OTHER USERS.
    When connected as the owner it works fine.

    I've be trying to find a work-around to this issue & found this old post -- I'm having the same problem.
    I'm using Oracle 11g and SD 2.1.1.64.
    I have user A with a table that grants select,insert,update, and delete privs to user B. Logging into user B I, of course, can do inserts, deletes, etc. on the the table in user A's schema.
    When I use the import data feature to load data from a CSV file I can't get it to work while logged into user B. It does work fine if logged into user A. It looks like the issue may be that it doesn't put the schema prefix of "A." on the insert statements.
    Has anyone found a way to get around this issue yet?

  • How do i import contact from other sim to iphone5

    How do i import contact from other sim to iphone5

    i would suggest backing up with iTunes or iCloud. This link should help.
    http://support.apple.com/kb/ht1766

  • What does "Easily import photos from other applications" really mean?

    What does "Easily import photos from other applications" really mean in the Lightroom 4 features list? I also see it stated as "...from other software" as well. Yes, I understand the LR can import from Elements libraries but can't find any reference to other applications anywhere, not in the online help, not in the user guide, not in any videos on Adobe TV. It would be nice if LR could see into iPhoto or Aperture libraries but that doesn't appear to be the case. Is that assumption correct? What other applications can LR import from?

    Hello bbb34vball,
    Since that article didn't help, I would suggest trying the steps in this article next:
    iOS: Unable to import photos to computer - Apple Support
    If that doesn't resolve your issue, you may find more information by using another one of Apple's support resources - https://getsupport.apple.com/GetproductgroupList.action.
    Regards,
    Jeff D. 

  • Importing Slides from other Project

    Hi,
    I am trying to import a few slides from an existing project
    and the application stalls on me. (not responding) I tried it
    numerous times - same result. Is there a way around this problem???
    Thanks
    Trudy
    Canada

    Hi folks and welcome to our community
    Instead of Importing, have you tried opening a second
    instance of Captivate that has the project you want the slides from
    and copying the slides to the Windows Clipboard? You then paste
    into the destination project.
    Give that a go and see if it works somewhat better.
    Cheers... Rick

  • Importing packages from other projects

    Hey Folks,
    I have an abstract class in one project called Test, and I want a class in project Test2 to extend it. How do I figure out the proper name of the package that the abstract class is in to import it into the second project?
    Thanks,
    Tav

    so the problem I have now (i am using NetBeans, and included the other project in my libraries) is this:
    It is claiming that i am not overriding the abstract method getRandomNumbers() when i clearly am.
    public class MyRandom2 extends AbstractRandom {
        private int[] results;
        private static final int A = 48271;
        private static final int M = 2147483647;
        private static final int Q = M / A;
        private static final int R = M % A;
        private int state;
        MyRandom2()
           state = (int)System.currentTimeMillis()%A;
           results = new int[5];
           for(int a = 0; a < results.length; a++)
               if(state%2 == 0)
                  results[a] = nextInt();
               else
                  results[a] = -nextInt();
        private int nextInt()
            int tmpState = A * ( state % Q ) - R * ( state / Q );
            if( tmpState >= 0 )
                state = tmpState;
            else
                state = tmpState + M;
            return state;
        int [] getRandomNumbers()
            return results;
    }any ideas?

  • Import FrameMaker info new RoboHelp project with extendscript

    Hi,
    I have done the following in robohelp 11 from Adobe Technical Communication Suite 5
    1) select file|new|project
    2) select import tab
    3) Select the FrameMaker Documents option icon
    This works quit well. I get a new RoboHelp project.
    I would like to do the same via a RoboHelp extendScript but I can't get it to work.
    Does anyone have some hints or good exampels to be inspired from?
    Thanks
    Alex

    It does depend on how fancy you want to make it. Creating a GUI with
    file picker is quite a bit of work.
    But if you only want a script to create a new project and import an FM
    book, that's not too hard. For example:
    RoboHelp.newProject('', 'MyProject', 'C:\temp\rh\scriptproject',
    'MyProjectTitle',);
    RoboHelp.project.importFrameMakerDoc('D:\FM\FMBook.bk','FMFolderinRH','D:\FM\FMBookTOC.fm' ,'RHTOCName',true,'RHIndexName','RHGlossary');
    (Untested)
    Run RH via command line with the script name as parameter: robohtml.exe
    -x script.jsx
    There is not much information on ExtendScript in RoboHelp. You can find
    two introductory articles in the RoboHelp Developer Center to get you
    started: http://www.adobe.com/devnet/robohelp.html
    If you want to do something more advanced, I have a free RH library for
    extendscript to make working with scripts easier. It includes functions
    as reading/writing files, setting context sensitivity, saving settings
    and more. See
    http://www.wvanweelden.eu/product/robohelp-extendscript-library
    Kind regards,
    Willam

  • Importing bc4j from jar in project

    Hi,
    since we have a complex application, we want to group application modules logically into smaller modules (submodules), which must be combined to yield more complex modules. Every submodule lives in its own project, so reusing a submodule in a more complex project implies that that submodule must be imported into the project hosting the more complex appmodule.
    Within a project, as soon as a BC4J module has been created (call it the "base module"), the "import business components" option becomes avaiable. With this, BC4J can be imported, e.g. from a jar file.
    Everything works fine, as long as JDeveoper is not exited. The imported views, viewlinks, etc. can be used in the datamodel of the base module, and the tester runs neatly on the compex applicatoin module, as well for the native as for the imported views.
    After the project has been rebuilt, everything has been saved, and JDev is exited, on restart, the imported BC package is still visible, but all views and links belonging to it are now gone, since an error occurs loading the BC4J xml file (strange since at first the xml file could obviously be parsed without problem). I include the error trace at the end of this message.
    Even though an additional classpath to the imported jar file has been set, and a library containing the imported jar has been defined and added to the new project, the load error persists.
    If the bc4j are not imported from jar, but directly, no such error occurs!
    Is this a known problem (in Jdev 9.0.3.1035) and are there any workarounds?
    Alex
    Error trace:
    oracle.jbo.dt.objects.JboException: XML load error. Line number: 1
    Object: [name of imported bc4j xml file]
    Project: [name of project files are imported to ]
    Start of root element expected.
         void oracle.jbo.dt.objects.JboException.throwException(java.lang.String, oracle.jbo.dt.objects.JboNamedObject, java.lang.Throwable)
              JboException.java:81
         void oracle.jbo.dt.objects.JboPackage.loadFromXMLFile(java.net.URL, java.io.InputStream)
              JboPackage.java:727
         void oracle.jbo.dt.objects.JboBaseObject.loadFromXMLFile()
              JboBaseObject.java:1874
         void oracle.jbo.dt.objects.JboPackage.loadFromXMLFile()
              JboPackage.java:675
         void oracle.jbo.dt.objects.JboPackage.checkForLoad()
              JboPackage.java:363
         oracle.jbo.dt.objects.JboNamedObject oracle.jbo.dt.objects.JboPackage.findContainedObjectByName(java.lang.String)
              JboPackage.java:352
         oracle.jbo.dt.objects.JboNamedObject oracle.jbo.dt.objects.JboPackage.findObjectByName(java.lang.String)
              JboPackage.java:1480
         oracle.jbo.dt.objects.JboNamedObject oracle.jbo.dt.objects.JboApplication.findContainerChildObject(oracle.jbo.dt.objects.JboPackage, java.lang.String)
              JboApplication.java:733
         oracle.jbo.dt.objects.JboNamedObject oracle.jbo.dt.objects.JboApplication.findObjectByName(java.lang.String)
              JboApplication.java:642
         oracle.jbo.dt.objects.JboNamedObject oracle.jbo.dt.objects.JboApplication.findObjectByName(java.lang.String, oracle.jbo.dt.objects.JboPackage)
              JboApplication.java:614
         void oracle.jbo.dt.objects.JboObjectReference.loadResolveReferencesXML(oracle.jbo.dt.objects.JboBaseObject)
              JboObjectReference.java:179
         oracle.jbo.dt.objects.JboNamedObject oracle.jbo.dt.objects.JboObjectReference.getReferencedObjectInternal(oracle.jbo.dt.objects.JboBaseObject)
              JboObjectReference.java:89
         oracle.jbo.dt.objects.JboView oracle.jbo.dt.objects.JboViewReference.getView()
              JboViewReference.java:53
         java.lang.String oracle.jbo.dt.objects.JboViewReference.getImageLoc(boolean)
              JboViewReference.java:205
         void oracle.jbo.dt.objects.JboAppModule.addStructurePaneNodes(oracle.jbo.dt.system.SysStructureNode)
              JboAppModule.java:1372
         oracle.jbo.dt.system.SysStructureNode oracle.jbo.dt.objects.JboBaseObject.getStructurePaneNode()
              JboBaseObject.java:1627
         void oracle.jbo.dt.ui.main.bced.BceDefTree.addDefTreeObjectNodes(oracle.jbo.dt.objects.JboBaseObject, javax.swing.tree.MutableTreeNode)
              BceDefTree.java:80
         void oracle.jbo.dt.ui.main.bced.BceDefTree.setJboObject(oracle.jbo.dt.objects.JboBaseObject)
              BceDefTree.java:53
         void oracle.jbo.dt.jdevx.ui.JdxExplorer.setContext(oracle.ide.addin.Context)
              JdxExplorer.java:113
         oracle.ide.explorer.Explorer oracle.ideimpl.explorer.ExplorerManagerImpl.getExplorerForHost(oracle.ide.addin.View, oracle.ide.addin.Context)
              ExplorerManagerImpl.java:571
         void oracle.ideimpl.explorer.ExplorerWindowImpl.viewSelectionChanged(oracle.ide.addin.Context)
              ExplorerWindowImpl.java:222
         void oracle.ide.addin.AbstractPinnable.viewSelectionChanged(oracle.ide.addin.ViewSelectionEvent)
              AbstractPinnable.java:179
         void oracle.ideimpl.explorer.ExplorerWindowImpl.viewSelectionChanged(oracle.ide.addin.ViewSelectionEvent)
              ExplorerWindowImpl.java:207
         void oracle.ide.addin.AbstractView.fireViewSelectionChanged(oracle.ide.addin.ViewSelectionEvent)
              AbstractView.java:413
         void oracle.ideimpl.navigator.NavigatorWindowImpl.fireViewSelectionChanged(oracle.ide.addin.ViewSelectionEvent)
              NavigatorWindowImpl.java:717
         void oracle.ideimpl.navigator.NavigatorWindowImpl$3.viewSelectionChanged(oracle.ide.addin.ViewSelectionEvent)
              NavigatorWindowImpl.java:997
         void oracle.ide.addin.AbstractView.fireViewSelectionChanged(oracle.ide.addin.ViewSelectionEvent)
              AbstractView.java:413
         void oracle.ideimpl.explorer.BaseTreeExplorer.actionPerformed(java.awt.event.ActionEvent)
              BaseTreeExplorer.java:1677
         void javax.swing.Timer.fireActionPerformed(java.awt.event.ActionEvent)
              Timer.java:150
         void javax.swing.Timer$DoPostEvent.run()
              Timer.java:108
         void java.awt.event.InvocationEvent.dispatch()
              InvocationEvent.java:154
         void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
              EventQueue.java:337
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
              EventDispatchThread.java:131
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
              EventDispatchThread.java:98
         void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
              EventDispatchThread.java:93
         void java.awt.EventDispatchThread.run()
              EventDispatchThread.java:85

    There is a bug in 9.0.3 that occurs if the jar file you are importing is on a different drive letter than the one that your project is on. If the jar and your project are on the same drive then everything works ok. If they are not, the symptoms match the ones you are describing. The workaround is to relocate the jar file to the same drive. This has been fixed for future releases.
    Hope this helps.
    Ray

  • IMovie 10 Can NOT Import Files from Older iMovie Projects

    I have older iMovie projects on an external drive and want import/upgrade them to iMovie 10.
    After choosing the old projects, iMovie 10 examines the old projects for a while and then gave me a list of files that it cannot import. The files I remember on the very long list are .plist and iMovie project files.
    Should I be concerned?  In other words, is iMovie 10 now using a new file format that makes these files superfluous?  Will iMovie going to incorporate their information in the new architecture, or will some functionality be missing from the imported projects?
    I'm running iMovie 10.0.2 on OSX 10.9.2 on a 27" iMac.
    Thank you for your time and attention.

    I'm going through my old iMovie projects and importing them one-at-a-time into iMove '11 (ver 9.0.9, build 1795)
    I don't know the version of the projects that I'm importing but they have this directory structure and have file creation dates in 2007:
      Unfortunately, when I import them, I lose most of the editiing that from the old project:
    In case you can't read the area in red, it says:
    Notes about the imported project:
    All transitions wll be replaced by Cross Dissolves.
    Titles and music tracks will not be imported.
    Video effects will not be imported.
    Isn't there a way to import older iMovie projects in their entirety and completely intact?
    Thank you for your time and attention.
    - nello

  • Import video from an idvd project DVD.

    Is there a way to import video from a finished iDVD project on DVD back onto my G4? It was originally created in iMovie and I want to get it eventually into my iPhone. The DVD is the only copy, it wasn't backed up on mini DV.

    Try MPEG Streamclip (www.squared5.com). Open the DVD in Finder and drag .vob files from the VIDEO_TS folder into Streamclip's window.

  • How do use home sharing to import items from other iTunes library?

    Okay - the help section in iTunes is not helpful.  I am trying to import items from my girlfriend's library and vice versa.  We have home sharing turned on.  I can see her library and she can see mine.  According to the HELP section, I should be able to choose a cateogry i.e. MUSIC.  Then there is supposed to be a "Show" menu at the bottom of the iTunes window and I should choose "items not in my library" then select the items I want to import and click import.
    PROBLEM:  I can choose a category but there is no SHOW Menu at the bottom of the iTunes window which allows me to select items and import them into my library.
    Suggestions???

    Well I guess I am not sure now that you asked. 
    In ITunes - under "Preferences" I have Sharing turned on so it says sharing my library on local network.
    AND
    In ITunes - under "File" I have Home Sharing turned on.
    Does this answer your question?

  • How do I import music from other libraries on the same computer?

    We have four separate accounts created on our iMac for four different users. Each of these accounts has an iTunes library associated with it. I would like to be able to import music from one iTunes library to another. I would be grateful for any help!

    To give other users read-only access to your iTunes library, use the Sharing features of iTunes. Sharing works over the local network as well as on the same computer. See the built-in help for details.
    If you want to give full read/write access to more than one user, see the support article linked below.
    iTunes: How to share music between different accounts on a single computer
    There is a way to share the library without moving it to a secondary volume. If you really need to do that, ask for instructions.

  • Importing data from other system - cvs files

    hi
    What is the best way to import 3 cvs files from other accounting system
    The 3 files contains data about customers and few more custom fields that I need to create in Business one
    (more information about the cusomter)
    I need to import the files every day
    Thank you

    Hi Ofer,
    I read you need to do this import every day. With the DTW you have to do this manually(?).
    Another (however expensive) option is to use iBOLT from <a href="http://www.magicsoftware.com">Magic Software</a>.
    We also have a customer wich get's every day a few .csv files by email. iBOLT does get the .csv from the mailbox, does some preperation and imports the data into SBO. No user interaction required.
    Kind regards,
    Rowdy

  • ICR - Importing Data from Other SAP Systems for Reconcilaition

    Dear Ralph and Other Experts,
    At my current engagement we need to import data from a subsidiary separate SAP system for reconciliation. There are scenarios where one side of an Interco document is posted in the corporate system and the other half is posted in the subsidiary's system. The posts from the subsidiary are totaled by comp code account and trading part and then posted in the corporate system.
    This will make it challenging to run automatic rule assignments because scenarios will arise where one document in the subsidiary needs to be matched to many documents in the corporate system.
    I did some searching on changing the DataSource   in FBIC008 for certain company codes to file upload or external but cannot find documentation on how to complete the configuration or how this functionality it works. Has anyone used this functionality? Could somebody please explain or link me to a document about using this external or file upload functionality in the ICR system.
    Best,
    John S

    Hi Frank,
    Below are my thoughts, these are only conceptual and haven't had an opportunity to try these possibilities, also not sure if this is the right thing.
    1) Create an entry in DBCON using TCode: DBCO for the Database of system SAP2. Now in the application of SAP1 use the "SET CONNECTION" construct as the very first statement, so that consecutive SQL statements will point at the DB of SAP2.
    2) I have read somewhere that the Work Processes are connected to the Default database and i am not sure if you can change this setting, but if you can and provided you have have multiple application servers in your SAP1 landscape, then pick one of the application servers and change the settings on the WP to point at the DB of SAP2, you have the end users login to this particualr app server.
    3) If there are multiple app servers in SAP1 landscape, then choose one of the app servers and change the default database setting to point at DB of SAP2.
    Regards,
    Chen

Maybe you are looking for

  • Error while using ALSM_EXCEL_TO_INTERNAL_TABLE

    I am getting the exception  "Upload OLE" while using this FM to upload data from excel sheet into SAP system. It errors out at the following statement inside the FM - CREATE OBJECT obj_application 'Excel.Application'. Any pointers? Regards, Shivali

  • Web file not viewable on the Internet

    Hello, Folks, my web site that was designed with PHP language in Dreamweaver CS4 is not viewable on the Internet and I need help on how to fix this problem from any one that could help me resolve this issue. My web site hosts that I tried to use for

  • User name change prevents task completion in SP Workflow

    I have a workflow on a library including Infopath forms. Basically, user submits document, a group gets assigned a task and so on and so forth. I am using SharePoint 2010 and Infopath 2010 and used Designer for the Workflow. Recently, one of our user

  • I Can't lock an entity that has "OK" calculation status and "Published" review level

    The problem into the HFM aplication is that I have to lock the actual period but one entity has "OK" calculation status and "Published" review level; when I clic "lock" on the entity, the system send a message "The process Unit cannot be locked if it

  • Over 30 different language support

    Hi, My application must support over 30 different languages. Properties files seems to be very difficult to maintain. Has anyone used database based approach? E.g reading localized text from database to "dictionary object" when an application has sta