How to edit this help

I have inherited a project that has about four sub-folders
and a hundred odd HTML files.
Now I need to add a few pages to this help project, I can add
the individual help pages but the issue is how do I update the TOC
(toc_oc.htm) because when I open it in DW, I get the error:
"JavaScript required for this navigation system."
How do I update the TOC to reflect entries for pages that I
add?
If this were RoboHelp, things would be pretty simple, but in
DW I'm totally lost. Please advise.

> open it in DW, I get the error:
> "JavaScript required for this navigation system."
Guessing- that is what is visible IN the design view window,
it is not an
error message dialog box?
Then the entire table of contents page is a JavaScript, what
you are seeing
in design view is <noscript> JavaScript required for
this navigation
system</noscript>
Look in code view.
you will have to sort out how the nav script works and edit
by hand.
If you are lucky, there might be a copyright notice that you
can google to
get instructions about the script
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • I have a document in Tamil language scanned and saved in TDF format. How to edit this?

    I have a document in Tamil language scanned and saved in TDF format. How to edit this?

    try NeoOffice or OpenOffice. I don't know what apps you have. Pages might open it or TextEdit, but, again, I don't know. All I can do is suggest. If you are really a stickler for format,  if you're on that dell PC again, try saving the document as a .pdf and then putting it on the thumb drive.
    JB

  • HOW TO EDIT THIS MAP

    How do you edit this map? I want to remove the outer info and just keep the map.
    What is not seen is that this map sits in a checker board background in PS and it's a .gif file.
    What can I do??

    Hi there -
    The image you're working with is a transparent GIF. The checker pattern you're seeing when you open in it Photoshop represent the transparent pixeles in your image.
    To edit the map, you'll first need to change the color mode from Indexed Color to RGB or CMYK Color. Do this by going to Image > Mode > RGB Color.
    Now, you can take a selection tool (I'm using the Rectangular Marquee tool) and select the areas of the image you want to delete. Just drag your tool around an area of the image and hit Delete on your keyboard. Repeat this until you are happy with your result.
    If you want to have this image remain transparent, you can stop here and save it in a file type that supports transparency (such as PNG, GIF, or PSD).
    If you want to add a background, create a new layer in your Layers Panel and drag it below your map layer.
    Then, grab your Paint Bucket tool and fill the background with whatever color you want.
    There you go! Hope this helps!
    Cheers,
    Kendall

  • How to edit this to say (no live stream at this time instead of loading)

    <div id="content2_vid">
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="377" id="videoPlayer" name="videoPlayer" type="application/x-shockwave-flash" width="640"><param name="movie" value="http://video.domain.com/swfs/videoPlayer.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="allowfullscreen" value="true" /><param name="flashvars" value="&amp;videoWidth=0&amp;videoHeight=0&amp;dsControl=manual&amp;dsSensitivity=100&amp ;DS_Status=true&amp;streamType=live&amp;autoStart=true&amp;serverURL=rtmp://video.domain.c om/live/livestream" /><embed allowfullscreen="true" bgcolor="#000000" flashvars="&amp;videoWidth=0&amp;videoHeight=0&amp;dsControl=manual&amp;dsSensitivity=100 &amp;DS_Status=true&amp;streamType=live&amp;autoStart=true&amp;serverURL=rtmp://video.doma in.com/live/livestream" height="377" id="videoPlayer" name="videoPlayer" pluginspage="http://www.adobe.com/go/getflashplayer" quality="high" src="http://video.domain.com/swfs/videoPlayer.swf" type="application/x-shockwave-flash" width="640"></embed></object></div>
    How can you change this to where when the page is loaded it does not say (loading) and it will say (No live video streams) you can view archived videos.
    Is this on the server FMS Interactive in the configuration or can it be done from the code inserted above?
    Any help/advice would be great.
    Thanks

    The code above is what is pesently on the server, what inside this code would need editing?
    Presently it just states:
    loading...
    I would like for it to say (no live video stream) an image would be great (how do I change the code)?
    Do you know what part of this needs to be added/modified to say 'no live video stream is currently schduled' <--- example
    This is my code that I am using it needs to be done on the server side.
    <p>
         </p>
    <div id="content2_vid">
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="377" id="videoPlayer" name="videoPlayer" type="application/x-shockwave-flash" width="640"><param name="movie" value="http://video.domain.com/swfs/videoPlayer.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="allowfullscreen" value="true" /><param name="flashvars" value="&amp;videoWidth=0&amp;videoHeight=0&amp;dsControl=manual&amp;dsSensitivity=100&amp ;DS_Status=true&amp;streamType=live&amp;autoStart=true&amp;serverURL=rtmp://video.domain.c om/live/livestream" /><embed allowfullscreen="true" bgcolor="#000000" flashvars="&amp;videoWidth=0&amp;videoHeight=0&amp;dsControl=manual&amp;dsSensitivity=100 &amp;DS_Status=true&amp;streamType=live&amp;autoStart=true&amp;serverURL=rtmp://video.doma in.com/live/livestream" height="377" id="videoPlayer" name="videoPlayer" pluginspage="http://www.adobe.com/go/getflashplayer" quality="high" src="http://video.domain.com/swfs/videoPlayer.swf" type="application/x-shockwave-flash" width="640"></embed></object></div>
    <p>
         </p>
    Thanks

  • After getting data in tableView, how to edit this data in database ?

    I got data in tableView with the following code.
    Now How to make changes in database with this tableView.
    Can any body help me?
    //tableView codes
    try{
    data = FXCollections.observableArrayList();
    String SQL = "SELECT * from accounts";
    //ResultSet
    ResultSet rs = db.con.createStatement().executeQuery(SQL);
    * TABLE COLUMN ADDED DYNAMICALLY *
    for(int i=0 ; i<rs.getMetaData().getColumnCount(); i++){
    //We are using non property style for making dynamic table
    final int j = i;
    acctCode.setCellValueFactory(new Callback<CellDataFeatures<ObservableList,String>,ObservableValue<String>>(){
    public ObservableValue<String> call(CellDataFeatures<ObservableList, String> param) {
    return new SimpleStringProperty(param.getValue().get(0).toString());
    acctName.setCellValueFactory(new Callback<CellDataFeatures<ObservableList,String>,ObservableValue<String>>(){
    public ObservableValue<String> call(CellDataFeatures<ObservableList, String> param) {
    return new SimpleStringProperty(param.getValue().get(1).toString());
    acctTypeId.setCellValueFactory(new Callback<CellDataFeatures<ObservableList,String>,ObservableValue<String>>(){
    public ObservableValue<String> call(CellDataFeatures<ObservableList, String> param) {
    return new SimpleStringProperty(param.getValue().get(2).toString());
    tableView.getColumns();
    * Data added to ObservableList *
    while(rs.next()){
    //Iterate Row
    ObservableList<String> row = FXCollections.observableArrayList();
    for(int i=1 ; i<=rs.getMetaData().getColumnCount(); i++){
    //Iterate Column
    row.add(rs.getString(i));
    data.add(row);
    //FINALLY ADDED TO TableView
    tableView.setItems(data);
    tableView.getItems();
    }catch(Exception e){
    e.printStackTrace();
    System.out.println("Error on Building Data");
    }

    Hi Anubhav,
    You could try this:
    <htmlb:tableViewColumn columnName = "ACTION"
                                           title      = "<center>Action</center>"
                                           edit       = "<%= gv_edit %>"
    declare the variable gv_edit in the layout and default it to 'FALSE'.
    when the event 'modify' is trigerred, set the variable gv_edit as TRUE.
    Regards,
    Madhumitha

  • SONGS THAT I HAVE PURCHASED APPEAR TWICE ON MY PHONE. DOES ANYBODY KNOW WHY AND HOW TO EDIT THIS PROBLEM?

    Songs that I have purchased on Itunes appear twicw on my Iphone. Does anybody know why and how do I edit or remove one copy of the song?

    I have had two similar events with my Gen4 iTouch. An album was purchased thru iTunes with my iTouch. When I sync'd it with my MAC Mini (OSX Lion) each song that was included in the purchased album appeared twice on the iTouch but only once on the MacMini. Deleting the duplicates on the iTouch did not resolve the issue. With each sync they were reinstalled. The only way I could get around this was to delete the album/songs on the MAC, elect to move them to trash then re-sync the iTouch to remove them. Afterwards I was able to re-download the purchase on the MAC then sync the iTouch. This resolved the issue.
    The second event was different but the result was the same: An album was purchased thru iTunes but this time thru iTunes Store on the MAC mini. When I sync'd the iTouch there were 2 entries for each song purchased but this time there was an entry for the song itself AND an identical entry beneath it that looked similar to the play/pause sampling icon in iTunes when sampling a song prior to purchase. I am not using iCloud and I don not sync wirelessly on the iTouch. Again, all I could do was delete the purchase on the MAC Mini, sync the iTouch to remove them, re-load the purchase from iTunes and re-sync. This also resolved the issue but it makes me a bit nervous since I have a very large library. What is causing this?

  • How to edit this eps image

    I have an image uploaded here for those who wish to help me hxxp://hotfile.com/dl/121047243/ca6eecc/sample.eps.html  (Please replace xx with tt)
    I nned to get rid of the lowermost single hhygely thick concave copper red glow path (and leave only the upper three concentric convex thin blur paths) but am unable to do so
    I tried ungroup (it does not exist) and i even tried delete anchor points (in zoom mode) but am unable to separate the paths and delete what i do not want
    Can you please explain how it is to be done because i find this a common issue with wave image files that have curves
    Thanks or any help

    It's a Gradient Mesh.
    Use the Direct Select Tool (the White arrow) and select the anchors corresponding to the bottom arc. Then change their color in the Color panel.

  • Any ideas on how to Edit this?

    I don't know why this photo turned out the way it did. I had no problems prior to taking this picture. Please help! I desperately need to fix this the best I can,

    One quick fix - copy the whole image onto a second layer - set new layer to Multiply.
    Adjust the opacity until you get the look you want.

  • How To Edit This

    See image please,realy need help.
    https://plus.google.com/photos/115221653662814636124/photo/5935297198531373922

    That is a problem with delta-search.
    *http://malwarefixes.com/remove-delta-search-virus/
    You can use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).
    You can check if you have a user.js file in the profile folder to initialize some prefs on each start of Firefox.
    The user.js file is only present if you or other software has created it, so normally it wouldn't be there.
    you can check its content with a plain text editor if you didn't create this file yourself.
    The user.js file is read each time you start Firefox and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    *http://kb.mozillazine.org/Preferences_not_saved

  • ITunes doesn't recognize my iPod anymore, i don't know how to fix this, help?

    After downloading Spotify music...i tried to open iTunes and it froze....I udated my iPod and everthing...re-downloaded iTunes...but it still doesn't reconize my iPod....what do I do? help!

    its looking for you to update on your computer. if your on a windows your want to open up itunes. click on help, and then click check for updates and then that should let you up date it. mac you want to click on itunes up by file and edit then click check for updates

  • May you please tell me how to edit this Illustrator file?

    I am kindly asking you to assisting me editing an image. https://www.dropbox.com/s/s9no77jfag62vsi/padder3Core.ai?dl=0
    As you can see, there are 4 colors (red, blue, yellow, light gray). I am struggling to find a way to delete the grey color and to stretch the other three colors enough to form a sort of equilateral triangle. Let me explain.
    At the moment, each of the four colors form a 90 degrees angle. Is there any way to delete the light grey color and make space to the other three colors so that they form a 360 degrees angle? (120 degrees each).
    Thank you so much in advance,
    Cesare

    Cesare,
    What appears in the expanded Layers palette when you have the selection shown in the Dropbox screenshot?
    It should be the three thirdendeal circles, in a Group unless Ungrouped. Each should be selectable.
    Before posting, I tried the Pathfinder Divide with the Radial Dividers, and it worked.
    If the Radial Dividers are too short to reach the circle (so there are gaps), it will be a Compound Path instead. I believe(d) that issue to only apply to rather old versions (before CS (1) or something).
    One way to get round an issue with too short Radial Dividers is to create the Polar Grid a bit too large and reduce the size of the circle to the desired value, and then to Pathfinder>Divide (the outlying ends of the dividers will disappears); in cases with an even number of dividers you may alternatively create the Polar Grid at the final size and increase the size of the divider group.
    If there is such an issue, the easy solution is Shapebuilder/Live Paint with Gap Detection, of course.

  • How to edit the WSDL

    I noticed a few limitations of an automatically generated web service
    under WLS 7.0, and I am wondering if there is a way to manually edit
    files to overcome these limitations:
    - the parameter names have no meaningful names, such as string0,
    string1, etc. This needs to be changed to at least use the names given
    to the parameters in the EJB. I remember putting in a CR a while back,
    but this has not been implemented yet.
    - The documentation field says 'todo'. It would be nice to be able to
    add some explanatory text there.
    I looked for the WSDL file in the web-services.war file but could not
    find it. Any pointers as to whether/how this stuff can be edited?
    Thanks,
    Joop Kaashoek

    Indeed, you can do this. But if you have non-built in data types as paramaters
    it gets pretty tricky.
    manoj cheenath wrote:
    You can change the parameter/operation name in the generated
    WSDL file by editing the web-services.xml file in the web-inf dir
    (inside the war file). This file is generated by servicegen, but can
    replaced before deploying the service.
    regards,
    -manoj
    "Joop Kaashoek" <[email protected]> wrote in message
    news:[email protected]...
    Hi Mike,
    Thanks very much for your help, I have sent a request to '[email protected]'.
    Regards,
    Joop
    Michael Wooten wrote:
    Hi Joop,
    I see. No, I don't work in "development" or have any knowledge of what
    features are
    going to be in the product. I work in the "services" (i.e. professionalservices)
    division, which is primarily tasked with figuring out (and showingothers) how the
    stuff works :-)
    Individuals from "development" (i.e. product managers, developers,architects, etc.)
    do monitor this newsgroup, so I think you should create another postthat has a subject
    like "Need static or JSP-based WSDL added back to .war". The subject forthis current
    post, sounded like you wanted to know how to edit the WSDL (which Ithink I answered
    to your satisfaction), but it sounds like you really just want acapability that
    was in WLS 6.1, back in WLS 7.0 :-)
    I'm assuming that you already know that you can extract the "static"WSDL from the
    client.jar and put it anywhere in the .war, you like. The context rootwill be the
    name of the .war file, without the file extension. For instance, if your.war file
    is hello.war, the context root will be hello. If you then put the"static" WSDL (which
    you extracted from the client.jar), into the root directory for for thisWeb Application,
    the URL to it would be something like:
    http://localhost:7001/hello/HelloService.wsdl
    Regards,
    Mike Wooten
    Joop Kaashoek <[email protected]> wrote:
    Your explanation makes sense, but the implementation does not make
    sense
    to me. This should
    clearly be on the list of things to fix. Our partners use .NET or other
    technologies, we
    want to be able to publish a meaningful self-documented WSDL document(with
    meaningful
    parameter names and documentation) on our server, not as part of aweblogic-specific
    Java
    client jar.
    Can you indicate whether this is being worked on?
    Regards,
    Joop
    Michael Wooten wrote:
    Hi Joop,
    The assumption here, is that the client will download your client.jar(or whatever
    you named it in your <clientgen> Ant task), and use a file:// URL to
    access
    it (the
    "persisted" WSDL file) from within this archive :-)
    If you use the Web Services Technology Stack from BEA
    (lib\webserviceclient.jar)
    on the client-side, editing this file affects the construction of theSOAP message
    that is sent to the Web service, which I'm assuming is hosted on an
    instance
    of WLS
    7.0. The names for the input parameters (and return value), will be
    set
    to those
    that you specified in this WSDL, which is one of the things you said
    you
    wanted to
    be able to do.
    If you don't use the Web Services Technology Stack from BEA on the
    client-side,
    there
    is still a very high probability that the WSDL processor of the tool
    you
    use, will
    use this WSDL to create the SOAP message sent to your web service,
    which
    again is
    assumed to be hosted on an instance of WLS 7.0.
    If you use the "dynamically generated" WSDL (as opposed to the one inthe client.jar),
    you will get the "generic" parameter names specified in it. The
    "dynamically
    generated"
    WSDL is accessed by concatenating "?WSDL" to the location attribute,
    of
    your <service>
    element.
    Make sense?
    Regards,
    Mike Wooten
    Joop Kaashoek <[email protected]> wrote:
    Mike,
    How can editing this client file make any difference to the web
    service
    itself?
    Joop
    Michael Wooten wrote:
    Hi Joop,
    The "persisted" WSDL file is in the .jar file, for the client ;-)
    The name of this .jar file is set using either of the following:
    1. The clientJarName attribute, of the <client> sub-element for
    your
    <servicegen>
    task, or
    2. The clientJar attribute, of the <clientgen> task.
    The path leading to the .wsdl file, is determined by the value youassign
    to the
    packageName attribute (in either of the above tasks).
    Regards,
    Mike Wooten
    Joop Kaashoek <[email protected]> wrote:
    I noticed a few limitations of an automatically generated web
    service
    under WLS 7.0, and I am wondering if there is a way to manuallyedit
    files to overcome these limitations:
    - the parameter names have no meaningful names, such as string0,
    string1, etc. This needs to be changed to at least use the namesgiven
    to the parameters in the EJB. I remember putting in a CR a whileback,
    but this has not been implemented yet.
    - The documentation field says 'todo'. It would be nice to beable
    to
    add some explanatory text there.
    I looked for the WSDL file in the web-services.war file but couldnot
    find it. Any pointers as to whether/how this stuff can be edited?
    Thanks,
    Joop Kaashoek

  • How to edit an XML file?

    Guys, I have a podcast in iTunes, I want to start to promote it. In order to do this, I think I will have to put tags in the XML file for different sites and I would like to know how to edit this. Does anyone have any good places for me to check out how to do this?
    Thanks!

    Vinnie, thanks for getting back to me on this, I am pulling my hair out!
    What FAQ are you speaking of? The one in iTunes or someplace on this board?
    By claim, what I mean is this. Lets say I try to add my podcast to Podcast Alley's directory. If I copy and paste my RSS feed in there, it says that it needs me to add their "tag" or whatever in my RSS so they know it is my podcast. They need me to add this line in the XML file I think to "claim" my podcast so it will show up in their directory. This seems to be a common thing with other sites as they give me some XML code to add to my RSS also.
    Make sense at all?

  • How to edit the application : tc~sec~ume~wd~enduser/LogonHelpApp

    Hi
    How to edit this application?
    When the end users use this application they are not returning back to the logon page of the portal - but to the zdsfdasf/index.html og the J2EE - which may result in confused end users.
    Anyway - how to change the redirect when selecting the Submit or Cancel button?
    Earlier you could used the com.sap.portal.runtime.logon.par file and make changes, upload it and change the autscheme.xml to use your custimized application - that does not work from SAP EP 7.0 SP11

    I've the same issue.  I'm sure, there are many clients who updated it.  Can somebody post a response on the above question.  How to modify sap.com/tcsecumewdenduser/Logon web dynpro DC?
    Thanks

  • How to edit Printed Documents in Business One

    When you print any documents in SAP Business One the status field become Open-printed thereafter i am not able to edit the document.How to edit this document after printing it?

    Hello,
    It is possible to update particular fields in existing marketing documents as of SAP Business One 2005 A SP01. You may refer to SAP Note  941272 for detailed information or just check below.
    Regards,
    Canna Mu
    SAP Business One Forums Team
    Business scenario                                                                               
    Solution                                                                               
    As of SAP Business One 2005 A SP01, it is possible to update the data of specific fields after the documents are added, under certain conditions, listed below.                                                                               
    -  This solution is available for Italy, Japan, UK, US, Spain, Sweden, Norway, and Finland.                                                                               
    1. Due Date                                                                               
    If the documents listed below are fully opened, that is, the documents were not fully or partially drawn to a target documents, or were not fully or partially paid, you can change their due date:                                                                               
    o  A/R Invoice & A/P Invoice                                                                               
    o  A/R Down Payment Request & A/P Down Payment Request                                                                               
    o  A/R Down Payment Invoice & A/P Down Payment Invoice                                                                               
    o  A/R Reserve Invoice & A/P Reserve Invoice                                                                               
    o  A/R Credit Memo & A/P Credit Memo                                                                               
    Additional Information:                                                                               
    Installments:                                                                               
    -  In the case of one installment only, if you change the due date in the document header, the due date of the installment is updated accordingly. The opposite also occurs; if you change the due date of the installment, the due date in the  document header is updated accordingly.                                                                               
    -  In the case of more than one installment, you can change the due date of each installment, but only a change in the due date of the latest installment updates the due date in the document header accordingly.                                                                               
    -  There is no option to change the number of installments.                                                                               
    Journal Entries:                                                                               
    -  If you change the due date of a journal entry created by a document, the due date of the respective document is not  updated.                                                                               
    -  If you change the due date of document or installment, the due date of the respective row in the journal entry created by that document/installment is updated accordingly.                                                                               
    2. Payment Method                                                                               
    If the documents listed below are fully opened, that is; the documents were not fully or partially drawn to a target documents, or were notfully or partially paid, you can change their Payment Method:                                                                               
    o  A/R Invoice & A/P Invoice                                                                               
    o  A/R Down Payment Request & A/P Down Payment Request                                                                               
    o  A/R Down Payment Invoice & A/P Down Payment Invoice                                                                               
    o  A/R Reserve Invoice & A/P Reserve Invoice                                                                               
    o  A/R Credit Memo & A/P Credit Memo                                                                               
    o  Delivery & Goods Receipt PO                                                                               
    o  Return & Goods Return                                                                               
    3. Sales Employee/Buyer                                                                               
    You can change the sales employee or buyer data for all the documents listed in section #2 at any time (including after the document is closed), at both document and row level.                                                                               
    If the change is done at the document level, a message asking the user whether to apply the change on the rows appears.                                                                               
    4. Owner                                                                               
    You can change the owner of all the documents listed in section #2 at any time (including after the document is closed), at both document and row level.                                                                               
    If the change is at the document level, the row owner is automatically updated accordingly.                                                                               
    5. Pay To/Bill To                                                                               
    You can change the Pay To or Bill To data for all the documents listed in section #2, only if the documents are fully opened. That is; the documents were not fully or partially drawn to a target document, or were not fully or partially paid.                                                                               
    6. Payment Terms                                                                               
    You can change the payment term of Delivery, Goods Receipt POs, Return, and Goods Return only if the documents are fully opened. That is; the documents were not fully or partially drawn to a target documents.                                                                               
    7. Text Rows                                                                               
    You can modify the text of existing text rows in all of the documents listed in section #2, at any time (including after the document is closed). However, you cannot add new text rows or delete existing ones.                                                                               
    8. Printing                                                                               
    If you make one or more of the above mentioned changes after the document is printed, the next printout, which takes place after the change, reflects the changes and includes the title "Amended".                                                                               
    -  Note that only print layouts that save the printing information, indicating whether or not the document was printed, include the title "Amended".                                                                               
    9. Change Log                                                                               
    All the changes described above are documented in the Change Log window.                                                                               
    10. Authorizations                                                                               
    Only authorized users can submit the changes described above. For this purpose the following authorizations are added to the Authorizations window:                                                                               
    o  Modify Posted A/R Documents - to enable changing sales documents. Located under Sales - A/R authorization entry.                                                                               
    o  Modify Posted A/P Documents - to enable changing purchasing documents. Located under Purchasing A/P -> Purchase Order.

Maybe you are looking for