I have a javascript function that calls an applet function, 3.67 breaks this, no problem before, on Mac 10.5, FF 3.66 worked fine, Safari works fine, so does IE on PC, will test FF on PC next

I'm getting two javascript errors that I've never had before until 3.67. One of these is a MooTools error that I have to track down, the other is a failure to read a Java function on an applet
== URL of affected sites ==
need a login

Hi gikku,
Good idea! I forgot about the web server port forwarding, that will allow the wiki to be seen over the internet.
One question: what does adding the dyndns address to "Server Admin > web > settings > sites" actually do? I'm not too knowledgeable about Server Admin.
Thanks,
Brian
corewerkz

Similar Messages

  • Hi - Have a Javascript (search) that was ok thru 9, but won't run in X. Thank you.

    Hi - Have a Javascript (search) that was ok thru 9, but won't run in X. Thank you

    Quoting the Acrobat X SDK:
    Changes to search object
    The following changes have been made to the "search" object properties:
    ● The thesaurus and soundex properties have been removed
    ● The legacySearch property is now deprecated and always returns false.
    Changes to SearchExecuteQuery
    The following have been removed from nWordOptions parameter of SearchExecuteQuery:
    ● kWordOptionSoundsLike
    ● kWordOptionThesaurus
    The function SearchIsLegacySearchAvailable has been deprecated and will always return false.

  • HT1551 I am usually fine with my apple tv. However, quite frequently I get the message that apple tv cannot access apple store. i go to my Ipad or Mac computer and I am able to acess apple store easily. Does anyone have an idea on what is wrong?

    I am usually fine with my apple tv. However, quite frequently I get the message that apple tv cannot access apple store. i go to my Ipad or Mac computer and I am able to acess apple store easily. Does anyone have an idea on what is wrong?

    Have you tried connecting it with an ethernet cord?  It could be a wifi issue.

  • I need to download dell drivers to a jumpdrive connected to my iMac.  Will this cause problems with my Mac?

    I need to download dell drivers to a jumpdrive connected to my iMac.  Will this cause problems with my Mac?

    Thanks.  These drivers are for the audio, etc. for a dell laptop I purchased used.  ( Needed something cheap for a training video that would only run on Windows.  Tried Emedia player but picture was too fuzzy.)  Dell support said I should contact Apple support for instructions on how to get the drivers onto the jumpdrive.  Any tips on doing that?

  • Bluetooth is no longer working on iPhone 4s.  It used to work very well. Not any more. Have tried reset network settings and all settings, no joy.  Never had bluetooth problems before.  Have tried connecting to other peripherics nothing works. Can you hel

    Bluetooth is no longer working on iPhone 4s.  It used to work very well. Not any more. Have tried reset network settings and all settings, no joy.  Never had bluetooth problems before.  Have tried connecting to other peripherics nothing works. Can you help?  Thank you.

    Bluetooth is no longer working on iPhone 4s.  It used to work very well. Not any more. Have tried reset network settings and all settings, no joy.  Never had bluetooth problems before.  Have tried connecting to other peripherics nothing works. Can you help?  Thank you.

  • I'm creating a public website and i have a javascript code that works on all browser except firefox. What should i do?

    Hi,
    I'm creating a public website that has a simple javascript button that will just set an asp.net dropdown value. It works on all browser except firefox...
    website: http://healthcareaustralia-web.sharepoint.com/Doctors/DailyShifts1.aspx
    So when you click on reset button it doesn't set the dropdowns to ALL
    this is the code:
    function resetFilters()
    var dropdown = document.getElementById('ctl00_PlaceHolderMain_DropDownList1');
    var ans = "All";
    dropdown.value = ans.value;
    document.location.href = "/Doctors/DailyShifts1.aspx";
    }

    hello, when i test it with current firefox versions, all works as expected: i choose custom dropdown values & select "filter", when i click "reset" next all dropdowns default back to "all" and the list gets refreshed.
    maybe try to [[Clear the cache - Delete temporary Internet files to fix common website issues|clear the cache]] & and reload the page or for other common troubleshooting steps refer to [[Websites look wrong or appear differently than they should]].

  • Adding a button in an Advanced Data Grid that calls a AS function

    I'm having a bit of trouble with this... maybe I'm missing something elementary.
    I have a data grid that populates.  I'd like to make the first column that currently displays the an ID display a button that executes a function that acts on the passed ID.
    I can get the button to display, but when I click it, I get an error:
    ReferenceError: Error #1069: Property userlistDeleteUserFunc not found on Main and there is no default value.
    at userGrid/__lblData_click()[C:\Users\Mike\\src\userGrid.mxml:7]
    So the grid looks like this:
    Main.mxml:
    <script tags...>
    private function userlistDeleteUserFunc(id:Number):void{
    Alert.show(id.toString());
    </script tags>
    <mx:AdvancedDataGrid x="10" y="12" id="userlistgrid" width="808" height="348" dataProvider="{userlistdata}" selectionMode="multipleCells" editable="true" enabled="true" sortableColumns="true">
    <mx:columns>
    <mx:AdvancedDataGridColumn width="90" dataField="id" headerText=" " editable="false" />
    <mx:AdvancedDataGridColumn headerText="Username" dataField="username" editable="false"/>
    <mx:AdvancedDataGridColumn headerText="Last Name" dataField="last" editable="true"/>
    <mx:AdvancedDataGridColumn headerText="First Name" dataField="first" editable="true"/>
    <mx:AdvancedDataGridColumn headerText="Email Address" dataField="email" editable="true"/>
    <mx:AdvancedDataGridColumn headerText="Phone" dataField="phone" editable="true"/>
    </mx:columns>
    <mx:rendererProviders>
    <mx:AdvancedDataGridRendererProvider dataField="id" renderer="userGrid" columnIndex="0" />
    </mx:rendererProviders>
    </mx:AdvancedDataGrid>
    And the renderer:
    userGrid.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:MXAdvancedDataGridItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      focusEnabled="true">
    <s:Label text="{data.id}"/>
    <s:Button id="lblData" top="0" left="0" right="0" bottom="0" label="Delete" click="{parentApplication.userlistDeleteUserFunc(data.id)}" />
    </s:MXAdvancedDataGridItemRenderer>

    Please help me !!!! I have been stuck up with this issue for the past two days and I need to atleast figure out if this is possible or not in the first place.

  • Calling a function that's inside another function

    function test1():void
         function test2():void {..}
    How do I call test2 function (outside test1 function)? Is it possible?

    Hi,
    yes it is possible.
    Here is the code helps u
    function foo():Function
    var x:int = 40;
    function rectArea(y:int):int // function closure defined
    return x * y
    return rectArea;
    var myProduct:Function = foo();
    var s = myProduct(4);
    trace(s);
    Saransoft

  • NS6 browser call to applet function

    Using javascript to call an applet public function does not work under NS6; This used to work in Navigator 4.7. I have a modal dialog that asks whenever the user closes the browser page to save or cancel current configuration settings. The dialog is an applet function call during "onunload". NS6 freezes and does not respond after the dialog pops.

    If you're a developer, it's better to use the latest version of Mozilla http://www.mozilla.org/ instead of Netscape 6. That way, if you find a bug or experience any kind of problem, you can go to Bugzilla http://bugzilla.mozilla.org/ and see if the bug has been reported. What you're describing sounds like bug 14711 http://bugzilla.mozilla.org/show_bug.cgi?id=14711

  • I had to disconnect Mozilla because it accessed over 1500 sites that I deleted; how can i install without this same problem?

    I had to remove all Mozilla programs because each time I would access Mozilla, over 1500 sites would open and slow down my computer and I deleted these sites or thought I had deleted them but for some reason Mozilla would access them and open them creating a huge problem with shutting down Mozilla. I was enjoying Mozilla again till this recurring problem. Can someone provide guidance as to how I can resolve this matter and reinstall Mozilla without having 1500 sites open at once?

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox Profile Folder.
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    *http://kb.mozillazine.org/Multiple_profile_files_created

  • HT5957 I have downloaded the ios 7 for my ipad and now my screen is locked and shows a plug pointing towards an itunes symbol.  Does anyone have an way out of this frustrating problem?  Holding down the home and power buttons together has not worked.

    I have downloaded ios 7.2 update for my ipad and now my screen is locked and shows a picture of a plug and the itunes symbol.  Does anyone have advice to fix this frustrating problem?  I have seen help online for iphones, but none for ipads.  The screen will not budge.  I have tried holding down the power and home buttons at the same time, to no avail.  Please, can some of you smart people help me?

    Hi there Martha250,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    -Griff W.

  • Firefox 6.0.1 will not open .aspx files in a browser window. Safari does it fine. I am greatly disappointed in your lack of help for this problem. Your forum people keep blaming the web site yet Safari works fine.

    I tried to read my electric bill and got a message to view in an application or download. I assigned Preview.app to view it and it wouldn't work. Safari opens the bill in Preview.app by default.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • I have a JavaScript loop that works in Dreamweaver but not in my browsers. What's missing? Should the page load another script first?

    I know that the code is clean because it runs perfectly in DW (even with the occasional lag). Shorter loop functions have also worked in DW, but not in my Chrome or IE browsers. Is there a script or program that the HTML should run first?

    I'm sorry, of course:
    The Crow Haven Witches and Psychics of Salem
    I am designing a phone psychic hotline (don't ask! ) page, and the loop is supposed to sort the readers according to their availability. Each should appear in their respective listing.
    The setup works perfectly in DW, but none of the scripted material appears in the current page. I will add a photo of how it does look in DW.

  • How could stop this thread that calls an externall function ?

    Hi all.
    i need an help about syncronization of two thread.
    the first one is smt like that
    Thread t = new Thread(new Runnable() {
                   public void run() {
                        long startTime = System.currentTimeMillis();
                        while (System.currentTimeMillis() - startTime < lifetime) {
                             if (c.dynamic) {                    
                                  c.adjustLayout();
                             c.repaint();
                             try {
                                  Thread.sleep(delayMillis);
                             catch (InterruptedException ex) {
                                  // ignore
              t.start();where c.adjustLayout(); & c.repaint(); are syncronized over a astructure called G using syncronized(G)
    now the second thread is:
         Thread t = new Thread(new Runnable() {
                   public void run() {
                        long startTime = System.currentTimeMillis();
                        while (System.currentTimeMillis() - startTime < lifetime) {
                             if (c.updateVisible) {
                                  c.updateVisibleGraph();
                             try {
                                  Thread.sleep(delayMillis);
                                  Thread.yield();
                             catch (InterruptedException ex) {
                                  // ignore
              });where the function c.updateVisibleGraph(); is syncronized over G as well. the problem is that this function, takes seconds, and block thread A and B (both of them ar suyncronized, so if B is running A cannot run).
    how can i stop c.updateVisibleGraph(); in the middle of the exectuion or each 50ms.
    is this possible?
    thanks
    Edited by: ELStefen on 26-ago-2010 16.08
    Edited by: ELStefen on 26-ago-2010 16.11

    isocdev_mb wrote:
    Using a synchronized-block is not designed to give up the lock for little while, it holds the lock until the block ends. Your requirement needs a far more fine-grained approach, quite different from your sketched implementation.
    It would involve quite an amount of guessing of what's behind the G and c your mentioning to suggest a way out. Please elaborate on what you're trying to achieve so that we can suggest how to do that...
    P.S. this forum likes problems to come with a simple working example, which you did not provide and a description of what you'd like to achieve, some context.as i thought, damn.
    Well give a working example is quite complex for the time being. Is a big project and take out this part is quite complex. But i can explain the goal.
    Practically there's a Graph (G)
    this graph is used by 2 thread, one is the update the edges and vertices, adding and removing them. the other one thread is the painter of the graph.
    the problem is when the first thread is updating the structure of G, sometimes this operation takes time (seconds) and being synchronized on G it blocks the paint thread as well.
    the thing that i would like to have is keep the painting working each tot millisecond. the updating thread works when necessary. if the update operation takes to long, it has to be stopped in the middle (and it has to restart after the paint) in a way that the paint thread can be executed.
    as the code is, and as you said, synchronizing the entire block code cannot works as i want.
    is this more clear? any clue about how can i solve this?
    many thanks
    Edited by: ELStefen on 27-ago-2010 12.43

  • Javascript from Java - calling html control functions

    i have called the attributes of an html control from java using this method
    private JSObject iframeObject;
    iframeObject=(JSObject)win.eval("parent.document.getElementById('"+popupIFrame+"')");
    iframeObject.setMember("src", "../Applet/Popup.html");but how can i call the functions of a control
    for example the focus() function of a textbox or someother controls???

    its ok i got it.
    win.eval() can do it

Maybe you are looking for