1.5.0_05 JRE and game problem

Using Windows XP Pro, sp2, Firefox browser.
When playing euchre on pogo site, with applets, I am having problems with the playing room freezing up, or when playing, parts of other tables images will block some of my playing area. I think pogo causes a lot of that but I would not have the problem if I used I.E., but hate to as it is a much slower browser. Can anyone help with any ideas to make the game site work better for me using Firefox browser with the Java 1.5.0_5?
Also, is there any way to set Java to recognize Firefox browser, as only Netscape/Mozilla and I.E. are the choices so tells me to check that they are properly installed on the system if I try to select those. Thanks.

Using Windows XP Pro, sp2, Firefox browser.
When playing euchre on pogo site, with applets, I am having problems with the playing room freezing up, or when playing, parts of other tables images will block some of my playing area. I think pogo causes a lot of that but I would not have the problem if I used I.E., but hate to as it is a much slower browser. Can anyone help with any ideas to make the game site work better for me using Firefox browser with the Java 1.5.0_5?
Also, is there any way to set Java to recognize Firefox browser, as only Netscape/Mozilla and I.E. are the choices so tells me to check that they are properly installed on the system if I try to select those. Thanks.

Similar Messages

  • Updating to j2se 5, update 7 (jre and jdk) problems..

    I'm runnin win98se, and meet all the minimum requirements..Well I just installed both the jdk and the jre using the online installation. Where did the jdk go? I have no idea what folder the javac.exe file is, so I can't compile anything. Any suggestions? And will the jre be automatically update when I use java.exe command?

    I'm runnin win98se, and meet all the minimum
    requirements..Well I just installed both the jdk and
    the jre using the online installation. Where did the
    jdk go?Even Win98 SE has a file search. Plus, since Windows installs everything into "Program Files" or what it's called if not directed otherwise, I'd have a look there.
    I have no idea what folder the javac.exe file
    is, so I can't compile anything. Any suggestions?Open Explorer. Hit F3. Enter "javac.exe".
    And
    will the jre be automatically update when I use
    java.exe command?No. Why should it?

  • I am making code to try to make a game and my problem is that my code......

    I am making code to try to make a game and my problem is that my code
    will not let it change the hit everytime so im getting the first guy to hit 1 then next hits 8 and so on and always repeats.
    Another problem is that I would like it to attack with out me telling it how much times to attack. I am using Object oriented programming.
    Here is the code for my objects:
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class rockCrab {
         //Wounding formula
         double sL = 70;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 50;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         rockCrab() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              double done = rint(fH - fA);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("Rockcrab hit" +done);
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class self {
         //Wounding formula
         double sL = 1;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 1;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         self() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("You hit" +done);
    }Here is the main code that writes what the objects do:
    class fight {
         public static void main(String[] args) {
              self instance1 = new self();
              rockCrab instance2 = new rockCrab();
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
    }when the code is run it says something like this:
    you hit 1
    RockCrabs health is 9
    RockCrab hit 7
    your health is 38
    you hit 1
    RockCrabs health is 8
    RockCrab hit 7
    your health is 31
    you hit 1
    RockCrabs health is 7
    RockCrab hit 7
    your health is 24
    you hit 1
    RockCrabs health is 6
    RockCrab hit 7
    your health is 17
    my point is whatever some one hits it always repeats that
    my expected output would have to be something like
    you hit 1
    RockCrabs health is 9
    RockCrab hit 9
    your health is 37
    you hit 3
    RockCrabs health is 6
    RockCrab hit 4
    your health is 33
    you hit 2
    RockCrabs health is 4
    RockCrab hit 7
    your health is 26
    you hit 3
    RockCrabs health is 1
    RockCrab hit 6
    your health is 20
    Edited by: rade134 on Jun 4, 2009 10:58 AM

    [_Crosspost_|http://forums.sun.com/thread.jspa?threadID=5390217] I'm locking.

  • Internet Explorer 9, 10 and 11 have games problems on Facebook.

    I Have been trying for 2 months to solve the problem with Internet Explorer 11 and games on Facebook. Each time I click on a game I get a login page which flashes on and off. The only way to stop it is to close Internet Explorer. I contacted Facebook and
    put a report in and I am still waiting after 2 months for a reply. I have since removed IE 11 and also IE 10 which makes it I am now using IE 9. I have reset IE 9 to no avail and I am now at a loss as to what the problem is. I am using Windows 7 on a pc.
    Can anybody help me please.

    [url=http://postimg.org/image/pg9rdcjsr/][img]http://s25.postimg.org/pg9rdcjsr/Facebook_page.jpg[/img][/url]
    I hope this helps as I have not done this before.
    Ermiad
    I've never seen a problem like this before. Check steps given below:-
    See: "How
    to Reset Internet Explorer settings".
    Then...
    1.
    Please download and run the Microsoft
    Safety Scanner tool (freeware).
    2.
    Reboot your PC.
    3.
    Please download and update Malwarebytes Anti-Malware
    Free
    4. Reboot
    Windows in Safe
    Mode and
    run a Full Scan with
    Malwarebytes Anti-Malware.
    If still no joy...
    5. Download
    and Run AdwCleaner, RogueKiller and Junkware
    Removal Tool (Freeware)
    6. Reboot and Test.
    Try the above steps and let us know the result!
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • I updated my software today and since have not been able to use some of the games on Facebook. I have installed the flash player 12 and still problems, can anyone give me some advice?

    I updated my software today and since have not been able to use some of the games on Facebook. I have installed the flash player 12 and still problems, can anyone give me some advice?

    Your above posted list of installed plugins doesn't show the Flash plugin for Firefox.<br />
    See [[Managing the Flash plugin]] and [[Installing the Flash plugin]]
    You can check the Adobe welcome and test page: http://www.adobe.com/software/flash/about/
    You can use this manual download link:
    *http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller

  • Facing problem while using apps world and games

    Hi ,
    i bought blackberry z3 1 week ago, when i want to download apps from blackberry world its show a message that " AN ERROR OCCURED WHILE PROCESSING YOUR REQUEST "
    AND OTHER PROBLEM WHILE GOING TO GAMES APPS IT SHOWS THAT "AN ERROR OCCURED.PLEASE TRY AGAIN LATER( SC_HTTP_server_ERROR).
    PLS HELP ME AS SOON AS POSSIBLE.
    THANK YOU

    Hi and Welcome to the Community!
    First:
    http://kathrynvercillo.hubpages.com/hub/What-People-Think-When-You-Type-in-All-Caps
    Now, please try this process.
    With a strong carrier network signal (e.g., not merely WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (step 1 should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to pop up
    2) Reboot
    Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. IF this fails, you can attempt a harsher method by holding down the up/down volume keys together until the device has fully shut down.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • K790i - Problem in accessing Application and Games Folder

    Hi
    I am not able to open the Application and Games folder on my Sony Ericsson K790i Mobile Phone.
    It gives me an exception "Operation Failed".
    Please advise, what needs to be done.

    Unfortunately this can generally only be resolved by master resetting the phone. Please backup any content you wish to keep prior to doing so. You can find this option: Main Menu > Settings > General > Master Reset > Reset all.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Java (.jar) applications and games on 5530XM

    Hello
    I have used the search option before asking, and I have manually searched some of the sub-forums (or boards) I thought could and would be relevant to my issue, and have seen no similar questions being asked. I have also worked with my good friend Google, and had no luck there, either. Most of the results were pirated software links, which is not necessarily bad, but does not help me resolve my issue.
    Now, I'm not sure this is the correct board to post this in, but I'm not too far off even if it isn't; so bear with me. Now, onto the question.
    I would like to know if it is possible to turn off the D-Pad emulator, and how one would go about doing that?
    Let me elaborate, for those who are not familiar with what I'm talking about:
    Namely, the 5530XM has an elegant solution for running non-touch apps and games (i.e.. those made for earlier revisions of the S60 OS, or even those legacy apps for S40), and it is as follows - the phone places the app/game interface in a window, scaled to the apps original rendering resolution, and then places a set of touch command buttons. It makes a Directional Pad, consisting of concentric circles, divided into 5 areas, 4 directions (up, down, left, right), and a general "OK" button (center). It also displays four "Letter-buttons", labeled "A", "B", "C" and "D", which have variable or no functions, depending on the app that is run. Finally it displays two function buttons, Left and Right Menu buttons, usually placed near the red and green phone button on phones with keypads. This works flawlessly for old apps and games, with the limitation that the interface is not multi-touch, meaning it will only accept one virtual keypress at a time.
    My problem with this setup is that some of the more recent Java applications are run as legacy as well; meaning ALL of the touch-aware apps and games that I have tried running. This is unacceptable for several reasons. First, some of them don't recognize the simulated commands, rendering the virtual D-Pad useless. What's more, the virtual interface covers a good portion of the app's original interface, making it impossible to use it. The apps and games I have tried are shipped as .jar, and are supposed to work with a touch interface. And they do, it's only that they're half-covered with an unneeded virtual D-Pad!
    I am open for all suggestions, I have the latest firmware installed, 20.0.080.C01.01, the phone is, as mentioned, 5530 XM (RM-604), and I haven't manually altered Java in any way. I am, however, ready and willing to go for some more serious tinkering if need be, even if it involves altering system files, hex editing and whatnot, and I won't cry to mama if I brick the phone, I know full well the range and scope of possible consequences. This would probably constitute breaking the rules, maybe even voiding the warranty, so I'm not asking for anyone to give an answer of that level here, publicly, but feel free to send a personal message or ask for my e-mail / IM screen name, so that we can communicate about such taboo topics
    One more note, probably relevant: .sis and .sisx apps and games work flawlessly, bot the old ones needing the D-Pad (they get a virtual one) and the new ones, which are correctly recognized as touch-capable. Even some that are reported incompatible by the phone work without a hitch. It really is a pity to see the Java apps fail after everything else is flawless.
    Perhaps, if there is no known solution or a dirty workaround, we can file an official recommentadion/bug report/feature request to the developers in charge? I can wait.
    Thanks to those brave enough to read my wall of text, and thanks in advance to all who reply something useful
    Careful what you wish for... You just might get it.
    Solved!
    Go to Solution.

    McSteel wrote:
    Thanks a million!
    Can't believe I missed that one... You truly are a "Mobile Overlord".
    Although that kinda sounds like there is a Fixed/Immobile Overlord out there
    Anyway. Kudos for this, I suppose there are others who would find this useful as well.
    Thanks again
    Didn't you notice his wings?
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Satellite L750D - BIOS update 2.1 and sound problem

    Hello
    I have little problem. I have been downloaded from your website BIOS 2.1 for Toshiba Satellite L750D (PSK32E).
    I have been updated BIOS to 2.1 and start problem with sound. When I start game, music or something other only 2 first minutes sound plays properly but then it stops for no reason. No sound at all. I have been reinstalled op system but the problem is still there.
    Sound works for 2 minutes only then is completely off. Every start application with sound plays 2 minutes and stop all quiet is. I have made a probe on my mother laptop its a twin laptop. I have been updated bios same problem 2 minutes and then no sound. My operating system is win 8 pro 64 my mother laptop is with win 7 x64 premium.
    Two BIOS updated 2.1 ver on L750D and the problem is same. Please fix BIOS.

    The BIOS seems to be very old. I was released nearly 1.5 years ago so to be honest I doubt its and BIOS issue.
    I had the similar issue with my other notebook equipped with an Realtek sound card.
    The sound appeared again after plugging and removing the headphone jack
    But i could solve this installing the newest sound driver update from Realtek driver page.
    But it seems that your Satellite does not support Realtek sound chip but Conexant sound chip.
    Therefore the solution might not be useful for you.
    However, I think you need to update the sound driver.I recommend you to google for Conexant SmartAudio HD driver and to test the newest available driver version.
    In internet I could found the Conexant SmartAudio HD Driver version 8.65.9.51 for Win 7/ Win 8 / Win 8.1
    Not quite sure if this is the newest version but you can test it.
    In order to manually update your driver:
    1. Go to Device Manager (right click on My Computer, choose Manage and then find Device Manager in the left panel)
    2. Right click on the hardware device you wish to update and choose Update Driver Software
    3. Choose to select the location of the new driver manually and browse to the folder where you downloaded the driver

  • Copy and Paste Problem in Dreamweaver CS5.5

    Hi All,
    I saw the posts for Dreamweaver CS4 for copy and paste problems. I tried all the suggestions but to no avail.  My copy and paste would not work. Then I found what worked for me...
    I went to Edit --> Keyboard Shortcuts --> and I changed from "Dreamweaver Standard" to "Dreamweaver Mx2004". For the moment, it is working.  I am on XP Professional.
    From the other posts the suggestions were...
    Switch to Classic Mode
    Delete the Configuration file
    Uncheck "Enable related files"
    It was a problem for sure, and hopefully I won't be back for this one  :-)  Good luck

    Hello,
    The problem has been solved by over writing the � font.properties � file in jre/lib/� .
    The changes given as follows:
    # Exclusion Range info.
    # exclusion.dialog.0=0500-20ab,20ad-ffff
    # exclusion.dialoginput.0=0500-20ab,20ad-ffff
    # exclusion.serif.0=0500-20ab,20ad-ffff
    # exclusion.sansserif.0=0500-20ab,20ad-ffff
    # exclusion.monospaced.0=0500-20ab,20ad-ffff
    That is, we comment the lines having Red foreground color.

  • Titanium Fatal1ty Pro SPDIF game problem

    (Titanium Fatalty Pro SPDIF game problem hi all,
    sorry if this issue reported in the past i but i could not get any answer on any relati've posts, the terminology was so complicated
    i buy?a new pc with a Titanium Fatalty Pro sound card, i use Vista sp2 x64, the sound card is connected to my external amplifier with SPDIF out in order to get surround sound for my movies and my games and here is my problem
    any movies format with surround sound play perfect with out any problem any kind of movie DVD, dvix, mkv?files?etc
    but non of the games i play?use the surround system, why is that? is any?kind of special settings needed to be done? how is possible to get surround to movies and not to the games?
    thanks you all for your time ?

    ,Re: Titanium Fatalty Pro SPDIF game problem? this is really coincidence - I just posted on the very same topic 5 minutes ago.
    for games just go to the Console Entertainment mode > Encoder > Dolby Digital. Although this is not documented I believe what happens is that the sound card encodes the 6 digital channels onto Dolby Digital mode and transfers this over SPDIF. Kok-Choy actually recommend using the standard analogue cables (and he has a point as you are actually upcoding an existing game signal onto Dolby so that your digital receiver can then decode this down to 6 channels - seems a pretty useless overhead)
    for video - I am curious to know what you do - I can either get 96/24 bits on the display of my z5500 with a direct signal but the z5500 receiver then tells me that this signal is only in dolby ProLogic II (and not DD or DTS). As alternati've I use again the encoder and have to select for EACH FILM WHAT IS BEST DOLBY DIGITAL OR DTS. Pls explain what settings you use.
    thanks

  • Install JRE and OpenJDK Side-by-Side [Unecessary - So Solved]

    As far as I know this is impossible, but if there is a way to install JRE and OpenJDK side-by-side, that would be great.
    The reason I would like this is that there is a specific webserver I access that simply will not work with OpenJDK. It's a known issue that may or may not be fixed any time soon. On the other hand, I would like to install freeCAD, but this depends on OpenJDK and not JRE.
    So as of right now, there is no way for me to have freeCAD installed and access this webserver. Now if JRE and OpenJDK were installed side by side, then this wouldn't be a problem. The other option, is letting users install freeCAD with and OpenJDK or JRE dependency, whichever best suits them.
    Is anybody else in a similar boat as this?
    Last edited by fini_fly (2009-12-17 16:56:07)

    tdy wrote:
    fini_fly wrote:I would like to install freeCAD, but this depends on OpenJDK and not JRE.
    Where do you see this requirement?  I don't see anything that specifically depends on openjdk6.  The only java deps I see are in opencascade.  It depends on java-runtime and makedepends on java-environment, which can be satisfied by jre + jdk.
    When I went to install, it was forcing me to install OpenJDK and uninstall JRE.

  • Wireless and batter problems with Compaq Presario CQ45-315TX Notebook PC

    Was using my Compaq a year or so when it suddenly stopped detecting the battery. Short time after it stopped detecting the wireless module (listed as error 702 during startup).
    I've already made sure all of my drivers are up-to-date, automaticaly and manually. I read in other forums that a BIOS update would fix both of these problems. I downloaded the reccomended update to go from BIOS Version F.66 to F.66A. I'm not sure if it actually worked as the update was to the same versio and ID as the existing BIOS.
    Is there another update for BIOS F.66 as the ones I've tried don't seem tio change its version after they run, or is there another solution to this problem?

    Hi,
    Try the following.
    Download the Conexant HD Audio installer on the link below and save it to your Downloads folder.
    http://ftp.hp.com/pub/softpaq/sp45001-45500/sp45166.exe
    When done, open windows Control Panel, open Device Manager and open up Sound, Video and Game Controllers.  Right click the Conexant device and select Uninstall - you should also get a prompt to remove the current driver, tick the box to allow this and then proceed with the uninstall.
    When complete, shut down the notebook, unplug the AC Adapter and then remove the battery.  Hold  down the Power button for 30 seconds.  Re-insert the battery and plug in the AC Adapter.
    Tap away at the esc key as you start the notebook to launch the Start-up Menu and then select f10 to enter the bios menu.  Press f5 to load the defaults ( this is sometimes f9, but the menu at the bottom will show the correct key ), use the arrow keys to select 'Yes' and hit enter.  Press f10 to save the setting and again use the arrow keys to select 'Yes' and hit enter.
    Let Windows fully load - it will automatically load an audio driver, but just let this complete.  Then open your Downloads folder, right click on the Conexant installer and select 'Run as Administrator' to start the installation.  When this has completed, right click the speaker icon in the Taskbar and select Playback Devices.  Left click 'Speakers and Headphones' once to highlight it and then click the Set Default button - check if you now have audio.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Video and game performance Satellite P100-434

    I got myself a nice new P100-434 just 2 weeks ago, When tring to play a game or a DVD It starts of ok but after a short time the frame rate drops right of then comes back up then back down..
    I took it back to the shop and they gave me a new one but the same thing happens.
    Anyone else had noticed the same. If so tell me how to handle with it.

    I've had the exact same problem for a number of weeks, exchanged for a new one (identical notebook) and I still have the problem. I've even tried to get it fixed but to no avail. The guy I took it to seemed to think it had something to do with the DVD drive but to me it looks like a power supply issue. I put the videocard slider down to "balanced" and the problem essentially goes away, no more random bouts of extreme slowdown. However, this forces me to play at far lower settings that what I could originally achieve without lowering the power. (but suffering the said bouts of extreme slowdown)
    The difference here is that i'm running XP and still get the problem. Anyone know what causes this? I'd like to actually be able to use my videocard at its full potential.

  • How do I replace lost applications and games 6300

    Hope you can help guys ...
    I have put a bigger memory card in my 6300.
    However some of the Themes / Applications and Games were stored on the old card. I have tried to copy/paste them to the new card but they seem to be write protected or something and cant be copied.
    I guess this would have happened if I had formatted the card too - this seems a bit daft to me, why put things like that on a removeable card ?
    Its a bit like formatting your MP3 player only to find you've lost the sofware that ran the device!
    So how can I put the original stuff onto the new card

    Well I have kinda found a way around my problem.
    Although you don't seem to be able to copy the applications from the memory card, you can however move them.
    So if you select for example the 'Converter II' apllication, and go to options, you can move it from the card to a folder in the phone.
    You can then swap the cards over and then move it back to the new memory card.
    Works the same way to save the games.
    But the problem still exists in that you can't save a copy of these applications. If the card is formatted they are lost.
    So do you have to search and pay to download them if that happens ?
    The only alternative would seem to leave them on the phone and not on the card, but won't the phone memory get used up fairly quickly?

Maybe you are looking for