Extra exercises with key

seen from Germany
seen from Brazil
seen from Libya

seen from Malaysia
seen from Finland

seen from Portugal

seen from Germany

seen from Canada

seen from United States

seen from China
seen from Portugal
seen from India
seen from Russia
seen from Japan

seen from United States
seen from Türkiye

seen from Portugal
seen from Canada

seen from Bulgaria
seen from Russia
Extra exercises with key
Пособия для разработчика HTML5
http://dhtmlexamples.com/
Был аналогичный блог для Flex (http://flexexamples.com/), но, видимо, автор твердо решил с него слезть и с конца 2010 года, увы, блог умер.
Using AIR 3.3 SDK with Flash Builder 4.6
Just a few steps showing you how to setup AIR 3.3 in Flash Builder 4.6 on Windows:
Download AIR 3.3 SDK - air-sdk-download
Navigate to your SDKs folder (under Flash Builder 4.6 installation directory).
For 64x Windows: C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks
For 32x Windows: C:\Program Files\Adobe\Adobe Flash Builder 4.6\sdks
Clone SDK 4.6 folder and rename it (Example: 4.6.0_AIR_3.3)
Extract AIR SDK zip inside the new folder and overwrite all matches.
Download Playerglobal SWC for Flash Player 11.3
Go to /frameworks/libs/player/ inside your new SDK folder, create a new folder and name it "11.3" and place the SWC file from the previous step there. Don't forget to rename it to playerglobal.swc
Go back to 4.6.0_AIR_3.3 folder and open flex-sdk-description.xml file. Change <name> value to something more meaningful and different from the current one. I preffer using Flex 4.6 (AIR 3.3)
Open Flash Builder, go to Window->Preferences->Flash Builder->Installed Flex SDKs and add the new folder.
If you want to move an old project from AIR 3.1 or 3.2 to AIR 3.3 open its application.xml file and change the namespace at the top to match AIR 3.3. It should look like this:
<application xmlns="http://ns.adobe.com/air/application/3.3">
For every project you create and uses AIR 3.3 don't forget to add -swf-version=16 to the compile arguments right after -locale en_US
External links:
AIR 3.3 SDK
Playerglobal 11.3 SWC
Flash Player 11.3 (AIR 3.3) release notes
Creating an image only mobile button skins for Flex 4 (AIR Mobile)
One of the main differences when creating mobile Flex AIR apps from normal Flex Apps is that it's better to use ActionScript only skins. With that in mind I've created a simple skin for image buttons.
Why this skin is better than using the default spark.skins.mobile.ButtonSkin? The answer is quite simple - performance. Since this is going to be an image only skin, we don't need label element and all the other functionality the default mobile button skin has.
In order to use the class you just create a new skin extending the ImageButtonSkin. The properties you have to set inside tour constructor are upBorderSkin, downBorderSkin, measuredDefaultWidth and measuredDefaultHeight.
For the border skin properties you can use - images, SWF symbols, FGX files
Usage example:
public class ExampleButtonSkin extends ImageButtonSkin { [Embed(source="/assets/buttons/Example_up.png")] private var up:Class; [Embed(source="/assets/buttons/Example_down.png")] private var down:Class; public function ExampleButtonSkin ButtonSkin() { super(); upBorderSkin = up; downBorderSkin = down; measuredDefaultWidth = 230; measuredDefaultHeight = 80; } }
tumbleeze
if you use tumblr, do it.
http://grab.tumbleeze.com/