[flexcoders] Re: Embed pdf in Flex?

2010-01-30 Thread myflexdownloads
One of our sellers in working on a similar component for under $15 (so unfortunately not free) and the expectation is before next week is outit should be uploaded. I can post a note here when ready if you are interested in getting that. Seems pretty bare bones and simple... Web Admin FlexDownlo

[flexcoders] Re: Popups in Sub Applications...

2010-01-30 Thread myflexdownloads
I normally just create the popup as a child of Application.application and that way cenetering is perfect. Web Admin FlexDownloads.com --- In flexcoders@yahoogroups.com, "jamesfin" wrote: > > I've been studying the sub application functionality lately and have a > question. > > If a multi-ver

[flexcoders] Re: Image not loading

2010-01-28 Thread myflexdownloads
Try invalidating the tile list. Also see if calling validateNow() on the tile list helps...it is usually required when you change item renderers but it does not seem like you are changing renderers. FlexDownloads.com Web Admin --- In flexcoders@yahoogroups.com, venkat eswar wrote: > > > > H

[flexcoders] Re: newbie q: transition from flash to flex (long-ish)

2010-01-28 Thread myflexdownloads
Pretty much the same. If I were to do this, I would 1. Create a component class called Question 2. Create a component class called Quiz 3. Create appropriate events Question can - Have Answers of type multiple choice with more than 1 right answer (checkbox type) - Have Answers of type multiple ch

[flexcoders] Re: Filtering a TileList

2010-01-28 Thread myflexdownloads
Write a filter function..something like this..setFilter in the code below is a placeholder for whatever you want to match..presumably from a combo box drop down that implements the filter. private function filterAc(item:Object):Boolean { if(setFilter=='All') return true; if(item.productTyp

[flexcoders] Re: Can't load pics uploaded with flex3+php

2010-01-28 Thread myflexdownloads
The only thing I can think off is that when you are uploading thru php, you might not be writing them to the file system with the correct permissionsso it probably does not have a read permission 1. Check the permissions on the php upload 2. Compare with permssions on the ftp upload FlexDow

[flexcoders] Re: Image contentWidth

2010-01-28 Thread myflexdownloads
Use the updateComplete event instead of createComplete and attach a listener and do the needful. RT --- In flexcoders@yahoogroups.com, "criptopus" wrote: > > Tried the CREATION event it didn't work, but I managed to get round the > problem. I just set a boolean flag when it changes. And when I

[flexcoders] Re: Oh help me understand sizing perportionately

2010-01-28 Thread myflexdownloads
It will work without the space if you accurately specify both the scaled height and width. So to scale 500 by 300 1. Specify the image size to be 250 by 150 2. If you specify 250 by 200 space on the bottom 3. If you specify 300 by 150 space on the right Flexdownloads.com Web Admin --- In flexco

[flexcoders] Re: Dynamically-Sized ItemRenderers

2010-01-28 Thread myflexdownloads
I believe lists have a variableRowHeight property...if you set the property to true and then call validateNow() the display should resize when the item renderer resizes, and this should work for all lists. FlexDownloads.com Web Admin --- In flexcoders@yahoogroups.com, Rich Christiansen wrote: