TOC/Script problem with Netscape

I am using RoboHelp (webhelp) 5.5.
I am facing two problem with netscape browser.
1. loading the page itself take long time and show a message
that script on this page is causing mozilla to run slowly.
2. in the TOC when i click the TOC BOOK the content of the
page inside that book is opened in new tab page in the same browser
instant

Hello Robo_Rajesh,
Welcome to the forum.
As a start point, I would suggest you check the following on
Peter Grainge's web site for an explanation.
Click
here.
Hope this helps.
Brian

Similar Messages

  • Problems with Netscape...

    Hi friends,
    (Apps: 11.5.7 DB: 8.1.7)
    In selfservice I have a link to an image stored in database ... when I do click with Internet explorer, it shows the image withput problem but.. if I try to do it with Netscape (6.2) It appears a page with ascii chars... Any idea of this?
    It doesn't occurs with Firefox...(it runs ok)
    Thanks,
    Jose.

    Jose, Netscape 7.2 is certified with:
    - Oracle Applications patch 9 (11.5.9) or later
    - Oracle Developer 6i patchset 15 (6.0.8.24.x) or later
    - Oracle Applications Framework 11i.FWK.H or later
    - Windows XP/2000
    - JInitiator 1.3.1.x
    NOTE: Netscape 7.2 is no longer supported by the vendor. Oracle will continue to offer support for this browser with E-Business Suite on a 'Best Effort' basis only. Consequently, where issues are due to problems with the browser, we may, where necessary, require customers to upgrade or change their browser to resolve the issue.
    No future certification of the Netscape browser is currently planned by Oracle. Firefox browser by Mozilla.org is certified for E-Business Suite.
    Note: 285218.1 - Recommended Browsers for Oracle Applications 11i
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=285218.1

  • Problem with Netscape: DIV

    Hi All,
    When i put a checkbox in DIV tag int HTML page
    and open it with Internet Explorer I can see the checkbox. When I open the same page with Netscape I can also see the checkbox.
    But if I put some style in the DIV tag, in Internet Exploer I can see checkbox but in Netscape I can't.
    What should I do to see the checkbox (which is in TAG)in Netscape?
    I work with Netscape 4.7
    Many thanks

    Hi,
    Netscape will consider each Div tag as a new document,anyhow for that u should apply the absolute position.So u have to create a form inside the div tag to access the checkbox u have created.
    Ganesh

  • File downlaod -- Problems with netscape

    Hi,
    I am trying to implement the file download functionality. I am using the following code for that.
    response.reset();
    response.setContentType("APPLICATION/OCTET-STREAM");
    response.setHeader("Content-Disposition","attachment; filename=\""+filename+ "\"");     
    response.setContentLength((int)file.length());     
    FileInputStream fileInputStream = new FileInputStream(fileName);
    int i;
    while ( (i=fileInputStream.read()) != -1) {
         output.write(i);
    output.flush();
    output.close();
    fileInputStream.close();
    response.flushBuffer();
    it works fine with IE. but while trying to download the files with Netscape, download prompt is adding '.do' at the end of the file name before saving it.
    If anybody knows the solution, please write back.
    Thank you.
    Prasad.

    Hi,
    I am trying to implement the file download functionality. I am using the following code for that.
    response.reset();
    response.setContentType("APPLICATION/OCTET-STREAM");
    response.setHeader("Content-Disposition","attachment; filename=\""+filename+ "\"");     
    response.setContentLength((int)file.length());     
    FileInputStream fileInputStream = new FileInputStream(fileName);
    int i;
    while ( (i=fileInputStream.read()) != -1) {
         output.write(i);
    output.flush();
    output.close();
    fileInputStream.close();
    response.flushBuffer();
    it works fine with IE. but while trying to download the files with Netscape, download prompt is adding '.do' at the end of the file name before saving it.
    If anybody knows the solution, please write back.
    Thank you.
    Prasad.

  • Javascript problems with NetScape

    You must all be familiar with thios sort of problem but I have put
    together a simple website for a customer which automatically sends
    emails to him to record visits to the site from invited individuals. The
    following page script is a simple asp page to send the email upon entry
    and forward the visitor on to the first page of the site (I have written
    a C++ CGI program to send the email which works fine). However, the
    script works perfectly for Explorer browser but Netscape doesn't seem to
    cope with it. It just hangs with the loading symbol turning round and
    round indefinitely. Does anyone have any ideas ? I am sorry if this is
    not the appropriate gfroup but I couldn't find another nearer the mark :-
    <% @LANGUAGE = "VBScript"
    @ENABLESESSIONSTATE = TRUE %>
    <% Response.Expires = 0 %>
    <HTML>
    <HEAD>
    <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
    <TITLE></TITLE>
    <script LANGUAGE = "JavaScript">
    function submitform()
    form1.submit();
    </script>
    </HEAD>
    <BODY onload="submitform()">
    <% dim cid, jid, xcid, xjid
    if (Request.QueryString("cid") <> "") then
    set cid = Request.QueryString("cid")
    Session("CID") = cid
    Session.Timeout = 15
    end if
    xcid = Session("CID")
    %>
    <form action="/cgi-bin/CGIMail.exe" method="POST" name="form1">
    <input type="hidden" value="<% Response.Write(xcid) %>" name="Candidate">
    <input type="hidden" value="xxxx" name="Job">
    <input type="hidden" name="emp_to" value="[email protected]">
    <input type="hidden" name="emp_from" value="webmaster@customers_site.com">
    <input type="hidden" name="emp_fromname" value="Autoresponder">
    <input type="hidden" name="emp_subject" value="Site Visit">
    <input type="hidden" name="emp_host" value="10.1.1.58">
    <input type="hidden" name="emp_NextURL" value="response/JDxxxx.asp">
    <input type="hidden" name="emp_RejectURL" value="response/Reject.html">
    </form>
    </BODY>
    </HTML>

    OK. I know that I'm sometimes the "off-topic" police for this newsgroup.
    But this is so offtopic that that I laughed out loud.
    David
    nospam@nospam wrote:
    You must all be familiar with thios sort of problem but I have put
    together a simple website for a customer which automatically sends
    emails to him to record visits to the site from invited individuals. The
    following page script is a simple asp page to send the email upon entry
    and forward the visitor on to the first page of the site (I have written
    a C++ CGI program to send the email which works fine). However, the
    script works perfectly for Explorer browser but Netscape doesn't seem to
    cope with it. It just hangs with the loading symbol turning round and
    round indefinitely. Does anyone have any ideas ? I am sorry if this is
    not the appropriate gfroup but I couldn't find another nearer the mark :-
    <% @LANGUAGE = "VBScript"
    @ENABLESESSIONSTATE = TRUE %>
    <% Response.Expires = 0 %>
    <HTML>
    <HEAD>
    <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
    <TITLE></TITLE>
    <script LANGUAGE = "JavaScript">
    function submitform()
    form1.submit();
    </script>
    </HEAD>
    <BODY onload="submitform()">
    <% dim cid, jid, xcid, xjid
    if (Request.QueryString("cid") <> "") then
    set cid = Request.QueryString("cid")
    Session("CID") = cid
    Session.Timeout = 15
    end if
    xcid = Session("CID")
    %>
    <form action="/cgi-bin/CGIMail.exe" method="POST" name="form1">
    <input type="hidden" value="<% Response.Write(xcid) %>" name="Candidate">
    <input type="hidden" value="xxxx" name="Job">
    <input type="hidden" name="emp_to" value="[email protected]">
    <input type="hidden" name="emp_from" value="webmaster@customers_site.com">
    <input type="hidden" name="emp_fromname" value="Autoresponder">
    <input type="hidden" name="emp_subject" value="Site Visit">
    <input type="hidden" name="emp_host" value="10.1.1.58">
    <input type="hidden" name="emp_NextURL" value="response/JDxxxx.asp">
    <input type="hidden" name="emp_RejectURL" value="response/Reject.html">
    </form>
    </BODY>
    </HTML>

  • VB Script Problems with Windows Vista Ultimate

    I have iTunes 7.0.2.16 and when i try to update it i keep getting a message that says:
    "iTunes could not be installed becasue visual basic script (VB Script) is not installed or has been disabled. make sure VB Script is installed, turn off script blocking in anti-virus and personal firewall software, re-register VB Script, then install iTunes."
    I even get this message when i try to unistall iTunes. I completly uninstalled my antivirus software and removed all firewalls, but i wasnt able to fix the problem.
    I visited the iTunes and QuickTime for Windows cannot be installed without Visual Base Script (VBScript) section for help, however, it was unable to solve my problem.
    I currently have Windows Vista Ultimate and have been looking for a fix for a while now...any help would be greatly appreciated...
    thanks
      Other OS   Windows Vista Ultimate
      Other OS   Windows Vista Ultimate
      Other OS   Windows Vista Ultimate

    Hey rrijeka,
    Unfortunately, Vista is currently not compatible with iTunes.
    This article: http://docs.info.apple.com/article.html?artnum=305042 will tell you more about the iTunes and windows Vista compatability. The article will also be updated when itunes and Vista are compatible.
    Jason

  • Problems with Netscape, Mozilla in WebServer6SP3 usage acelerador/SSL ct100

    Hi my name is Jesus Delgado from Mexico city:
    I have problems when usage webserver 6 sp3 with acelerator SSL ct100, the problem is when display in browser page recive code in Netscape, Mozilla both in browser InternetExplored display page good.
    Helpme please.
    Regards

    1: My first inclination is that this is a non-issue. The vulnerability you are concerned with 'SSL Server Allows Anonymous Authentication Vulnerability port 311/tcp over SSL' is for port 311, a port that is not normally set to allow access to the internet. So any vulnerability/data leak would be from internal.
    2: That port is for access from Server Admin.app. Yes, the port is held open and connectivity via any access (such as telnet localhost 311) does connect, there is no data/information leakage that I could cause. That port does not respond to standard queries such as help, info, ? et al. I would suspect it would have to be a crafted xml/soap or somesuch conversation before anything could potentially leak.
    3: Assuming that access to this data needs to be the same as what happens when one uses Server Admin.app, the data probably could be considered secure as in order to view or modify any data, you must know a valid user id and password and that user must be authorized as an administrator (or monitor) account before the Server Admin.app will allow control.
    If you are still concerned, you could submit this as a bug to https://bugreport.apple.com/ . Be aware you must be an ADC member to submit bugs.
    Peter

  • JDBC Problem with Netscape Enterprise Server 3.61

    I have created a servlet->JDBC(Thin driver for Oracle 7.3) model to communicate the ORacle Database on an UNIX box by using Netscape Enterprise Server 3.61. I got the following problems and if anyone could help me. Many many thanks.
    java.lang.IllegalAccessError: JdbcDriver at
    WhitePageSearch.doGet(WhitePageSearch.java:75) * at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:252) at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:330) at
    sun.servlet.netscape.NSRunner.run(NSRunner.java:144) at
    netscape.server.applet.ServerApplet.handleRequest(ServerApplet.java:69)
    at netscape.server.applet.HttpApplet.handleRequest(HttpApplet.java:680)
    By the way. This model works fine on the servletrunner on my NT machine and I guess there are some problem on the Nescape Server setting.

    You need to install the Netscape Proxy plug-in.
    You can find the plug-in at the BEA download site along with the instructions.
    Once downloaded it took about 5 minutes to update a config file and have everything running.
    Good Luck...
    Daniel Astillero <[email protected]> wrote:
    How can I configure Netscape Enterprise Server 3.5.1 to use WebLogic 5.1?

  • Once again problems with Netscape 4

    Hi,
    I have an jsp with a form inside. The form request is handled by a servlet.
    But when running the jsp from Netscape4, there are no parameters sent with the request object. Why is this?
    With the Internet Explorer I have no problems. The parameters are accesible without problems from the request object.
    Has anyone an idea???

    It seems that there is some error with your HTML (Check it thoroughly for example for missing </form> tags,etc , etc . IE is correcting them automatically but netscape is not.
    This has nothing to do with JSP
    Shubhrajit

  • Scripting problems with pipes!

    Hi Boardies!
    I'm working on a script to automatically generate PKGBUILDs for my custom kernels (For my 3 systems I need 3 custom kernel packages).
    Each PKGBUILD needs the md5 checksum block, which I can generate with "makepkg -c > PKGBUILD".
    Here is the problem
    This command writes the checksums at the end of the PKGBUILD file. This isn't a clean solution. The checksums should wrote before the "build()" function.
    Because of that I need a trickly bash command, which search (grep maybe?) the "build() "-line and writes the md5-checksum block before that line.
    I tested around with egrep, but I can't isolate the line-number of "build()" and I don't know how to paste the md5-checksums be at the position (line - 1)!
    I hope somebody can help me. Thanks for your answers
    Best regards,
    Flasher

    A simple perl script would be appropriate.  The easiest way to approach this problem (actual perl programmers feel free to correct me) is to do the following:
    iterate over the file, pulling each line into a string appended to an array
    iterate over the array, printing each line.  If build() is matched, print md5sum, then the line.
    write the corrected file to stdout
    Here's one I called test.pl
    #!/usr/bin/perl
    #Add MD5SUM to file
    #Read from stdin into @file
    while (<>) {
    chomp;
    push(@file, $_);
    foreach my $a (@file) {
    if ($a =~ /build\(\)/) {
    print "MD5SUM\n";
    print "$a\n";
    Then the following command:
    cat PKGBUILD | ./test.pl > temp
    mv temp PKGBUILD
    Produces an identical PKGBUILD with the word MD5SUM printed on the line above build().

  • Funny problem with Netscape

    I am having an applet. When I removed all class files and place JAR file, Netscape started giving problem.
    Please note following
    1)On local intranet both IE / Netscape applet is running properly. (With Jar and with classfiles.)
    For LIVE :
    2)If I try to connect through direct dial-up connection to Live server, again both IE / Netscape are ok (With Jar and with classfiles.)
    3)If I connect through local intranet to LIVE server (my computer is behind the firewall) and put the class files then also for both IE / Netscape it is ok
    4)If I connect through local intranet to LIVE server (my computer is behind the firewall) AND WHEN I REMOVE ALL CLASS FILES AND REPLACE WITH JAR FILE, IE is still ok, Netscape is giving following error :
    java.lang.NullPointerException
    at java.lang.StringBuffer.append(Compiled Code)
    * at netscape.applet.DerivedAppletFrame$LoadAppletEvent.dispatch(Compiled Code)
    at java.awt.EventDispatchThread$EventPump.dispatchEvents(Compiled Code)
    at java.awt.EventDispatchThread.run(Compiled Code)
    at netscape.applet.DerivedAppletFrame$AppletEventDispatchThread.run(Compiled Code)
    It is very obvious, problem is because of Firewall and Netscape security, but how to get around this problem ?
    manisha

    Hi,
    I don't know whether it is exactly a same problem or not, but, my applet had received the same error message at start time . What I did in previous revision is System.getProperty("user.dir") as applet's instance variable.
    class myApplet extends JApplet {
    private String currDir = System.getProperty("user.dir");
    //Other code goes here......
    Since my applet does some local file access, security code is already there in init(), so I moved getProperty() to the inside of the init(), like:
    class myApplet extends JApplet {
    private String currDir = null;
    public void init() {
    //Security permissions are here
    currDir = System.getProperty("user.dir");
    //Other codes goed here...
    Then problem gone.
    Because Netscape message does not indicate that this is a security related problem nor, problem is related to applet initialization, so I really think finding resolution is very much difficult.
    I believe other people who have this problem may have some security-related code in their applet...
    Worse, this problem does not happen in Internet Explorer (MSVM).
    If getting "user.dir" at initialization of the applet is a security violation, those VMs should report it so, I think...
    Anyway, this is my case. I hope this information will make any sense in your case as well.
    Regards,
    M.H.

  • [InDesign C# Script] Problem with textframe.place(imageName)

    Hi everyboy !
    I am beginning with the InDesign Scripting in C#, and the documentation is very poor. I have a problem and I can't find the solution.
    I have to place an image into a textframe on my document's page.
    I create my textframe without any problem :
               myDocument.Layers.Add();
            InDesign.Layer lastLayer = (InDesign.Layer) myDocument.Layers[myDocument.Layers.Count];
            InDesign.TextFrame myPicture = myPage.TextFrames.Add(lastLayer, InDesign.idLocationOptions.idUnknown, myPage);
            myPicture.GeometricBounds = new string[4] { myY, myX, myY2, myX2 };
    Then I try to place my Image, but I can't find which type of object is returned by .Place méthode :
    First try :
    InDesign.Graphics myGraphic =  (InDesign.Graphic) myPicture.Place(pathName, false);
    And I have got this error :
    {System.InvalidCastException: Unable to cast COM object of type 'System.__ComObject' to interface type 'InDesign.Graphics'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{C85A4AB3-9492-4C40-8A7B-F8305706C8B8}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
       at Service.createPhotograph(XmlNode photo, Page myPage) in c:\Documents and Settings\melaniep\My Documents\Visual Studio 2005\WebSites\WebSite6\App_Code\Service.cs:line 204}
    And I saw this tutorial in javascript for placing images  at http://www.adobe.com/devnet/indesign/pdfs/indesigncs4_scriptingtutorial.pdf
    //Display a standard open file dialog box to select a graphic file.
    var myGraphicFile = File.openDialog("Choose a graphic file");
    //If a graphic file was selected, and if you didn't press Cancel,
    //place the graphic file on the page.
    if((myGraphicFile != "")&&(myGraphicFile != null)){
    var myGraphic = myDocument.pages.item(0).place(myGraphicFile);
    //Since you can place multiple graphics at once, the place method
    //returns an array. To get the graphic you placed, get the first
    //item in the array (JavaScript arrays start with item 0).
    myGraphic = myGraphic[0];
    So I tried :
    InDesign.Graphics myGraphics =  (InDesign.Graphics) myPicture.Place(pathName, false);
                InDesign.Graphic myGraphic = (InDesign.Graphic) myGraphics[0];
    But I have got the same error.
    Someone have an idea? I am really lost, and I don't know what to do :'(
    Another little question.
    My picture is smaller than my textFrame.
    And I want my picture fits to the texframe.
    MyGraphic.HorizontalScale = widthOfTextFrame
    MyGraphic.VerticalScale = heightOfTextFrame
    Does it works? Or Am I in the wrong way?
    Thank you very much (and sorry for my bad english, I am french )

    Are you also beginning with C# ? Then please reconsider, and follow tried paths with JavaScript - plenty more support around here. You could at least write a draft of your program, and only if it works move it to C#.
    To get further on your issue, I'd follow the idea outlined here:
    http://msdn.microsoft.com/en-us/library/ms173183(VS.80).aspx
    If that does not work, I'm sorry - last time I used C# is years ago, and targeting some pocket PC. No InDesign involved.
    Dirk

  • Script problem with CC 2014

    hi,
    i have a problem i try to put a new screen. Freebies — Mt. Mograph from there but when i download the file on os i have to change the jsxbin in jsx to see  the icon jsx, then i put the script in ui scrpt panel but nothing happen i dont see it when i'm opening my AE ?
    what's wrong with it??

    Just to be clear.
    If you put jsxbin script to Scripts folder or to Scripts -> ScriptUI Panels it runs OK both from File->Scripts and Window - > "script name".jsxbin.
    However, if you do File -> Scripts -> Run Script File.... AE does not recognize jsxbin file and shows it greyd out. For that I have to rename those jsxbin files to jsx.

  • Live ID sign in problem after script problem with ...

    I am again having to sign in to WLM Live ID after each reboot.
    I first came across this problem when the Yahoo Toolbar was upgraded. See thread:
    http://community.bt.com/t5/BB-Speed-Connection-Issues/BT-Toolbar-installer-ongoing-problem-STILL-ONG...
    The script error "fix" has again changed the HKEY_USERS registry entry!
    I really am at a loss to understand why BT can't get its head around this.
    [HKEY_USERS\S-1-5-21-796845957-926492609-725345543-1003\Software\Microsoft\Windows\CurrentVersion\Exp lorer\User Shell Folders]
    AppData = %AppData%
    The problem here is AppData should actually be the following
    AppData = %USERPROFILE%\Application Data
    So when MSN or other apps that use that registry key go to save their data it gets lost.
    So the solution is simple, run regedit and go to
    [HKEY_USERS\S-1-5-21-796845957-926492609-725345543-1003\Software\Microsoft\Windows\CurrentVersion\Exp lorer\User Shell Folders]
    and modify/set the value AppData to a data value of %USERPROFILE%\Application Data

    I just had a look at the relevant forum http://forums.adobe.com/community/labs/widgetbrowser?view=discussions&start=0; but no help there either.
    To give you an idea, I was having the same problem, I could not log in. Despite that, I did have the most up to date widget in my browser, the one that dates back to 01/13/2012. Since then, no more widgets have been added.
    Along with ADDT and Spry I guess that the widget browser has become the next casualty.
    You can still use the browser, just be careful in the knowledge that the newest widget is already one year old.

  • TA21328 every time I use Safari I receive a message that says Safari is no longer responding because of a script problem with the website and I must press "continue" for the page to continue. This happens with every website I go to.  What is wrong with my

    When using Safari I have begun to notice this box appearing as I try to reach any website:  "Safari is no longer responding because of a script on the webpage and then it lists what ever web page I have tried to reach.  It then asks me if I want to "stop" the script or allow it to continue.  I must "continue" it in order to reach my web page/  If I press "stop" it just keeps coming back and back and I can't continue.  What is wrong with my computer or Sarari or both?

    chick --
    Does it mention "Slow Script?

Maybe you are looking for

  • Sub Header In ALV Report

    Hi Experts, I want to dispaly a P/L acount in ALV report format as given below , the items will diplay should be in Excel format as: 1.Current Month  and YTD should be under in current Year Column  it  and again in next column  Current month and YTD

  • Major problem: adding artwork alters music in mp3 file

    I have a CD worth of mp3s in iTunes. I highlight all of the songs from that CD, then copy/paste (or drag to the artwork box). Then it updates all of the songs with this artwork, but after processing I always have a few songs that the artwork doesn't

  • PSE 6 fonts usable anywhere else?

    Can the fonts in PSE 6 be used in any other Windows apps? Or are they embedded in the PhotoShop application itself?

  • RNIF Service Header data

    Hi experts,     Can somebody help me in finding how to get the RNIF Service Header data in XI, when i get a message from a RNIF compliant system? Regards, Ravi

  • Is Red-Laser HD DVD a Workable Solution for HD Playback?

    One of our Divisions has an new educational center, complete with a 90-seat theater prepped for HD and Dolby Digital 5.1. We have HD content to show in the theater. My question: Would red-laser HD DVD be a viable option for HD playback using somethin