talkxe

riaxe snippets

Follow me on TwitterRSS Feeds

  • Home
  • About Us
Ryan Tan Free Transform Manager

Top 10 Transform Tools/Transform Managers built in AS3 for Flex and Flash

Jan 24th

Posted by Susrut Mishra in actionscript

1 comment

 

ryantan.net – free transform manager

 

quietless.com – transform tool

 

 

 

 

 

 

 

 

 

 

 

 

 

senocular.com – flash transform tool

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

joelhooks.com – transform tool

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

vstyran – experimental transform tool

 

 

 

 

 

 

 

 

 

 

 

sephiroth – senocular modified transform tool

 

 

 

 

 

 

 

 

 

 

 

 

rogue-development – object handles for flex

 

 

 

 

 

 

 

 

 

 

 

 

 

 

greensock – transform manager

 

 

 

 

 

 

 

 

 

 

 

 

 

 

riaxe.com – transform tool as3

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

riaxe.com – text scaling, dynamic menu and flex 4 support

Share
as3, flash, flash builder, flex, text scaling, top 10, transform tool
Tranform Tool V2

AS3 Transform tool [Flex 4 Support] with text scaling and dynamic menu

Jan 22nd

Posted by Susrut Mishra in actionscript

2 comments

New AS3 – Flex 4 Transform tool with text scaling

Features Listed:

Flex 3 and Flash Builder 4 support. Works on both mx and spark components
Attachable Menus where functionality can be added programmatically
Tranforms almost all the components – Video, Image, Buttons etc without creating bitmap
Advanced tranform features like – Scale, Rotate, Horizontal and Vertical Flip
Automatic calculation of boundary while live transforming
Scaling of target using width and height ratio
Ability to add dynamic controls onto the transform tool
Fully customizable design of the transform tool
100% customizable code and graphic assets
Well documented actionscript methods and properties

Tranform tool v2

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Live Example can be found here

Share
as3, flash builder, flex 4, text scaling, transform tool

Console Application in C++ to get Window Titles

Dec 25th

Posted by Susrut Mishra in .NET

No comments

Hi All, I am not a .net guy but compiled this useful script to get the open window titles.

==============================================

#include <windows.h>
#include <cstdio>

BOOL CALLBACK MyEnumWindowsProc(HWND hwnd, LPARAM lparam)
{
    HWND lShellWindow = GetShellWindow();
    int& i = *(reinterpret_cast<int*>(lparam));
    ++i;
    char title[256];
    ::GetWindowText(hwnd, title, sizeof(title));

    if (hwnd == lShellWindow) return true;
    if (!IsWindowVisible(hwnd)) return true;

    int lLength = GetWindowTextLength(hwnd);
    if (lLength == 0) return true;

    ::printf(title);
    ::printf(“\n”);
    return TRUE;
}

int main()
{
    int i = 0;
    ::EnumWindows(&MyEnumWindowsProc, reinterpret_cast<LPARAM>(&i));
    return 0;
}

 

========================================

 

Hope this helps :)

 

Share
Application, C++, Cosole, Titles, Window

Flash | Javascript Based Streaming Internet Radio Application – Hindi Stations

Oct 8th

Posted by Susrut Mishra in actionscript

No comments

Flash Radio

Flash | Javascript based Streaming Online Radio with Hindi Channels.  Absolutely no server side.

Share
radio

loadMovie loadClip external image height width issue in AS2 [Solved]

Aug 5th

Posted by Susrut Mishra in actionscript

No comments

Recently while working on an AS2 project in flashlite we had a issue of getting the height and width of a dynamically loaded external image from a URL. Here is the solution we formulated:

var mclListener:Object = new Object();
mclListener.onLoadInit = function(targetmc:MovieClip) {
trace(“movie loaded”);
trace(targetmc._width);
};

var imagemcl:MovieClipLoader = new MovieClipLoader();
imagemcl.addListener(mclListener);
imagemcl.loadClip(URL, mc);

Share
actionscript, as2, flash, flashlite
12345»
    • Popular posts
    • Archives
    • Tags
    • Categories
    • .NET (1)
    • actionscript (20)
    • AIR (2)
    • as2 (2)
    • as3 (16)
    • facebook (1)
    • flash (12)
    • flex (17)
    • JAVA (1)
    • Javascript (2)
    • mobile (1)
    • s60 (1)
    • symbian (3)
    3d actionscript AIR alivepdf arc as2 as3 button circular components corner cs4 cube doubleclick drag dynamic externalinterface fabridge flash flash builder flex gradient highlight icon iconfield jar JAVA Javascript lines matrix merapi message mouse pdf player resize rotate scale singleclick text textarea textrange text scaling tilelist transform tool
    • January 2012 (2)
    • December 2011 (1)
    • October 2011 (1)
    • August 2010 (2)
    • July 2010 (1)
    • June 2010 (1)
    • May 2010 (2)
    • April 2010 (1)
    • March 2010 (1)
    • November 2009 (1)
    • July 2009 (2)
    • April 2009 (1)
    • March 2009 (3)
    • February 2009 (1)
    • January 2009 (3)
    • AS3 Transform Tool for scaling, rotating components containing text controls in Flex (30)
    • Flex Firefox Flash Debug Player Crash [Solved] (16)
    • Simple tutorial for creating an AIR application using Merapi Bridge (13)
    • Publish into facebook wall from flex (13)
    • Alive PDF from Flash Player 10 issue (7)
    • Rotating text along a circular arc in as3 (7)
    • Adding Singleclick, Doubleclick and Drag events all at a time in as3 (5)
    • Using mouse position from Javascript into Flex (3)
    • Dynamic TextArea control that resizes with the text content (2)
    • AS3 Transform tool [Flex 4 Support] with text scaling and dynamic menu (2)
  • Twitxe

    Loading tweets...
    Follow me on Twitter!
  • Resources

    • ByteArray.org
    • Flex Examples
    • InsideRIA
    • lab.polygonal.de
    • Reflektions.com
    • ScaleNine
    • Senocular
    • The Official Flex Team Blog
Copyright © 2009 ::RIAXE:: | The solving side