March 4th, 2010
While in admin panel of wordpress you are trying to updatd some plugin through auto-update feature does it fails ? You getting something like this: Can not connect ftp …:21 ? You insert all valid data: FTP domain, ftp user, password, choose option through FTP or Secured-FTP and it’s breaks again? Then you should to try enter localhost instead of your actuall ftp domain, it should fix problem.
March 3rd, 2010
Do you want to learn some new technology and of course receive money in the future for your knowledges ? But you don’t know what technology is popular and relevant? Then you can visit http://www.odesk.com/trends (oDesk one of the most popular web-site for job searching) On Trends page you can see different graphics of what technology is growing and what becoming less popular. From this you can decide where to spend your time
February 26th, 2010
Hi, for example you have few components on the stage and you want to run different effects on them. So lets imagine we have label1, label2 and label3 and we want for example make label1 move to some place and after that animation is finished we will fade out label2 and label3 simultaneously.
So we can use Sequence and Parallel effects in Flex, to do this see code below:
<mx:Sequence >
<mx:Move target="{label1}" yTo="0" duration="1500" />
<mx:Parallel duration="2000">
<mx:Fade target="{label2}" alphaTo="0" />
<mx:Fade target="{label3}" alphaTo="0" />
</mx:Parallel>
</mx:Sequence>
So why I’m telling this ? This is very simple, but there is a trick you always should use there this syntax target=”{…}” instead of target=”…” other way it wont work and you will be getting Error #1006 Value is not function.
February 24th, 2010
If you want define size of component in percent during runtime you should user properties percentWidth and percentHeight (adobe docs)
February 6th, 2010
Quick tip:
Did you set component’s cornerRadius to some value bigger then zero and expect corners to be rounded but it does not work ? Simply just set style borderStyle of that component to solid.