Archive for July, 2006

ListBox Component

Thursday, July 27th, 2006

Just playing around with ListBox Component and exploring its methods.
here is some code i am trying:
//—– start code———//
add_btn.onRelease = function(){
people_lb.addItem( label_txt.text, {userid:userid_txt.text, userip:userip_txt.text, blocked:blocked_txt.text, isAdmin:isAdmin_txt.text, customData:gender_txt.text, properties:labelProp} );
}
//
function displayDetails(c){
//output_txt.text = c.getSelectedItem().label+” :”;
//var j = c.getSelectedItem().data;
data_txt.text = c.getItemAt(2).data.userid;
}
display_btn.onRelease = function(){
//displayDetails(people_lb);
for(var i = 0;i< people_lb.length; i++){
trace(people_lb.getItemAt(i).label);
trace(people_lb.getItemAt(i).data.userid);
}
}
//people_lb.setChangeHandler(”displayDetails”);
// ——— end code ———– //
add a few textfields to the […]

July Photoshop video tutorials

Saturday, July 1st, 2006

PHOTOSHOP:
Text That Follows a Path
————————-
Creating text that follows a path in Photoshop is an extremely simpleprocess.
In this tutorial, you’ll learn how to create a circle of text using selections, paths, and, of course, the text tool.
Photoshop text that follows a path
PHOTOSHOP:
Creating a Photorealistic Tennis Ball
————————————-
I’ll give you three guesses as to […]

nEW fLASH Tutorials for July

Saturday, July 1st, 2006

FLASH TUTORIAL
Conditionals and Toggle Switches
A conditional is a way of executing a piece of code only if the circumstances are right. In this tutorial, you will learn how to use the if() statement to control a toggle switch in Flash.
Flash tutorial - conditionals and toggle switches
————- Tutorial 2 ————
FLASH
Common Mistakes with Actions […]