Hi everyone,

I am using a image structure as an item renderer in a tilelist which
is populated from a data array. The application runs an resizes the
image when on the 'mouseOver' and 'mouseOut' triggers.the image
resizes from a 50 width to 85.

However i observed that after moving the mouse over the image five to
six times...it does not resize the image........and stays static at 85
width.

The code of the item renderer is given below.
<?xml version="1.0" encoding="utf-8"?>
<!-- The itemRenderer that formats the contents of each cell in the
        TileList control.
    When the mouse pointer goes over a cell, this component changes
its state
        to showdesc.
    When the mouse pointer goes out of the cell the component returns
to the
        base state. -->
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" width="400"
height="300" horizontalAlign="center"
        verticalAlign="top" mouseOver="currentState='showdesc'"
mouseOut="if(!event.relatedObject)currentState=''">
      <!-- In the base state, display the image and the label. -->
<mx:Image id="img1" source="{data.image}" width="50"  height="50"
        resizeEffect="Resize" />
<mx:Label text="{data.name}"/>

<mx:states>
    <mx:State name="showdesc">
        <!-- In the showdesc state, add the price, make the image
bigger, and
            put the description in the parent application's TextArea. -->
        <mx:AddChild>
                <mx:Text text="{data.price}"/>
        </mx:AddChild>
        <mx:SetProperty target="{img1}" name="width" value="85"/>
        <mx:SetProperty target="{img1}" name="height" value="85"/>
        <mx:SetProperty target="{parentApplication.t1}" name="text"
            value="{data.description}"/>
    </mx:State>
</mx:states>
</mx:VBox>

is it becoz of some default property of the resize effect??
i am confused.
Kindly help.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS




Reply via email to