need help on creating distribution project
need help on creating distribution project
- Subject: need help on creating distribution project
- From: Jin Lin <email@hidden>
- Date: Fri, 15 Dec 2006 01:55:15 -0500
Hello,
I am creating a distribution package with an installation check
script ( checkSystemversion() - the one supplied by Package Maker).
function checkSystemversion() {
var result = false;
try {
result = my.target.systemVersion.ProductVersion >= '10.4';
} catch (e) {}
if(!result) {
my.result.type = 'Fatal';
my.result.title = '';
my.result.message = '';
}
return result;
}
I tried the package on both PPC and Intel mac running 10.4.8, and I
noticed that the value of result always set to false and generates
error message. Is it a bug or did I do something wrong?
Any help or suggestion is greatly appreciated.
Thanks
Jin
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Installer-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden