Re: [flexcoders] SQL lite database and Tablet problem

2012-03-28 Thread Jeff Gomes
Mark- Perhaps try applicationStorageDirectory instead of documentsDirectory. -Jeff On 3/28/2012 09:23, markflex2007 wrote: Hi friends I developed a Air mobile application with flex sdk 4.6.0. I test it in Flash Builder 4.6 simulators in windows.it works fine. but when I install the apk and

Re: [flexcoders] Re: popup on screen certer? [1 Attachment]

2012-02-19 Thread Jeff Gomes
5, markflex2007 wrote: > I just test.PopUpManager can not work with s:SkinnablePopUpContainer. > > other idea? > > Thanks > > Mark > --- In flexcoders@yahoogroups.com, Jeff Gomes wrote: >> PopUpManager.centerPopUp(pop); >> >> On 2/17/2012 14:36, markflex20

Re: [flexcoders] popup on screen certer?

2012-02-17 Thread Jeff Gomes
PopUpManager.centerPopUp(pop); On 2/17/2012 14:36, markflex2007 wrote: > Hi > > I use build a pop component for mobile app > > and use the following code to call the popup > > var pop:PopUpWindows = new PopUpWindows(); > pop.open(this,true); > > > but the popup

Re: [flexcoders] getting the total of values of an array collection that is updated manually

2011-12-03 Thread Jeff Gomes
One handy way to iterate the contents of an ArrayCollection to make a temporary vector from the source array of the collection, and use the vector.forEach method. At 07:43 12/2/2011, ZIONIST wrote: >Hi Guys, i would like to get the total price calculated as an array >collection for a list is p

Re: [flexcoders] Why can't I change the highlight color of Spark text?

2010-08-17 Thread Jeff Gomes
Assuming you want to set it for all text areas, you could experiment with the global styles selectionColor and focusedTextSelectionColor. -Jeff At 02:14 8/17/2010, dorkie dork from dorktown wrote: >I've spent soo much time trying to find how to do this. > >I'm using, sparkTextArea.selectAll()

Re: [flexcoders] Rounding the corners of a scroller

2010-08-04 Thread Jeff Gomes
Brand- I started with the default spark ComboBoxSkin and added a mask and some other tweaks to get it to look the way I wanted, such as moving the border rect to a higher z than the scroller. It took a bit of trial and error, especially to get it to match up cleanly with the button, which als