Copy link to clipboard
Copied
<superfluous screenshot remove-kglad>
for example :
stage.addEventListener(Event.ENTER_FRAME, usingSystemLanguage)
function usingSystemLanguage(event:Event):void
{
if(*Current Windows/Mac System Language*)
{
textExampler.text = "This text using your system language (id)";
}
else
{
textExampler.text = "This text using your system language (en)";
}
}
This article shows how to use Capabilites.language:
Here is an example from that page:
var lang:String = Capabilities.language;
switch (lang) {
case "en":
myTextField.text = greetingEnglish;
break;
case "de":
myTextField.text = greetingGerman;
break;
case "fr":
myTextField.text = greetingFrench;
break;
case
...
my current language is "id" (indonesia), can you find a way to make?
Copy link to clipboard
Copied
what kind of as3 project?
Copy link to clipboard
Copied
Adobe AIR
Copy link to clipboard
Copied
This article shows how to use Capabilites.language:
Here is an example from that page:
var lang:String = Capabilities.language;
switch (lang) {
case "en":
myTextField.text = greetingEnglish;
break;
case "de":
myTextField.text = greetingGerman;
break;
case "fr":
myTextField.text = greetingFrench;
break;
case "es":
myTextField.text = greetingSpanish;
break;
default:
myTextField.text = "Sorry your system's language is not supported at this time.";
}
Copy link to clipboard
Copied
my current language is "id" (indonesia), can you find a way to make?
Copy link to clipboard
Copied
'id' is the country code for Indonesia. 'in' is the language code for Indonesian. You could try those, but I am pretty sure it's not included.
Copy link to clipboard
Copied
when i code :
var thisIsMyLanguage:String = Capabilities.language;
trace (thisIsMyLanguage);
and pressing "Test", the output is "xu". Please watch this picture
Copy link to clipboard
Copied
and? do you have a question? did you check the link i posted that explains what that (and much more) means?
Copy link to clipboard
Copied
As you will see at the link kglad gave, 'xu' is the code for all languages that are not known.
Copy link to clipboard
Copied
the list is here https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/system/Capabilities.html#l... and does not include indonesian.