Disable Plug in for certain Applet applications

I have a situation where I have 2 applets on a project. The first applet (written using <APPLET> tag) uses simple AWT and hence does not need the Sun Java Plugin and works great using the Browser's JVM. But this second applet (also uses <APPLET> tag) consists of SWING components and hence needs to use the Sun Java Plugin. How do I programmatically instruct the second Applet to use the Sun's Java Plugin and let the first Applet run under the browser's JVM, without any user/client intervention! Is there an attribute in the <APPLET> tag that can be used to indicate which JVM to use?
Please help, since I do not want to use Sun Java Plug in for both applets, especially since the first applet which does not require it, slows down tremendously under the Plug in!
Also, the other applet is of another application and I cannot change or disturb that!
Thanks

I do not undertsnad fully... do you mean that I should convert the HTML file that uses the second applet (the one that requires the plugin) and then the HTML converter takes care of using the plugin. And I do not need to "check" the option for Tools->Internet Options->Advanced->"Use Java2 for <applet>" for IE. That way the first applet will run under the IE JVM and the second will use the plugin???
Please confirm the above.
Thanks much for your prompt reply.
Why don't you use the HTMLCONVERTER that comes with
the JDK to convert the html file for the applet that
needs a plugin?
;o)
V.V.

Similar Messages

  • HT201299 Not enable or disable cellular data for certain iOS apps and features from setting? I keep it off but when I go to other app it on automatic

    I can't  enable or disable cellular data for certain iOS apps and features from  setting.
    When I off data for specific application and go to other option it automatic on all application
    Any one can help

    SOLUTION! (NO NEED TO RESET YOUR IPHONE SETTING!)
    I have the same issue for the last two weeks. But i have already managed to solve the issue all by myself. When i go to Settings > Cellular > below the tab "use cellular data for:", i turned off some apps which i didnt want to use with cellular data. As soon as i go back to Settings, and then i went back to Cellular, the apps which i had switched off earlier, automatically turned back on.
    Here's the solution:
    Either you're using wifi or cellular data, first of all you're gonna hafto turn on the cellular data use for App Store. Once you have turned it on, go to App Store application. Update ALL the apps which have new updates available. If it asks you to log in your App Store, just do so. If there's something wrong with your debit or credit card information, it will ask you to update to a different card. Just do what it asks. Put in a new credit or debit card info and fill in the forms provided. The card you're using must be usable and has usable balance in it. Let's say atleast $10 to $20. As soon as it confirms your card successfully, the app updates will start automatically. Continue to update all the apps. After all updates are finished, go back to Settings > Cellular. Try to switch on or off some apps for data use and recheck.
    Try it yourself! Have a nice day and don't put a blame on Apple for this.
    From Malaysia, with love.
    Please hit LIKE button if this solve your issue. Thank you very much! (:

  • HT201299 My Iphone 4s wont remember the disable cellular data for certain apps as I soon as I switch on the 3g and go back to home and come back again to Cellular the all apps are being enabled..Please help

    My Iphone 4s wont remember the disable cellular data for certain apps as I soon as I switch on the 3g and go back to home and come back again to Cellular the all apps are being enabled..Please help

    First, try a reset: hold down the home button along with the power button until you see the Apple, then let go.

  • Disabling cprojects alerts for certain users only

    Hi
    I need that no email alerts are sent to certain roles/people who have authorizations in cprojects. There are numerous alerts sent as email for any change of dates, thresholds etc. I need to disbale any email being sent in this for certain users.
    How can it be done?
    Regards
    Senthil

    Hi Senthil,
    Would you please check the following
    Evaluations -> Business Add-Ins (BAdIs) -> Change Alerts from Severities in cProjects
    related method is CHANGE_ALERTS_OF_PROJECT, which has a change parameter:
    CT_LANGUAGE_OF_RECIPIENT. You can apply your own logic to remove some recipient of the table, so that they do not get the e-mail.
    Never tested, please check it out.
    Kind regards,
    Zhenbo

  • Disable security copy for certain application

    I keep receiving an error when disabling the photo appication in the cloud.
    I am out of space in iCloud therefore I would like to recover space by removing photos and videos in the cloud, but I keep receiving error "At the moment it is not possible to disable security copies, try later" (something like that, translated from spanish).
    Any idea?
    Mirko

    Thanks to Apple telephone support I managed to solve this. Problem is that backup in the cloud is shared by both iPhone and iPad, though the problem reported when disabling the photo application is other (..try later).
    To solve this, I went to the iPad and not only stopped syncing to the cloud, but disconnected the iPad from it.
    Then in the iPhone it'll be possible to recover space by disabling whatever application from iCloud backup. Once you're done, you can connect the iPad back to the cloud.
    Tricky, but it works.

  • Does Graphics2D need a plug in for viwing applets that use it?

    Hi,
    If an applet I write uses Graphics2D objects will people who view it on the internet need to download a plug-in to view the applet (as they do for applets using Swing)?
    I am a novice so I would welcome any advice.
    Thanks,
    John

    Yes. Graphics2D was added to the API in the java version 1.2, so you'll need the plugin just like with swing and the collection framework.
    Note that people who use netscape 6 wont need the plugin :-)

  • Disable row selection for certain column in JTable

    I have a JTable with several columns, one of which contains an "Info" button. I already have it worked out that when I click on the "Info" button, that event gets passed from the JTable to the button. I have multi-select enabled for the JTable, but I don't want clicking on the "Info" button to change the current selection. I have a klugy "fix" working where I save off the current selection, and then restore it after the user presses the "Info" button. However, this results in "flashing" - the row containing the selected "Info" button becomes selected briefly, then the original selection is restored. How can I avoid this? I would like to just ignore selection events on the "Info" column, but still pass the mouse click event through to the button.
    Any suggestions?

    try this
            JTable table = new JTable() {
                public void changeSelection(int rowIndex, int columnIndex, boolean toggle, boolean extend) {
                    if (!getColumnModel().getColumn(columnIndex).getIdentifier().equals("Info")) {
                        super.changeSelection(rowIndex, columnIndex, toggle, extend);
                    }//else

  • How to disable network connections for an application

    Hi to all,
    I would like to know if there is any way a user can disable network connections for a specific application.
    Thank you,
    Xwang

    Yes, but I would like to block only a specific application, not all the traffic from the PC.
    I've found this "solution" which uses iptables on the net:
    "Add a group to your system (I use nonet myself), then add a rule to your output chain like this: -A OUTPUT -m owner --gid-owner nonet -j REJECT --reject-with icmp-net-unreachable Run the program for which you know in advance that you want to block, with sg (sg nonet "your_prog your_args")."
    Do you think is it right?
    Another suggestion was to use unshare to call the program disabling the net for that program only.
    The problem is that unshare is runnable only by root so, in case, I should turn on its setuid flag in order to execute the program as a normal user, but I don't know if it is safe to do that.
    Last edited by Xwang (2014-10-11 08:06:16)

  • Looking for a good Javascript to let me know if the "Enable applet plug-in and Web Start Applications is enabled" is disabled or enabled within Java Preferences?

    If this code could work on Snow Leopard as well, that would be awesome. I have a code to tell if Java is enable or disabled on any web browser, but it does not detect if the Java Preferences "Enable applet plug-in and Web Start Applications is enabled" is enabled or disabled. Just looking for a specific code to tell if this option is disabled or enabled.
    Thank you

    Launch Applications/Utilities/Java Preferences.app by double-clicking.
    EDIT; But I think you are confusing this with JavaScript which has nothing to do with it.

  • How can I enable java applet plug-in and Web Start applications via terminal?

    Since the last Java update to Snow Leopard, I have found that the system periodically disables the Java applet plug-in after a period of disuse.  I know I can go to /Applications/Utilities/Java Preferences and just click to re-enable Java.  But I want to write a script which will do this periodically for a couple hundred Mac users where I work. 
    My question is - how can I reenable the Java applet plug-in and web start applications via Terminal command?  Is this possible?  Is there a plist file that can be modified, etc.?
    Bob Reed

    It is my understanding that Apple's most recent Java update automatically disables Java after a certain period of time that it hasn't been used.  We don't want users to have to keep re-enabling it.  So we wanted to find a way to do this via script either run by a Casper JSS server or stored locally on each workstation.   With the guidance provided by Mark Jalbert above and some text from a script written by Rich Trouton, I was able to make a script (with some minor changes) and a launch agent to re-run the script upon login.  So the preference is always enabled.
    For your reference, the script content is:
    #!/bin/sh
    # DYNAMICALLY SET THE UUID FOR THE BYHOST FILE NAMING
    if [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` == "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c51-62 | awk {'print tolower()'}`
    elif [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` != "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-62`
    fi
    # Set the the "Enable applet plug-in and Web Start Applications" setting in the Java Preferences for the current user.
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsEnabled" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsEnabled bool true" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsLastUsed" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsLastUsed real $(( $(date "+%s") - 978307200 ))" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    The launch agent plist content is:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Disabled</key>
              <false/>
              <key>Label</key>
              <string>org.XXXXX.enableJavaPlugin</string>
              <key>ProgramArguments</key>
              <array>
                        <string>sh</string>
                        <string>/Library/Scripts/XXXXX/enableJava_plugin.sh</string>
              </array>
              <key>RunAtLoad</key>
              <true/>
              <key>StartOnMount</key>
              <true/>
    </dict>
    </plist>
    I hope this is helpful to anyone wishing to keep the Java web plugin enabled.
    Bob
    Message was edited by: Robert Reed2

  • How to fix acrobat/pagemaker plug-in for Outlook 2013 from disabling on restart?

    I have an issue with one of my customers where they have to go in and manually enable the Adobe Acrobat plug-in for Outlook 2013 every time they close and re-open Outlook or restart their computer.  When I go into Add-Ins in Outlook the plug-in isn't in the disabled COM add-ins, but in  the Inactive Application Add-ins section and the user needs to click on Go and then check the box to enable it.  This happens everytime Outlook is restarted or the computer is restarted.  Anyone seen this issue and have a fix?  it's a Windows 7 pro machine running Adobe Acrobat X and Office 2013 (cloud install).  Office and Windows are all patched and up to date.  Running "check for updates" within Acrobat says it's up to date also.  Thanks for any input or help in advance.

    Sounds like the Security settings in the registry for Outlook 2013/Office 2013 are stuck and not letting you permantly change/the setting.  This has more to do with Office than it does with Acrobat so you may want to go to the MS website to see where these settings live in the Windows registry.

  • No option to Enable the Java applet plug-in and Web Start applications

    How do I Enable the Java applet plug-in and Web Start applications
    Their is no option under java preferences General Tab
    The options i get their are
         Run appelts
              in their own proccess
              Within the browser process
              (Defaut most compatible)
    Under the network tab im told
    By default java applets and web start applications use network settings in the system network preferences. Only advanced users should modify these settings
    Any ideas on why it is like this?

    Mac OS 10.6.8
    This happend once before when I was running 10.5.8 I fixed it but for the life of me i can't remember how i did it.

  • Disable Privacy Settings for Local Application

    Hi,
    Is there a configuration / policy file that can be used on a
    user's local machine to disable the privacy settings dialog that
    pops up asking "Allow / Deny" for a Microphone?
    Our application is distributed on the client from an
    installer that must be run with administrative rights, I need to
    find a way to disable this from showing since the user is
    implicitly allowing us access to their microphone; after all the
    software is developed specifically for audio recording.
    Thank you,
    - Justin

    Chris,
    We learned that the Privacy tab (in Settings) can be found under the Flash plug-in for Firefox, but only if Firefox is running under an administrator.
    Unfortunately, we haven't had much luck with the mms.cfg file. The following was used in the mms.cfg file (placed in both the %WINDIR%\SysWow64\Macromed\Flash and %WINDIR%\System32\Macromed\Flash” directories):
    AVHardwareDisable = 0
    AVHardwareEnabledDomain = local
    AVHardwareEnabledDomain = 127.0.0.1
    AVHardwareEnabledDomain = localhost
    AutoUpdateDisable = 1
    The AVHardwareEnabledDomain settings seem to be getting ignored regardless of whether the user is a standard user or an administrator. I also checked to make sure it wasn't just a local problem by going to a website that uses a microphone (http://www.testden.com/accent-reduction/systemcheck.htm). Adding the requested domain to the list (AVHardwareEnabledDomain = train.act360.com) still didn't bypass the allow/deny dialog box.
    We know that the mms.cfg file is being read because setting "AVHardwareDisable = 1" will result in no prompt and that section being greyed out in Global Settings. I saw a post that suggested this setting was required to even make the AVHardwareEnabledDomain work, but it seems to block the local entirely and still brings up the dialog query on the internet site.
    Thanks,
    Torrey

  • Office Web Apps - how to disable office web apps features for one web application

    ENV: Sharepoint 2010 farm with office web apps + fast search
    I have the requirement for one web application to open all its documents in client applications - I can enable feature "OpenInClient". This web application uses team site template and other web application also uses team site template. ( feature
    stapling ruled out)  Now I can run powershell cmdlet to enable this feature on all the currently existing site collections. But the requirement is to enable this feature for all the future site collections. This web applications has 60 k site collections
    and atleast more than 10 site collections get created each day and they dont like the option to run a powershell script each day to activate this solution.
    Is there any other way to by default activate new site collections on this WA to open in client applications by default (can we disable this office webapps features only on one web app)?
    VM

    I have learnt from this forum that it is not possible to turn off Office web apps on single web application. The line of control lies at farm level and then at site collection.
    Disable
    Office Web Apps on web application
    VM

  • Difficulty scanning slides on my Epson V600  running Lion, Adobe Photoshop CS6,  and can no longer use the Epson scan application or the plug in for Photoshop. Should I revert back to leopard in my time machine to finish scanning my family slides?

    I am running Lion 10.7.5, Adobe Photoshop CS6, scanning slides on my Epson V600 and can no longer use the scan application or the plug in for Photoshop. Should I revert back to leopard in my time machine to finish scanning my family slides?
    In 10.7 there is not a twain that works with Photoshop for importing with all the options needed to scan transparencies. I noticed that when I was scanning in October 2012 I was still using CS6 so somehow I was managing to be able to use all the scan features.
    They sell 2nd party software (VieScan and Silverscript)which I found to be just mimially OK and very hard to use.
    I just want to scan like I used to.
    Can I use time machine to go back to an earlier operating sysytem LEOPARD,  and then do my scans and then save the photos and them go back to the LION system?
    I spent 7 hours trying crazy solutions - downloading Windows CS2 Photoshop and then using a program so I could run it on the apple. Then I couldn't figure out how to put a plug in for the scanner in the stupid windows Photoshop program. Googgling the computer like a mad woman trying to ask questions. I am not giving up...
    Please help if you can...
    Thanks...

    I assume you've tried using Image Capture. Give VueScan a try.
    http://www.hamrick.com

Maybe you are looking for