When I was asked to draw and design the logo for Saidmade , as often happens for His creatures, I was pretty excited. However it was not possible to rely on the inventiveness of others, had to express what was coming to life on their own and personal. In the end I am very pleased with the final result. The symbol that came out is exactly what we needed!
Archive January, 2009
How I did it: the logo of Saidmade
Photoshop Study: Ilaria lab logo redesign
It was a bit 'that I proposed some logo redesign. So this time I have the "plug" with Ilaria Lab !
A note for those who have asked: This is a logo, more precisely a study of a logo, and has nothing to do with the header of your blog - or blogs in question, just for completeness.
Very short trick: ADDED_TO_STAGE
per capire quando il nostro MovieClip è disegnato effettivamente sulla stage: As we have seen repeatedly, in the constructor of a class that extends MovieClip may be necessary to add the event ADDED_TO_STAGE to understand when our MovieClip is actually drawn on the stage:
Very short trick: duplicate or clone one or more rows in MySQL
To duplicate the whole of the contents of a table on itself just use:
1 | * FROM MYTABLE INSERT INTO SELECT * FROM MYTABLE MYTABLE |
You can also use the Clausa to WHERE if necessary:
1 | * FROM MYTABLE WHERE a = b INSERT INTO SELECT * FROM MYTABLE MYTABLE WHERE a = b |
If the table has any index or unique key, which would cause an error, you can filter the fields to be duplicated:
1 | field1 , field2 , ... ) SELECT field1 , field2 , ... FROM MYTABLE INSERT INTO mytable (field1, field2, ...) SELECT field1, field2, ... FROM MYTABLE |
Is it even possible to duplicate a record and change a value, for example duplico a field and add 1:
1 | field1 , field2 , ... ) SELECT ( field1 + 1 ) , field2 , ... FROM MYTABLE INSERT INTO mytable (field1, field2, ...) SELECT (field1 + 1), field2, ... FROM MYTABLE |
Very short trick: addEventListener () AS3, a handler more events
In Actionscript 3.0 you must use addEventListener() to intercept any event:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | / ** * Given a MovieClip mc, you set events and handlers * / ( MouseEvent . CLICK , on_click ) ; mc. addEventListener ( MouseEvent . CLICK, on_click); ( MouseEvent . ROLL_OVER , on_roll_over ) ; mc. addEventListener ( MouseEvent . ROLL_OVER, on_roll_over); ( MouseEvent . ROLL_OUT , on_roll_out ) ; mc. addEventListener ( MouseEvent . ROLL_OUT, on_roll_out); / ** * Functions hander for the above events * / e : MouseEvent ) : void { on_click function (e: MouseEvent ): void { / / Click } e : MouseEvent ) : void { on_roll_over function (e: MouseEvent ): void { / / Roll over } e : MouseEvent ) : void { on_roll_out function (e: MouseEvent ): void { / / Roll-out } |
WordPress: wp_parse_args ()
The function wp_parse_args() (like many other undocumented) draw a string in the format:
1 | var1 = value1 & var2 = value2 ... Varn = valueN |






Latest Comments
sebastian : Great share - thank you!
Subject : very helpful indeed! I tried it and it is just what I needed. Now I wonder how do I get ...
vik : With strategic help!
Pepper : Hi there, I do not know if you're one of the creators of the WP plugin Bannerize. I have spotted a ...
Rosanna : Can anyone tell me how do I delete the Snap Shots window that opens automatically when I ...