Why the html textarea tag doesn't work in Netscape 4.76 running SunOS5.5.1? I can get focus into it but can't type anything.

 

This is an iPlanet Application Server forum. Please ask this question in a newsgroup or forum for Netscape and/or broswer questions.
David

Similar Messages

  • Dynamic versioning plugin tag doesn't work for Netscape using 1.4.1_01?

    When I use dynamic versioning for plugin, for example:
    <EMBED
    type="application/x-java-applet;version=1.4.1_01"
    >
    It doesn't work for netscape 7. Although 1.4.1_01 was installed on the machine, the applet was not able to be loaded. Plugin was not found.
    Anything wrong with the tag? It is OK for 1.4.1
    Thanks

    When I use dynamic versioning for plugin, for
    example:
    <EMBED
    type="application/x-java-applet;version=1.4.1_01"
    >
    It doesn't work for netscape 7. Although 1.4.1_01 was
    installed on the machine, the applet was not able to
    be loaded. Plugin was not found.
    Anything wrong with the tag? It is OK for 1.4.1
    ThanksI lost alot of sleep over this!
    I finally got it to "seemingly" work
    but by NOT using 1.4.1 attribute..
    See my HTML example
    http://hyperbyte.ab.ca/JavaZone/
    While it doesn't work with the 1.4.1
    attribute it does work with Netscape
    Good Luck!
    Sincerely:
    Tony Swain
    Senior V.P. of Software Development Hyperbyte inc.
    http://www.hyperbyte.ab.ca
    Netscape DevEdge Champion Devs-Java Newsgroup
    snews://secnews.netscape.com/netscape.devs-java

  • Why the server for registration doesn't work now ?

    i try to register my iphone 4s and after 3 minutes when tryies to make the activation says your iphone coudn't be activated because the server for activation is temporary stoped. :|

    we're users here.  We have no way of knowing why the activation servers are temporarily unavailable.

  • Why the next button seems doesn't work in the video player?

    When I play a video on my Itouch and wanna to watch the next one, can't I just simply click the next button like what I what I do when I play songs? It seems that the next and previous button can only speed or fast-back a video, but cannot change to any other video. Is that the way a touch works or is there any thing wrong with my touch?

    It's a bug, and it has been reported. Please report it yourself, the more reports the better. It's no good asking Adobe in this forum to fix something.
    Peter

  • Why the code on JSP doesn't work?

    I have a set of code to retrieve a session data. In the servlet, the code is the following:
    Shop shop = shopService.getShop();
    if (shop == null)
         throw new ServletException("shop not found in session");
    request.getSession().setAttribute("subCategoryList", shop.getSubCategories());where the shopService is an application scope data while the shop is a session scope data.
    I mvoe the above code to a JSP file with JSTL as
    <c:set value="${applicationScope['shopService']}" var="ss" />
    <c:set value="${ss.shop.subCategories}" var="subCategoryList" />
    <c:forEach var="subCat" items="${subCategoryList}">
         <li><a href="<c:url value="/shop/admin/item/category/${subCat.id}/new"/>"><c:out value="${subCat.name}"/></a></li>          
    </c:forEach>
    ...and no data is shown. I can't figure out the reason.
    Can anyone help me out of this problem?
    Thanks

    "no data is shown". Do you get an exception in the server log perhaps? This can happen when the response has already been flushed to the browser, it will not display the stacktrace in the page anymore.

  • I recently got iOS 6. When I go to purchased in the App Store it doesn't work. I had doodle buddy everything which I deleted to get the update. I had a lot of extras that were free on doodle buddy everything. I tried doodle buddy gold but it asks pay extr

    (Sorry about the terrible abbreviations up there I ran out of space)
    I really want doodle buddy everything again. Does anyone know how to get it.

    Chris CA wrote:
    Did you createa smart playlist? It's purple with a gear icon.
    And you set the criteria to
    Match rule:
    Date added is in the last two weeks?
    I tried it, but couldn't get it to work. I think I had trouble with the Rule. I put a Rule in as follows: Data added in the last five hours? I added music (data) but nothing appeared in my Smart Playlist. Oh yes - I named the playlist: Recently Added.
    What did I do wrong? Is it necessary to have a question mark at the end of the Rule? I couldn't find anything on how to create a Smart Playlist in Help. There is stuff in there, but it does not go into much detail, i.e., nothing on the proper wording of the Rule.

  • Hi, I have installed ff 5, but the mcafee site advisor doesn't work (it did tell me this - sorry!). How can I reinstall v4.0.1 please? thank you

    Does exactly what it says on the tin innit

    McAfee have taken the decision to rewrite the Firefox SiteAdvisor plugin to make it easier to update. This should ensure that Mozilla's fast-release schedule does not cause lengthy delays after future version updates. What it means for Firefox now though is that until the rewrite is complete - and tested - SiteAdvisor is being prevented from loading in Firefox in order to avoid the possibility of software incompatibility.
    The SA rewrite is projected to take a few weeks to complete and test; it should be ready by about the third week of July, although the exact date is not being given at this stage. It could be earlier.
    In the meantime, users who are concerned about the safety of websites may wish to consider WOT as a temporary substitute. WOT ratings are set by user consensus rather than by automated site testing, so WOT is not a full replacement for SiteAdvisor. It is, however, a good rating tool in its own right (I use both it and SiteAdvisor in all my browsers) and is apparently unaffected by the upgrade to FF5.
    There is a discussion about this on the McAfee forums [https://community.mcafee.com/message/194743#194743 HERE]

  • HT201343 My Mac book pro all of a sudden doesn't have the airplay icon and doesn't work with my Apple TV . Why  ?

    My Mac book pro all of a sudden doesn't have the airplay icon and doesn't work with my Apple TV . Why  ?

    The Airplay icon will not display if the OS is unable to locate any Airplay devices.
    I would check that both devices are connected to the same network and maybe even power cycle the network devices - eg router etc
    Maybe even try to connect both devices to another network like an iPhone personal Hotspot and see if that helps to isolate the problem

  • The onDeactivate event handler doesn't work in InDesign CC. Why?

    Hi guys.
    I’m working on a script in Javascript for InDesign CC.
    The big problem is that the onDeactivate event handler doesn’t work.
    Here’s an example that works in InDesign CSx but not in InDesign CC:
    #target indesign
    var w = new Window ("dialog", "Test onDeactivate");
    var et_1 = w.add("edittext", [undefined, undefined, 300, 30], "Lorem ipsum");
    var et_2 = w.add("edittext", [undefined, undefined, 300, 30], "Dolor sit amet");
    var st = w.add("statictext", [undefined, undefined, 300, 30], "CONSOLE:\r\r", {multiline: true});
    et_1.onDeactivate = et_2.onDeactivate = function(){
         st.text = "CONSOLE: I left the field with this text:\r\t«" + this.text +"»"; }
    var b_ok = w.add("button", undefined, "OK");
    w.show();
    The script shows a dialog window with 2 edit text fields: when a field loses the focus (clicking on the other one), the «CONSOLE» shows the text of the old field.
    Adobe, please, fix this issue as soon as possible.
    Thanks.
    Giorgio

    It's a bug, and it has been reported. Please report it yourself, the more reports the better. It's no good asking Adobe in this forum to fix something.
    Peter

  • Why an automatic sign in doesn´t work?

    Why an automatic sign-in doesn´t work? I have chosen to the choose: "Sign in me automatically when Skype starting".

    Hi Nadia,
    Although a slightly different issue, could you try solutions 1 and 2 from here: http://helpx.adobe.com/creative-cloud/kb/creative-cloud-application-recognizing-available. html
    Thanks,
    - Dave

  • Why tethering with USB cable doesn't work after IOS6.0 update?

    why tethering with USB cable doesn't work after IOS 6.0 update?

    Try updating the carrier settings, if that doesn't do it try following along with this Apple doc -> iOS: Troubleshooting Personal Hotspot

  • HT1338 I'm trying to print a document fro safari and the print command is at the bottom of the page and not visible.  I can't move it up and the print command shortcut doesn't work.  How do I print this document.

    I'm trying to print a document from safari and the print command is at the bottom of the page and I can't move it up.  The print command shortcut doesn't work and I would like to know how I can print this document.

    Why do we have to install 2 add ins for something that should be built in? Please add this to the next version or an update to this one even. We should see the full path of a bookmark when we search for it. Show Parent Folder alone isn't enough if you have sub folders, so I installed Go Parent Folder as well in case of sub folders.

  • Where should I change the adapter? It doesn't work from the start.

    where should I change the adapter? It doesn't work from the start. But there is no apple store in our city.

    The phone does not charge when linking with adaptor. But it is OK when linking PC using USB instead. I do not know why, but I am just sure there is something wrong with the adaptor.

  • I have an FF 3.6.10, just reinstalled flash plugin but in gmail the advanced attachment feature doesn't work anyway. what can I do?

    i use FF 3.6.10, just reinstalled it. I have also reinstalled flash plagin. but anyway in gmail the advanced attachment feature doesn't work. what to do?

    Hello & a warm welcome to the forums & Macdom!
    For Lightroom 3...
    http://www.ebay.com/sch/i.html?_nkw=adobe+lightroom+3
    Silly Apple, you can't even buy Lion/10.7 anymore, onlt ML/10.8 after you get SL/10.6!???
    You need to get 10.6 & update to 10.6.8 first to be able to buy it from the App Store & download it.
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 4GB at least, more if you can afford it)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.
    Which apps work with Mac OS X 10.6?...
    http://snowleopard.wikidot.com/
    It's been pulled from the online store, so you have to call Apple to buy it, last I heard, but quick, call before it's gone!
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4

  • Why some eMac DVD SuperDrive doesn't work?

    Why some eMac DVD SuperDrive doesn't work?
    They have a limited hours life, or some DVD or CD can damage them?
    Thank you

    Hopefully some day I will find the answer for this question.

Maybe you are looking for