rulururu

post WordPress auto-update through FTP fails?

March 4th, 2010

Filed under: Tip,Wordpress — Alex Bylim @ 6:57 pm

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.

post Popular technologies

March 3rd, 2010

Filed under: Tip — Alex Bylim @ 8:03 pm

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 :)

post Running Sequence and Parallel effects on multiple items in Flex

February 26th, 2010

Filed under: Flash/Flex,MXML,Tip — Alex Bylim @ 5:43 am

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.

post Set Width and Height of Component in percents during runtime

February 24th, 2010

Filed under: Flash/Flex,Tip — Alex Bylim @ 3:17 am

If you want define size of component in percent during runtime you should user properties percentWidth and percentHeight (adobe docs)

post Does not work cornerRadius in Flex ?

February 6th, 2010

Filed under: MXML,Tip — Alex Bylim @ 3:28 am

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.

ruldrurd
« Previous Page
Powered by WordPress, Web Design by Laurentiu Piron
Entries (RSS) and Comments (RSS)