vote up 0 vote down star

hi, i'm new in flex.Here is my problem

<mx:HorizontalList id="horizontalList" height="100" columnCount="6" dataProvider="{arr}">   			
 <mx:itemRenderer>
  <mx:Component>
	<mx:Image width="100" height="100" source="../../user/mahedi/weeding/album/{data}"/>
  </mx:Component>
 </mx:itemRenderer>
</mx:HorizontalList>

i want to make source path dynamic. i mean i collected userName and albumName from php and i could print in flex.But when i use in source like this this way source="../../user/{userName}/{albumName}/album/{data}" i fond error. how can i solve that please help me

flag

0% accept rate
what is the error? – Sean Clark Hess Jul 29 at 18:19
source="../../user/{userName}/{albumName}/album/{data}" when i set this path the builder give message access of undifined property userName and same for other.Have any solution – Mahedi Jul 30 at 2:57

1 Answer

vote up 0 vote down

How about

source="{'../../user/' + username + '/' + albumName + '/album/' + data}"
link|flag
Thank you very much for your reply – Mahedi Jul 30 at 2:30
source="{'../../user/' + username + '/' + albumName + '/album/' + data}".when i set this path the builder also give message access of undifined property userName and same for other.Have any solution – Mahedi Jul 30 at 2:58
That is because userName is a variable. You need to declare it in your code and assign it a proper value. [Bindable] public var userName:String = "Mahedi"; – Christophe Herreman Jul 30 at 4:50
Thank you very much. – Mahedi Jul 30 at 5:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.