Java console runtime parameter not working

I'm tring to increase the size of memory available to my applet by adding a java runtime parameter in my Java Console. The runtime parameter is: Xmx512M
Which changes the deployment.properties file to:
#deployment.properties
#Mon Nov 22 14:46:50 GMT-06:00 2004
deployment.browser.vm.iexplorer=true
deployment.browser.vm.mozilla=false
deployment.version=1.5.0
deployment.console.startup.mode=SHOW
deployment.system.tray.icon=true
deployment.capture.mime.types=true
deployment.browser.path=C\:\\PROGRA~1\\MOZILL~1\\FIREFOX.EXE
#Java Web Start jre's
#Mon Nov 22 14:46:50 GMT-06:00 2004
#Java Plugin jre's
#Mon Nov 22 14:46:50 GMT-06:00 2004
deployment.javapi.jre.1.5.0.args=Xmx512M
deployment.javapi.jre.1.5.0.osname=Windows
deployment.javapi.jre.1.5.0.osarch=x86
deployment.javapi.jre.1.5.0.path=C\:\\Program Files\\Java\\jre1.5.0
But when I run the applet I find that my max memory has not been changed from the default (65MB). I can thell this by outputting the max memory:
System.out.println("Memory Max = " + Runtime.getRuntime().maxMemory());
This line results in the output:
Memory Max = 66650112
So this output makes me believe that the runtime parameter is not being set correctly . When I run my applet in an executable jar locally (java -Xmx1024M -jar myApplet.jar) it sets the runtime parameter fine and memory is increased as expected.
Am I doing something wrong in the Java Control panel? Is my syntax incorrect?

I had no problem using IE6 or mozilla 1.7.3
html file
<OBJECT ID="SUN" WIDTH=500 HEIGHT=120 CLASSID="CLSID:8AD9C840-044E-11d1-B3E9-00805F499D93">
<PARAM NAME="code" value="Test.class">
</OBJECT>class file
public class Test extends java.applet.Applet {
    public void init() {
          System.out.println("Memory Max = " + Runtime.getRuntime().maxMemory());
}deployment props
#deployment.properties
#Fri Nov 19 10:38:15 CET 2004
deployment.browser.vm.iexplorer=false
deployment.browser.vm.mozilla=true
deployment.version=1.5.0
deployment.console.startup.mode=SHOW
deployment.system.tray.icon=true
deployment.capture.mime.types=true
deployment.browser.path=C\:\\Program Files\\Internet Explorer\\iexplore.exe
#Java Web Start jre's
#Fri Nov 19 10:38:15 CET 2004
#Java Plugin jre's
#Fri Nov 19 10:38:15 CET 2004
#deployment.javapi.jre.1.5.0.args=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
deployment.javapi.jre.1.5.0.args=-Xmx512M
deployment.javapi.jre.1.5.0.osname=Windows
deployment.javapi.jre.1.5.0.osarch=x86
deployment.javapi.jre.1.5.0.path=C\:\\Program Files\\Java\\jre1.5.0Output of the applet:
Memory Max = 532742144

Similar Messages

  • When Export ssrs Report to CSV file runtime filters not working

    The Runtime Filters not working when Export SSRS Report to CSV format

    Hi PatilPriti,
    As for my understanding, the filter worked fine when you preview the report,
    but it did not work when you export the report to CSV format. I tried to export the report to CSV file on my side, and the data was shown as expected. I guess the issue is due to the parameter or filter. please try to export to Excel format to test again
    and make sure you created the filter correctly. Please refer to the following
    blog about how to add a filter in SSRS:
    http://arcanecode.com/2010/07/12/adding-filter-parameters-to-sql-server-2008-reporting-services-reports/
    If the problem is not resolved, i would appreciate it if you could give us
    detailed description of your problem.
    It’s better to provide the table structure and some sample data, it will help us move more quickly toward a solution.
    Thanks, 
    Wendy Fu

  • Java 7 Update 11 Not Working with Firefox

    For me, the problems described in the thread "Java 7 Update 10 Not Working with Firefox? " Java 7 Update 10 Not Working with Firefox?
    are continuing with Java 7 Update 11.
    Windows 7 64 bit
    Firefox 18
    The problem is that "Java(TM) Platform" is missing from the plug-in list.
    I've uninstalled Java 7 Update 11 and reinstalled Java Update 9 which correctly installs the plugin and restores Java functionality which was broken immediately upon installing both Java 10 & 11.

    981243 wrote:
    So why not using Ju11 ? You can workaround the issue. It would sucks but still be safer than using Ju9.
    Also ask Mozilla forums if Firefox has options where to search for plugins.
    Or try 64-bit Firefox.As I explained in both threads ...
    Java 7 Update 10 Not Working with Firefox?
    Java 7 Update 11 Not Working with Firefox
    ... neither jre7u10 nor jre7u11 are working ... and they are BOTH broken with the same problem ... "Java(TM) Platform" pliugin is missing from the plug-in list. It cannot be enabled, because it simply is NOT there. A suggestion was made the jre7u12 will be the "fix" for this issue ... so I installed the Update 12 Preview and it sis ALSO broken, no "Java(TM) Platform" in the plug-in list.
    The ONLY Java version that actually works for me is jre7u9.
    As far as installing Firefox 64bit ... I see no future in installing a browser that has been discontinued.
    http://www.computerworld.com/s/article/9233976/Mozilla_suspends_work_on_64_bit_Firefox_for_Windows
    Even though Mozilla relented due to backlash, I continued development will be a somewhat low priority.
    http://www.computerworld.com/s/article/9234997/Mozilla_compromises_on_x64_Firefox_after_user_backlash

  • Java.util.ProperyPermission does not work for

    Hi again!
    I have some problems with a security.policy file. Its content is provided below:
    grant{
         //Alow the client to connect to any port above 1024
         permission java.net.SocketPermission "*:1024-", "connect";
    permission java.util.PropertyPermission "user.language", "read, write";
    Unfortunately, the java.util.PropertyPermission does not work. I always get the following exception:
    java.security.AccessControlException: access denied (java.util.PropertyPermission user.language write)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
    at java.security.AccessController.checkPermission(AccessController.java:427)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
    at java.util.Locale.setDefault(Locale.java:352)
    at essex.kkarad.cache.daemon.SimplePopulationStrategy.doPopulate(SimplePopulationStrategy.java:41)
    at essex.kkarad.cache.daemon.Populator.run(Populator.java:42)
    Is there any problem with the decleration of the premission? Any ideas?

    Err, this may come as a shock, but it's because you changed the system clock.
    The Timer class works out the absolute time when to next to do something, and when you change the system clock you break that time.
    How much are you changing it by?

  • Creative Console effects do not work

    $Creative Console effects do not work@ Hi,
    I have an Audigy SE with latest drivers, windows 7 64, and I'm using headphones
    When accessing the Creative Console Launcher, the volume control, eax, everything has no effect on my sound, and it is clearly labeled 'headphones' at the top.
    If I go to the Audio Control Panel, it has EAX functions that DO work, though, there are no bass adjusting functions etc.
    Clearly, the EAX etc works, though it and the other features do not work in the Console Launcher, so I hope there is a way to fix this~
    I even tried installing <a rel="nofollow" href="http://forums.creative.com/t5/Sound-Blaster/SB-P7X-Series-Support-Pack-2-0-07-3-2009-AudigySE-Value-LS/td-p/53329]daniel's[/url] driver, still the same issue.
    Thanks

    bump please I would like my pc to have to nice sound...

  • Java(TM) Update Registration not working anymore

    Hello,
    I updated my java 7.u10 to 7.u11 couple days ago.
    It's working on IE, but not on Google Chrome and the other browsers.
    I re-installed Google Chrome, re-installed java, but neither worked.
    I'm clueless.
    Everytime after I re-installed java I get this message:
    'Java(TM) Update Registration not working anymore'
    More details:
    Probleemhandtekening:
    Gebeurtenisnaam van probleem:     APPCRASH
    Naam van de toepassing:     jaureg.exe
    Versie van toepassing:     2.1.9.0
    Tijdstempel van toepassing:     4ff3180c
    Naam van foutmodule:     jaureg.exe
    Versie van foutmodule:     2.1.9.0
    Tijdstempel van foutmodule:     4ff3180c
    Uitzonderingscode:     40000015
    Uitzonderingsmarge:     00018894
    Versie van besturingssysteem:     6.1.7601.2.1.0.256.1
    Landinstelling-id:     1043
    Aanvullende informatie 1:     2d10
    Aanvullende informatie 2:     2d10958005027d6e0c36717b2dc39dab
    Aanvullende informatie 3:     5384
    Aanvullende informatie 4:     538468aeed23aef40edb492cc7fa9a53
    Lees de onlineprivacyverklaring:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0413
    Als de onlineprivacyverklaring niet beschikbaar is, lees dan onze offlineprivacyverklaring:
    C:\Windows\system32\nl-NL\erofflps.txt

    981243 wrote:
    So why not using Ju11 ? You can workaround the issue. It would sucks but still be safer than using Ju9.
    Also ask Mozilla forums if Firefox has options where to search for plugins.
    Or try 64-bit Firefox.As I explained in both threads ...
    Java 7 Update 10 Not Working with Firefox?
    Java 7 Update 11 Not Working with Firefox
    ... neither jre7u10 nor jre7u11 are working ... and they are BOTH broken with the same problem ... "Java(TM) Platform" pliugin is missing from the plug-in list. It cannot be enabled, because it simply is NOT there. A suggestion was made the jre7u12 will be the "fix" for this issue ... so I installed the Update 12 Preview and it sis ALSO broken, no "Java(TM) Platform" in the plug-in list.
    The ONLY Java version that actually works for me is jre7u9.
    As far as installing Firefox 64bit ... I see no future in installing a browser that has been discontinued.
    http://www.computerworld.com/s/article/9233976/Mozilla_suspends_work_on_64_bit_Firefox_for_Windows
    Even though Mozilla relented due to backlash, I continued development will be a somewhat low priority.
    http://www.computerworld.com/s/article/9234997/Mozilla_compromises_on_x64_Firefox_after_user_backlash

  • Java Web Start is not working on Firefox 3 Kubuntu 8.04 64bit

    Hi,
    When I try to access web start demo applications it redirects me to download page. It is not working for both Firefox 3 and Konqueror. If I type form command line javaws it will start some policy editor, which I assume means that web start is working. Is there any way to fix this?
    Alfas
    I am using:
    Firefox 3.0.1
    java version "1.6.0_06"
    Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
    Java HotSpot(TM) 64-Bit Server VM (build 10.0-b22, mixed mode)
    Ubuntu 8.04.1
    KDE 3.5
    Applets were not working so I installed OpenJKD (now they work)
    OpenJDK Runtime Environment (build 1.6.0-b09)
    OpenJDK 64-Bit Server VM (build 1.6.0-b09, mixed mode)

    plugin and webstart are not yet available in 64bit jre distributions from Sun.
    These are targeted to 6u12 or there abouts.
    /Andy

  • HT5682 April 22, just installed the latest update to fix the Java problem, it does not work.

    About a week ago I installed a MAC update. I discovered that I was unable to play POGO games. I know that is not up there with all other uses of MAC... let's get back on track here. I have uninstalled and reinstalled, and reset preferences at least 6 times to get JAVA back.
    Some of my new BFF sites:
    Java for OS X 2013-002: How to re-enable the Apple-provided Java SE 6 web plug-in and Web Start functionality.
    Why is Java not working on my Mac?|EA Help
    Re: Bridge - Page 2 - Answer HQ   Java POGO
    Java for OS X 2013-003    get applet from Oracle
    My Intel MAC  circa 2009, is  running MAC OS X Lion  10.7.5   Safari 6.0.4
    Today I received another update from Apple stating it would provide the answer to POGO 6 and you can select certain sites that can be accessed.  
    This also was a FAIL!
    I now know the steps, can access TERMINAL without shaking, have learned to use GO to access UTILITIES.  I still end up with JAVA not recognizing that their software has a place in my heart and I truly hope on my computer soon.
    I have been playing a horrible game of Solitaire on another site.
    Are there others out there with this problem or is it just me? Can anyone suggest anything else?

    Thank you BDAua. This is what I typed and the reply from Terminal
    java -version
    java version "1.6.0_45"
    Java(TM) SE Runtime Environment (build 1.6.0_45-b06-451-11M4406)
    Java HotSpot(TM) 64-Bit Server VM (build 20.45-b01-451, mixed mode)
    BTW - this application does NOT show up in the Applications folder and I consider that a bit odd.
    I also  tried typing Java for my computer to search for and this is what I got under
    Overview:
    PID: 944
    Host: localhost
    Main class: <unknown>
    Arguments: <none>
    JVM: Java HotSpot(TM) 64-Bit Server VM (20.45-b01-451, mixed mode)
    Java: version 1.6.0_45, vendor Apple Inc.
    Java Home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
    JVM Flags: <none>
    Heap dump on OOME: enabled
    I hope something is helpful within all of this info!

  • Why runtime.exec() not working?

    I just want to run "ls" i unix on my JSPs.
    Process process;
    Runtime rt = Runtime.getRuntime();
    String line;
    process = rt.exec("ls");
    Here's the error message.
    java.io.IOException: ls: not found

    On my Linux
    rt.exec("ls");
    does work.
    If, on your system,
    which ls
    does not return an external executable like /bin/sl, try this command line:
    import java.io.*;
    public class Ls{
      public static void main(String[] args){
        String line = null;
        try{
          Runtime rt = Runtime.getRuntime();
          Process prc = rt.exec(new String[]{"sh", "-c", "ls"});
          InputStream is = prc.getInputStream();
          BufferedReader br = new BufferedReader(new InputStreamReader(is));
          while((line = br.readLine()) != null){
            System.out.println(line);
          prc.waitFor();
        catch (Exception e){
          e.printStackTrace();
    }

  • HT5559 Java web start does not work

    I have followed the instructions in this article, including the last step about web start, but it still does not work, neither applets or web start. When I try to launch a JWS application by double clicking it I get the dreaded warning dialog:
    To open this Web Start application, you need to download the Java Runtime Environment.
    Click “More Info…” to visit the website for the Java Runtime Environment.
    I do have a JRE installed, 1.6, since I for compatibility reasons can't upgrade.
    Trying to launch a web start application from the commandline looks like this:
    $ javaws /tmp/airview.jnlp
    Java Web Start splash screen process exiting ...
    Can not find message file: No such file or directory
    Regular Java-programs work fine.
    $ java -version
    java version "1.6.0_37"
    Java(TM) SE Runtime Environment (build 1.6.0_37-b06-434-11M3909)
    Java HotSpot(TM) 64-Bit Server VM (build 20.12-b01-434, mixed mode)

    Read this thread https://discussions.apple.com/thread/4789691?tstart=0
    This fixed the issue for me:
    sudo /usr/libexec/PlistBuddy -c "Delete :JavaWebComponentVersionMinimum" /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/XProtect.meta. plist
    In the comments to the linked article someone suggests to comment out the node in stead of deleting it. Probably safer (it's explained further down how to do that). Anyway I already spent to much time on this nonsense, deleted it and it worked, so I'm happy.

  • Java 3D: vrml97 does not work

    Hi,
    I tried to run a Java3D application (it requires VRML Java3D loader) from the following url:
    http://www.gris.uni-tuebingen.de/projects/schickard/WSApplet.html
    But it didn't work... then I tried to run it offline (via console: java -cp WSApplet.zip WSApplet & appletviewer WSApplet.html).
    And the same result:
    The browser message sad that the initialization is ok (�WSApplet: initiated�) but then the task is aborted with the following error message:
    vrml.node.Node.<init>(Lcom/sun/j3d/loaders/vrml97/impl/Node;)V
    But I couldn't deal with this message.
    So I asked one of the developer (Frank Hanisch) of this Applet if can send me a proper solution for this problem. He sent me another version of vrml97.jar
    Java3D is correctly installed and also the OpenGL implementation.
    But the problem still occurs. So what can I do????
    Some system information:
    AMD AthlonXP with WinXP SP2;
    Path=C:\PROGRA~1\Java\JDK15~1.0_0\bin;C:\PROGRA~1\Java\JDK15~1.0_0\jre\bin (just an extract)
    JAVA-Console-Log:
    Initialising applet and loading data, this will take some time ...
    file:/C:/Programme/Java/tutorOffline/j3d/samples/WSApplet/WSApplet.htmltextures/helpcursor.gif
    file:/C:/Programme/Java/tutorOffline/j3d/samples/WSApplet/WSApplet.htmltextures/helpcursor2.gif
    file:/C:/Programme/Java/tutorOffline/j3d/samples/WSApplet/WSApplet.htmltextures/rotcursor.gif
    file:/C:/Programme/Java/tutorOffline/j3d/samples/WSApplet/textures/wsgold.gif
    file:/C:/Programme/Java/tutorOffline/j3d/samples/WSApplet/textures/wswood1.jpg
    file:/C:/Programme/Java/tutorOffline/j3d/samples/WSApplet/textures/wswood2.jpg
    java.lang.NoSuchMethodError: vrml.node.Node.<init>(Lcom/sun/j3d/loaders/vrml97/impl/Node;)V
         at com.sun.j3d.loaders.vrml97.impl.Node.wrap(Node.java:114)
         at com.sun.j3d.loaders.vrml97.VrmlScene.<init>(VrmlScene.java:67)
         at com.sun.j3d.loaders.vrml97.VrmlLoader.doLoad(VrmlLoader.java:119)
         at com.sun.j3d.loaders.vrml97.VrmlLoader.load(VrmlLoader.java:106)
         at Schickard.createScene(Schickard.java:193)
         at WSApplet.start(WSApplet.java:89)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    Ok, I'll be clearer. Oracle says you're giving it the wrong username and password. Therefore you are.
    If the first of your programs is working, and the second isn't, then...
    The second program is submitting the wrong username, or
    The second program is submitting the wrong password, or
    The second program is in fact connecting to a different database, or
    Some combination of these.
    It's as simple as that. Sorry. Now you have to figure out whether you're typing it in differently, or it's getting changed elsewhere in your code. But it will be in your code. Yes, it could be the environment, I suppose, but since you're not getting a problem connecting to the database at all, only with the authentication details you're providing, I think this is very unlikely to be the explanation - assume it is NOT an environmental problem and you'll probably find it's something annoyingly simple.

  • SET/GET Parameter not working? pls hlp

    hi i am using a transaction variant on transaction LT01 - create transfer order. using the transaction variant i have greyed out 3 fields on the initial screen. for the greyed out fields i am passing the values using a SET PARAMETER. This is working fine for 2 fields but it does not work for the third field. any idea where i am going wrong?? the first field is warehouse number which is working fine. the second field is movement type and the third field is storage location. the first 2 works fine and the data gets populated in the greyed out field but the storage location field does not work. The field has a parameter id. pls help its urgent.
    promise will reward points if its resolved

    Hi american,
    1. but the storage location field does not work.
    In such cases, we have to follow another approach.
    (CALL TRANSACTION USING BDCDATA
    2. Just copy paste in new program.
      (it will populate the STORAGE LOCATION field)
    3.
    report abc.
    data : bd like table of bdcdata with header line.
    bd-program  = 'SAPML03T'.
    bd-dynPRO = '0101'.
    bd-dynbegin = 'X'.
    append bd.
    CLEAR BD.
    bd-fnam = 'LTAK-BWLVS'.
    bd-fval = 'AAA'.
    append bd.
    bd-fnam = 'LTAK-LGNUM'.
    bd-fval = '015'.
    append bd.
    STORAGE LOCATION
    bd-fnam = 'LTAP-WERKS'.
    bd-fval = 'AAA'.
    append bd.
    CALL TRANSACTION 'LT01'
    USING BD.
    regards,
    amit m.

  • I have updated my iTunes to the newest version, 10-25 on a windows XP system. Now my java virtual machine is not working and I need it to run applet window. My Java is also newest version. What can I do to fix/repair my issue?

    I need help with java on windowsXP after updating iTunes to the latest version. My java will not work and I get error message need java virtual machine to run applet window. Did not have this problem prior to the iTunes update.
    Please help, Thanks

    If your library was working on your computer and then popped up empty all of a sudden then this might be what you need...
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • Old Netscape console 4.2 not working properly with new Directory Server 5.2

    After successfully installing Messaging Server 5.2 and applying patch 2, the old Netscape Console doesn't work properly, I tried running the script which is given in the link
    http://docs.sun.com/source/816-6734-10/index.html
    which hobbles the server by creating a set of dummy jar files in order for the directory server console not making any changes on the messaging server. At first I got these messages:
    Failed to install a local copy of msgadmin52.jar or one of its supporting files: not a ZIP file (END header not found)
    I got the same message for these 2 files:
    admserv42.jar
    msgadmin52.jar
    After that I made real dummy jar files using a zero-length file I created with touch and I got these messages:
    class com.netscape.management.admser.AdminServer not found
    After that I erased all the files created by the script and I get these messages:
    failed to install a copy of admserv51.jar or one of its supporting files: null
    failed to install a copy of msgadmin.jar or one of its supporting files: msgadmin52.jar not found at http://192.168.10.205:5001/
    and for admserv42.jar I get the same message
    Does anyone have a clue on what to do next??
    thanks in advance
    Eduardo

    The thing is that the netscape console 4.5 won't work properly with messaging server 5.2, and the directory server console is not working properly for the directory server. I already know the limitations about these consoles since it is explained in the doc where the procedure of migrating from a 4.x directory server to 5.1. I

  • Java persistence: sequence generator not working in expected way.

    Hi,
    I just played around with java persistence api and found that sequence generator annotations for making new primary key value not working correctly in my code. following is part of my code related to this problem.
    in entity class:
    @SequenceGenerator(name="mySeq", sequenceName="MY_SEQ_IN_DB")
    @Id
    @GeneratedValue(strategy=SEQUENCE, generator="mySeq")
    @Column(name = "UPLOAD_ID", nullable = false)
    private Integer uploadId;
    I have a sequence called MY_SEQ_IN_DB in my oracle 9i testing db. When I ran the code to save a new entity instance to database I found that the new upload id is not the one that should be created from the MY_SEQ_IN_DB sequence, while the sequence was not increased either. It's instead something starting from 97 (in my pc), and increased just like a sequence, but every time I reran my code the sequence restarted itself again beginning with 97(of course the insert failed with primary key conflict). the behavior just looks like it's a sequence created and managed totally by the persistence api or toplink itself (I guess).
    So, my question is, is this a designed behavior or have I done something wrong to make it not using the correct sequence in the db?
    I used hibernate before, and assigning new primary key from sequence in this way works fine.
    Thanks
    JC.L

    There are some things in Java which can't be serialized. When contained within a higher-level class such as Buttons. A button can be associated with an Action Listener. Now, you can serialize a button; however you can't serialize an action listener - for what should be to you obvious reasons. This is NOT an error and so there is no need to throw an exception when serializing the button.
    Basically: Applet sends servlet button, but not listener.

Maybe you are looking for

  • Why does my computer keep crashing?  Can someone look at these Problem Deta

    My computer has been crashing A LOT recently. I really don't want to have to reinstall OSX, is there anything I can do besides repair permissions? What follows are the Problem Details from the report I sent to Apple. I should say that I was downloadi

  • What are the client requirements to use BI OnDemand?

    What are the requirements on the client side for using the bi.ondemand.com site.  I would like to know what RAM amount is neccessary as well as the Operating System version.

  • Database connectivity in labview?

    when I select the OLE DB provider is "microsoft OLE DB provider for ODBC Drivers",I can write to database,but I can't read from database using data connectivity toolkit? i use the SQL language SELECT * FROM motor WHERE serial="aaa" the error is : "er

  • Can i add sound to widget  repaso pictures?

    Hi i would like to add sound to my  ibooks widgets "repaso" in spanish pictures seleccion, How can i?

  • Window size/position and title question

    I can't work out how to control the position of my site within it's window, or the size of the window. I've tried all the settings in the Publish panel. I'm trying to get the flash stage (750 x 500) to occupy the centre of a slightly larger window (9