Flexcomps’s Weblog |
|
| Listed in | Programming on position 11 and overall rank is 2475 |
| Country | India |
| Language | English |
| Owner | yogeshpuri |
| Member Since | August 19, 2008 |
| URL | http://flexcomps.wordpress.com |
| Pagerank | 0 |
| Tags | flash | flex | air | actionscript | flash_games | rich_internet_applications |
|
|
|
Latest Posts on: Flexcomps’s Weblog
Retrieved latest 5 posts at: http://flexcomps.wordpress.com/feed/
Must read Flash / Flex Magazine
FFDMag had excellent magazine for flash and flex programmers having articles ranging from Beginner Level to expert levels. Just check some of the topics below Flash Flex developer interview with Dave Schroeder about the Flashbelt Conference… BannerSnack – A quick alternative to Flash?… Working With Flash CS4 New Features: Inverse kine..
Posted on 2 June 2009 | 9:04 am
Solution for Canvas having rounded corner and a background
I have faced a problem when i tried to have a canvas with rounded corner and having an image. I doesn’t want to make the rounded corners in image as the content is going to be scaled. After doing some research on Net i found a good solution to the problem. it is a kind [...]..
Posted on 20 December 2008 | 2:35 pm
Macro to copy sheets Names in Excel
A very nice utility Sub CreateListOfSheetNames() Set wkbkToCount = ActiveWorkbook iRow = 1 With Sheets.Add For Each ws In wkbkToCount.Worksheets .Rows(iRow).Cells(1).Value = ws.Name ActiveSheet.Hyperlinks.Add Anchor:=.Rows(iRow).Cells(1), Address:="", SubAddress:= _ ws.Name & "!A1", TextToDisplay:=ws.Name iRow = iRow + 1 Next End With End Sub P..
Posted on 7 November 2008 | 10:40 am
Removing a child from a parent by passing instance name as string
Following is a code to remove a child from a parent by passing it’s instance name as a string and parent as a display object import fl.controls.Button; //———– Draw a graphics on the stage ———- var t:Sprite = new Sprite(); t.name = “testSprite”; t.graphics.lineStyle(1,0x0000ff); t.graphics...
Posted on 21 October 2008 | 9:32 am
Improve Performance with BitmapData.lock( )
While reading a book i come to a very interesting topic which i would like to share here ———————– By default, The bitmap instances that reference a given BitmapData object are notified every time setPixel32( ) or setPixel( ) is called on that object. When setPixel32( ) or setPixel( ) are used in rapid..
Posted on 10 October 2008 | 3:24 pm