Learn ReactJs

To Know more about ReactJs with the Restful API

React

React
Fundamental of React Js

Monday, December 31, 2007

REFLECTION TEXT EFFECT

Reflection Text Effect************************In action script, This is Reflection [mirror] effecthow to do this effect?Wat are the Propery to need ......Blur xBlur YDistance XDistance YStartingPosition XEndingPosition Xcreate a EmptyMovie clip and store into the arrayHolderand for current movie to create a TExtFieldand assign the value to given user textafter that split the text and put into ArrayHolder...collect the load text movieclipso that we use for .. loop to to get movieclip to Holder.and make the text as embed TextHere,.. the code....function...

Drop Shadow Text Effect

In ActionScript DropShadow Text Effectusing this u have to import the Filterimport flash.filters.DropShadowFilter;and then,some property item to be given here..DistanceAngleColorAlphaBlur XBlur YStrengthQualityInnerKnockOutHide Objecthere code...var myDropShadowFilter = new DropShadowFilter (5,65,0xff3333,1,5,10,2,3,false,true,false);after that assign this effect to the movie clipEs.filters = [myDropShadowFilter];Now, the DropShadow effect is applied to ur Movie Cliphere, the complete code..import flash.filters.DropShadowFilter;var myDropShadowFilter...

Tuesday, December 25, 2007

Dynamic Remove Image

Dynamic Remove Image Load the image via XML file Make the action script enable the first Child Then, load the images to the movie Get the loops statement count the no. of image and place holder to the Movie clip Container. After the make all movie clip to link as button and perform the operation to remove the images from the container. Here the code…. var myxml:XML = new XML(); myxml.ignoreWhite = true; myxml.load('list.xml'); myxml.onLoad...

Dynamic Rotate

Load Image from Xml and Make RotateScreen View: Code View output ViewHere the Code: Here the code: import mx.transitions.Tween; var xml:XML=new XML() xml.ignoreWhite=true xml.onLoad=function(s){ if(s){ _root.bg.createEmptyMovieClip('image',1) _root.bg.image.createEmptyMovieClip('rose',2) var mcLoader:MovieClipLoader=new MovieClipLoader() ...

Monday, December 24, 2007

Text Effects

Text Effects! What are the Item basic as need: 1. UI Type Button 2. Preview Window [ As a Movie Clip] 3. UI Text Fields 4. Movieclip Property Window First we see abt Tweening! Propery... propery has Alpha ---> Starting and Ending value Position ----> Starting X and Y and Ending X and Y Values RadioButton ----->...

Thursday, December 13, 2007

ActionSript 2.0 - worddrag

window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-109546458-1'); In actionScript, we discus abt the worddrag...In this, first we have create a EmptyMovieClip for store a words... in the listItem Arrayfrom this Array have to crate one more subArray as Letters..Steps:1: create a Flash document with Actionscript2.02: press F9 and open the open Actionscript Window3: write a code ...Logic: ******Here wat r the item need.....1: Movieclip2: TextField3: ...