cross-platform application

Joined
Oct 10, 2011
Messages
2
Reaction score
0
Points
1
Greetings,

new to the forum and to programming on Mac. I'm trying to figure out what language I should use to create a small application (a sizing calculator for garments) that will work in Windows and OsX. I'm pretty decent with Java and use a program called Autohotkey a lot for PC. Unfortunately Autohotkey doesn't work with Mac.
Does anybody have any suggestions on what language would be favorable to use so I would only have to write the script once?

Thanks for the advice,

Chris
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
You have quite a few options. You can use one of the "big" scripting languages (Ruby, Perl, Python) and one of the various toolkits if you need cross platform support. You can also use .NET - there is the official runtime for Windows and Mono for the Mac. And, of course, there's Java.

If it's just a calculator, you could also make a webpage and use JS to do the calculations.

Is this going to be a UI or is this command line based? Do you plan to distribute it to others?
 
OP
C
Joined
Oct 10, 2011
Messages
2
Reaction score
0
Points
1
vansmith,

thank you for your reply!
The program is going to be a GUI where people can choose from different measurements and then the script will calculate their appropriate clothing size (Small, Medium....). I'm planning on distributing it and also make a version available on our website.
I thought about using Java since I have the most experience with it, but don't know if it will work on both OSs, meaning whether I need to be looking out for certain things to make it work.
If it would be of any help I can post some of the autohotkey code.

Cheers,

Chris
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
Java will wrk fine across both platforms - it is fully supported by Windows and OS X (not to mention Linux as well). If you're familiar with it, stick with it since it can be easily packaged into a jar file for distribution.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top