January 22nd, 2010 |
by teocomi |
published in
Resources
I never thought of something like this! But definitely it’s genius, SIKULI “is visual technology to search and automate graphical user interfaces (GUI) using images (screenshots).”
Said in a more capable way, you can use SIKULI to create scripts or macros on your OS, without having to code at all! You just have to take the [...]
November 5th, 2009 |
by teocomi |
published in
Web resources
Are you creating a stunning website or application but you lack of enought skills or time to create your own icons? Well here below I’ll privede some usefoul links…
Iconfinder – as the name suggests it is an icon search engine. Way much better than searching with Google Images! Hi-Quality and multi-size PNG and ICO files [...]
October 26th, 2009 |
by teocomi |
published in
Flex 4
I went almost crazy some time ago trying to resize and center some images dynamically loaded into Flex, finally I found out that the key point was to consider the image.contentWidth instead of the image.width. This beacuse if you try to get the image.width as you load the image it will return the value [...]
October 26th, 2009 |
by teocomi |
published in
Flex 4
I was trying to create a simple preloader for my image gallery in Flex; so i ended up with something like this:
[code lang="XML"]
<mx:Image progress="pre.visible=true" complete="pre.visible=false" source="img.png"
height="40" width="40" />
<mx:Image id="pre" source="@Embed(source='preloader.swf')" height="40" width="40" />
[/code]
we simply use the events progress and complete of the image loading to [...]