00:00
00:00
Newgrounds Background Image Theme

Rage11603 just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

AS: Costumization w/ "capabilities"

3,688 Views | 24 Replies
New Topic Respond to this Topic

AS: Main your number one resource for actionscript!

This will teach you how to do very need costumizing stuff with flash :)

1. What will this cover?
2.How is this useful?
2.How is it done?

What will this cover?

Probing the user's system with flash, geting data like the user's system language and more!

How is this useful

Make your game in several languages and auto-set the language to what's needed!
Suit your game to black&white cell phones that support .swf!
Detect the version of flash - player and disable advanced stuff!
Treat Macintosh and Windows (Linux maybe) differently!

The actual code

the actual code is Very simple indeed, all these properties are ALL STORED FOR YOU IN VARIABLES!!!!

All you need to do to detect the current language is look at the const var System.capabilities.language

For example, on english it contains "en"
System.capabilities contains a lot of useful variables containing useful data... since macromedia did a good job describing them I'll just paste them here

Previous | Next

System.capabilities object
Availability
Flash Player 6.

Description
You can use the System.capabilities object to determine the abilities of the system and player hosting a SWF file, which lets you tailor content for different formats. For example, the screen of a cell phone (black and white, 100 square pixels) is different than the 1000-square-pixel color PC screen. To provide appropriate content to as many users as possible, you can use the System.capabilities object to determine the type of device a user has. You can then either specify to the server to send different SWF files based on the device capabilities or tell the SWF file to alter its presentation based on the capabilities of the device.

You can send capabilities information using a GET or POST HTTP method. The following example shows a server string for a computer that has MP3 support, 1600 x 1200 pixel resolution, is running Windows XP, and Flash Player 7 (7.0.19.0):

"A=t&SA=t&SV=t&EV=t&MP3=t&AE=t&VE=t&ACC=f&
PR=t&SP=t&SB=f&DEB=t&V=WIN%207%2C0%2C19%2C
0&M=Macromedia%20Windows&R=1600x1200&DP=72
&COL=color&AR=1.0&OS=Windows%20XP&L=en&PT=
External&AVD=f&LFD=f&WD=f"

Property summary for the System.capabilities object
All properties of the System.capabilities object are read-only.

Property
Description
Server string

System.capabilities.avHardwareDisable Specifies whether the user’s camera and microphone are enabled or disabled.
AVD

System.capabilities.hasAccessibility Indicates whether the player is running on a system that supports communication between Flash Player and accessibility aids.
ACC

System.capabilities.hasAudio Indicates whether the player is running on a system that has audio capabilities.
A

System.capabilities.hasAudioEncoder Indicates whether the player is running on a system that can encode an audio stream, such as that coming from a microphone.
AE

System.capabilities.hasEmbeddedVideo Indicates whether the player is running on a system that supports embedded video.
EV

System.capabilities.hasMP3 Indicates whether the player is running on a system that has an MP3 decoder.
MP3

System.capabilities.hasPrinting Indicates whether the player is running on a system that supports printing.
PR

System.capabilities.hasScreenBroadcast Indicates whether the player supports the development of screen broadcast applications to be run through the Flash Communication Server.
SB

System.capabilities.hasScreenPlayback Indicates whether the player supports the playback of screen broadcast applications that are being run through the Flash Communication Server.
SP

System.capabilities.hasStreamingAudio Indicates whether the player can play streaming audio.
SA

System.capabilities.hasStreamingVideo Indicates whether the player can play streaming video.
SV

System.capabilities.hasVideoEncoder Indicates whether the player can encode a video stream, such as that coming from a web camera.
VE

System.capabilities.isDebugger Indicates whether the player is an officially released version or a special debugging version.
DEB

System.capabilities.language Indicates the language of the system on which the player is running.
L

System.capabilities.localFileReadDisable Specifies whether the player will attempt to read anything (including the first SWF file the player launches with) from the user’s hard disk.
LFD

System.capabilities.manufacturer Indicates the manufacturer of Flash Player.
M

System.capabilities.os Indicates the operating system hosting Flash Player.
OS

System.capabilities.pixelAspectRatio Indicates the pixel aspect ratio of the screen.
AR

System.capabilities.playerType Indicates the type of player: stand-alone, external, plug-in, or ActiveX.
PT

System.capabilities.screenColor Indicates whether the screen is color, grayscale, or black and white.
COL

System.capabilities.screenDPI Indicates the dots-per-inch screen resolution, in pixels.
DP

System.capabilities.screenResolutionX Indicates the horizontal size of the screen.
R

System.capabilities.screenResolutionY Indicates the vertical size of the screen.
R

System.capabilities.serverString A URL-encoded string that specifies values for each System.capabilities property.
n/a

System.capabilities.version A string containing Flash Player version and platform information.
V

hope you find this useful! I did!

Response to AS: Costumization w/ "capabilities" 2005-07-22 07:10:14


At 7/22/05 05:21 AM, Inglor wrote: Make your game in several languages and auto-set the language to what's needed!

Why would I do that? Everyone should know english.

Response to AS: Costumization w/ "capabilities" 2005-07-22 08:50:56


At 7/22/05 07:10 AM, Glaiel_Gamer wrote: Why would I do that? Everyone should know english.

It's not necessary, it's just a cool feature if you know more than one language.


ey

BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-07-22 08:54:26


In the example files that you get with Flash (I went through them yesterday for the first time :P) they have an example of the language thing.

Good tute, any road.


Sup, bitches :)

BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-07-22 09:10:22


At 7/22/05 07:10 AM, Glaiel_Gamer wrote:
At 7/22/05 05:21 AM, Inglor wrote: Make your game in several languages and auto-set the language to what's needed!
Why would I do that? Everyone should know english.

hey there's lots of stupid kids who don't understand a bit of english in Québec...


website :: hugostonge.com

my job :: we+are

Response to AS: Costumization w/ "capabilities" 2005-07-22 09:50:53


At 7/22/05 09:10 AM, gorman2001 wrote: hey there's lots of stupid kids who don't understand a bit of english in Québec...

I definitely second that.


ey

BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-07-31 07:00:10


Well, most people in the world simply doesn't speak English. There are countries where learning English as a second tongue isn't the best of options (though it can seem amazing to you).

And most often, English-speakers do not know any other language. So it's good for you, we non-native English speakers from anywhere outside America can include English in our games so you can play them :)

Response to AS: Costumization w/ "capabilities" 2005-08-13 08:36:05


I just made this for no reason at all, it uses System Capabilities.. and I remembered this thread, so heh.. thought I'd post it.

http://img299.images..mcapabilities6oa.swf

Your language is set to English, your computer can play music, your computer can play MP3s. You can encode audio, can print and can debug. Your Operating System is Windows XP. You are using a Screen Resolution of 1024x768 and your DPI is 72.


Sup, bitches :)

BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-08-13 11:46:24


At 8/13/05 08:36 AM, -liam- wrote: I just made this for no reason at all, it uses System Capabilities.. and I remembered this thread, so heh.. thought I'd post it.

http://img299.images..mcapabilities6oa.swf


Your language is set to English, your computer can play music, your computer can play MP3s. You can encode audio, can print and can debug. Your Operating System is Windows XP. You are using a Screen Resolution of 1024x768 and your DPI is 72.

Response to AS: Costumization w/ "capabilities" 2005-08-13 11:50:42


Your language is set to English, your computer can play music, your computer can play MP3s. You can encode audio, can print and can debug. Your Operating System is Windows XP. You are using a Screen Resolution of 1280x1024 and your DPI is 72.


wtfbbqhax

Response to AS: Costumization w/ "capabilities" 2005-08-13 12:22:19


At 8/13/05 11:50 AM, fwe wrote: Your language is set to English, your computer can play music, your computer can play MP3s. You can encode audio, can print and can debug. Your Operating System is Windows XP. You are using a Screen Resolution of 1280x1024 and your DPI is 72.

So it works?

Thats good XD

There should be a way to see how much ram someone has and how good their processor is.. so you can set the graphics and quality accordingly, then again their is the "BEST" option.


Sup, bitches :)

BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-12-26 13:35:55


At 8/13/05 08:36 AM, -liam- wrote: I just made this for no reason at all, it uses System Capabilities.. and I remembered this thread, so heh.. thought I'd post it.

http://img299.images..mcapabilities6oa.swf



Your language is set to English, your computer can play music, your computer can play MP3s. You can encode audio, can print and can debug. Your Operating System is Windows XP. You are using a Screen Resolution of 1024x768 and your DPI is 72.

Your language is set to English, your computer can play music, your computer can play MP3s. You can encode audio, can print and can debug. Your Operating System is Windows XP. You are using a Screen Resolution of 1280x1024 and your DPI is 72.

Response to AS: Costumization w/ "capabilities" 2005-12-26 15:35:54


Your language is set to Pig-Latin, your computer can play mini-golf, your computer can play blind-folded. You can encode into morse-code, can dot and can dash. Your Operating System is about to crash. You are using a New Year's Resolution of "I won't masturbate." and your COS is null.


BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-12-26 15:59:35


At 12/26/05 01:35 PM, GameCubeFreak2004 wrote: Your language is set to English, your computer can play music, your computer can play MP3s. You can encode audio, can print and can debug. Your Operating System is Windows XP. You are using a Screen Resolution of 1280x1024 and your DPI is 72.

Did you really feel the need to bump this 4 month old topic to include some info no one gives a shit about?


wtfbbqhax

Response to AS: Costumization w/ "capabilities" 2005-12-26 16:01:18


At 12/26/05 03:59 PM, fwe wrote: Did you really feel the need to bump this 4 month old topic to include some info no one gives a shit about?

Actually, I always wanted to know whether he could print or not.


BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-12-26 16:08:31


At 12/26/05 04:01 PM, Rantzylvester wrote: Actually, I always wanted to know whether he could print or not.

Haha, that made my day

whew


wtfbbqhax

Response to AS: Costumization w/ "capabilities" 2005-12-26 16:18:08


At 12/26/05 04:01 PM, Rantzylvester wrote: Actually, I always wanted to know whether he could print or not.

one day, when you guys arent expecting it, im going to make a SWF that does nothing but print 100 pages of gay porn, just for you ranty...


BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-12-26 16:22:08


At 12/26/05 04:18 PM, authorblues wrote:
At 12/26/05 04:01 PM, Rantzylvester wrote: Actually, I always wanted to know whether he could print or not.
one day, when you guys arent expecting it, im going to make a SWF that does nothing but print 100 pages of gay porn, just for you ranty...

Yeah but we have to accept it and I dont think anyone is going to let a flash print off 100 pages before checking out the first page:P


- Matt, Rustyarcade.com

Response to AS: Costumization w/ "capabilities" 2005-12-26 16:25:49


At 12/26/05 04:18 PM, authorblues wrote: one day, when you guys arent expecting it, im going to make a SWF that does nothing but print 100 pages of gay porn, just for you ranty...

=´)
I'm touched all the way down to my knees.

Now go answer my question, you stud!

At 12/26/05 04:22 PM, Ninja-Chicken wrote: Yeah but we have to accept it and I dont think anyone is going to let a flash print off 100 pages before checking out the first page:P

=P


BBS Signature

Response to AS: Costumization w/ "capabilities" 2005-12-26 17:55:43


§h¤+, that's cool...

Response to AS: Costumization w/ "capabilities" 2006-08-03 20:49:55


very kool but kind of useless here on NG where English is teh_lang


OS: Ace, coming soon to Newgrounds. Keep an eye out for it.

BBS Signature

Response to AS: Costumization w/ "capabilities" 2006-08-03 21:58:52


Wow, i will give it a try!
Its awesome, i learned english, but its awesome to see just you can configure it in other languages!
But yeah, we should all know english =P

Response to AS: Costumization w/ "capabilities" 2006-08-03 22:05:19


Your language is set to English, your computer can play music, your computer can play MP3s. You can encode audio, can print and can debug. Your Operating System is Windows XP. You are using a Screen Resolution of 2048x1536 and your DPI is 96.

Response to AS: Costumization w/ "capabilities" 2006-08-03 23:06:38


At 12/26/05 04:08 PM, fwe wrote:
At 12/26/05 04:01 PM, Rantzylvester wrote: Actually, I always wanted to know whether he could print or not.
Haha, that made my day

whew

Oh boy, I just read this again. Fucking good times


wtfbbqhax

Response to AS: Costumization w/ "capabilities" 2006-08-03 23:08:12


wierd, it's not working for me, i know this thread is old, but the last poster got it.....
:(


BBS Signature