Flex doesn't support the notion of a hyperlink in the traditional sense. If
you wanted to create breadcrumbs and you were using states and let's say, a
viewstack, then you could bind a text field to the values of the different
states and show or hide the breadcrumb depending if you were on a state or
not:

<mx:states>
<mx:State name="My State" />
<mx:State name="State 2" />
</mx:states>

<mx:HBox><mx:Text text="{this.currentState}" /><mx:Text
visible="{viewstack.currentState!='view1'}"
includeInLayout="{viewstack.currentState!='view1'}" text=" >
{viewstack.currentState}"/></mx:HBox>

The bindings above show the value of the current state, in this example,
either, "My State" or "State 2". It could be blank if you do select either
state at startup. The second text field is either visible or invisible
depending on if the current state is view1 or a different view.

On Mon, Nov 16, 2009 at 9:12 AM, Satish Chowdary <[email protected]>wrote:

>
>
> Hey Coders,
>
> give me a idea about how  to implement breadcrumbs in flex application
>
> Thanks inAdvance
> సతీష్
>
> ------------------------------
> The INTERNET now has a personality. YOURS! See your Yahoo! 
> Homepage<http://in.rd.yahoo.com/tagline_yyi_1/*http://in.yahoo.com/>.
>
> 
>

Reply via email to