A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: I included some Images to showcase the problem I'm trying to solve ....

  1. #1
    Senior Member
    Join Date
    Apr 2008
    Location
    Rotorua / New Zealand
    Posts
    117

    I included some Images to showcase the problem I'm trying to solve ....

    Hi there,

    First up I like to thank you for any Ideas or help with regards to this item and if needed here is the Link to this particular Application in question as well - http://www.uppercut-spotthearts.webflashartistry.com/ - regards aktell

    I included a couple of Images to showcase the problem I'm trying to solve - IF it is a problem at all ? as it appears only here * there once in awhile yet it comes up at times and is annoying say the least!

    Just to explain: I do cater & help Artists, Designer, Models, Photographers, Stylists etc. etc. worldwide with promotional work i.e. there Online Presence, but I also started a couple of month ago to engage in a more visual site to all of this in Fashion & Art, and again do promotional work as in Spotting, Finding, Promoting which over years now has connected me with many Interesting People globally!

    Anyway, in one of these Application which I use in building up to a quiet extensive large App. I do have a small item which I like to work out before starting to build this much more complex one - finish on paper & using many of the components build up and tested over time!

    The problem is that sometimes the List component is behaving erratically as shown in Image 001 attached not staying in its areas allocated, but also the TileList has given problems even so the direction is specified showing the opposite of what is given !!!

    SpotTheArts 001.jpg
    Image 001 is the Incorrect view.


    SpotTheArts 002.jpg
    Image 001 is the Correct view.


    Below is some code in which I included now also - includeInLayout="true" - as well I'm using - creationPolicy="auto" - in the Application section.
    Code:
    										
     <mx:Canvas 
     label="List View" 
     width="100%" height="100%"
     showEffect="Dissolve"
     verticalScrollPolicy="off"
     horizontalScrollPolicy="off">
    											
     <mx:List 
     id="photosList" 
     width="100%" height="100%"
     fontSize="11"
     textIndent="5"
     wordWrap="true"
     iconField="@icon"
     borderStyle="none"
     labelField="@title"
     fontFamily="Verdana" 
     backgroundAlpha="0.0"
     includeInLayout="true"
     variableRowHeight="true" 
     click="showBtn()"
     verticalScrollPolicy="on"
     horizontalScrollPolicy="off"
     dataProvider="{service.lastResult.photo}" 
     change="photosTileList.selectedIndex = photosList.selectedIndex"/>
    											
     </mx:Canvas>
    										
     <mx:Canvas 
     label="Image View" 	
     width="100%" height="100%"
     showEffect="Fade"
     verticalScrollPolicy="off"
     horizontalScrollPolicy="off">
    											
     <mx:TileList 
     id="photosTileList" 
     width="100%" height="100%" 
     rowHeight="100"
     columnCount="2"
     borderStyle="none"
     backgroundAlpha="0.0"
     direction="horizontal"
     includeInLayout="true"
     verticalScrollPolicy="on"
     horizontalScrollPolicy="off"
     click="showBtn()"
     dataProvider="{service.lastResult.photo}"
     change="photosList.selectedIndex = photosTileList.selectedIndex">
    												
     <mx:itemRenderer>
    													
     <mx:Component>
    														
    														 <cacheImg:CachedImage 
     source="{data.@thumb}"
     toolTip="{data.@title}"
     horizontalAlign="center"/>
    														
     </mx:Component>
    													
     </mx:itemRenderer>
    												
     </mx:TileList>
    											
     </mx:Canvas>

  2. #2
    Senior Member
    Join Date
    Apr 2008
    Location
    Rotorua / New Zealand
    Posts
    117
    Hi there again,
    I was only now able to catch an Image of what can happen as mentioned as above or here in the Quote - RE.TileList:
    The problem is that sometimes the List component is behaving erratically as shown in Image 001 attached not staying in its areas allocated, but also the TileList has given problems even so the direction is specified showing the opposite of what is given !!!
    SpotTheArts 003.jpg
    Image 003 is the Incorrect view.

    SpotTheArts 004.jpg
    Image 001 is the Correct view.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center