Recent content by asalerni

  1. A

    which JAVA VM in new OSX version?

    the problem is the opposite, my application is compiled by 1.3.1 but I don't know if the final user have or not on his OSX the JVM 1.3.1 Because I have a 10.2.8 OSX version but I don't know if the newer versions has or not the Java 1.3 installed
  2. A

    which JAVA VM in new OSX version?

    Thanks, I need 1.3.1 specifically because I develop an application that use an external library that is certified just until 1.3, maybe it works also with latest java version but I have to be sure, so I make the executable of my application to run just with 1.3.1
  3. A

    which JAVA VM in new OSX version?

    I'm interested in 1.3.1, is it installed on all new versions or not?
  4. A

    which JAVA VM in new OSX version?

    I'd like to know how many and what JVM are installed inside new version. For example if I install today Mac OSX v10.3 or 10.4 there is inside Java1.3.1, or just 1.4?
  5. A

    Problem with Installer.app

    login as root check by terminal if you have /tmp open terminal cd /tmp if don't find the directory mkdir /tmp try again to install some .pkg if you already have /tmp directory I don't know more. Anyway...try with Pacifist to install applications, it doesn't require...
  6. A

    Problem with Installer.app

    I've just solved the problem. I hope the yours is the same. I don't know why but in my system there wasn't /tmp directory and the installer can't create it!!! I discovered this by Pacifist error message!!! I created the /tmp directory by terminal and the program now works!!!! good luke
  7. A

    Problem with Installer.app

    My Installer.app's stopped to work, any .pkg I try to run fail, the message is something like "there was an error witH Installer". I think it's possible that some temporary files is locked, do you know where the installer pu this files? Any suggestions?
  8. A

    software to make .sea

    thank you so much, I did an AppleScript that use this command in the Terminal ;)
  9. A

    software to make .sea

    something else?
  10. A

    software to make .sea

    Oh, thank you, I didn't know it. ANyway, I need something to split an installation file into more files, but the final user will not have this software I use to split. suggestion?
  11. A

    software to make .sea

    is there a free software to make a self extract archive? I need to split an installation file into more files and then make it .sea I tried with ZipIt but it seems working just if you have it installed.
  12. A

    how to call a non default connection by applescript

    I need to call a specific configuration by an AppleScript i call "Internet Connect" application but even if I specified parameters (telephone number, user and password) it doesn't work, an error message's shown that says i didn't insert the telephone number!!! what I have to write...
  13. A

    how to know the connection's modem info

    it doesn't work :( When I was trying I had set "internal modem" as default connection. After i tried to set "ethernet" as default connection but when I launch sript to call a modem connection that is not the default appear an error message like this: you didn't insert the telephone number.
  14. A

    how to know the connection's modem info

    I'm launching a modem connection by this applescript: set tel to "1234567" set usr to "username" set psw to "password" set config to "ConfigName" tell application "Internet Connect" connect configuration config to telephone number tel as user usr with password psw connect end...
  15. A

    AppleScript to launch modem connection

    I need an AppleScript to launch a modem connection with some parameter set by a Java application. Some example??? What application I have to call in AppleScript???
Back
Top