[flexcoders] Re: Flex Skin Design Extensions for Photoshop, Illustrator

2009-02-28 Thread rmarples
Forgot to include the link... this is the site. The download links appear broken to me. --- In flexcoders@yahoogroups.com, "rmarples" wrote: > > Hi all - I've been trying to download the Flex Skin Design Extensions for Photoshop and > Illustrator but the links appear

[flexcoders] Flex Skin Design Extensions for Photoshop, Illustrator

2009-02-28 Thread rmarples
Hi all - I've been trying to download the Flex Skin Design Extensions for Photoshop and Illustrator but the links appear to be broken on Adobe's site. Any idea where I could find these files? Anybody willing to post the ones they may have previously downloaded? Ryan

[flexcoders] Re: Datagrid editedItem

2008-08-18 Thread rmarples
data.myDataField = myTextInput.text; > // dispatch an event here to send the data to the server > } > > > > -TH > > --- In flexcoders@yahoogroups.com, "rmarples" > wrote: > > > > The thing I'm finding cumbersome is that the dataP

[flexcoders] Re: Datagrid editedItem

2008-08-13 Thread rmarples
napshot of the cell's listData on the > itemEditBeginning event. Then, on the itemEditEnd event, compare the > cell's listData to the snapshot; to determine if you really need to > send the data. > > -TH > > --- In flexcoders@yahoogroups.com, "rmarples"

[flexcoders] Re: Datagrid editedItem

2008-08-13 Thread rmarples
I'm also looking for this. Does anybody have any thoughts? I'm using the AdvancedDataGrid. --- In flexcoders@yahoogroups.com, "Deniz Davutoglu" <[EMAIL PROTECTED]> wrote: > > Hello guys, > I need to write excell like aplication. which will send data to server > after every cell edited. > I wrote

[flexcoders] AdvancedDataGrid change notifications

2008-08-12 Thread rmarples
Hi folks, Does anybody know of a straight-forward way of being notified when an item within my AdvancedDataGrid has been edited? I am currently not using a custom item renderer or item editor. I want to know what's been changed so I can send updates to my server to commit changes to the database.

[flexcoders] AdvancedDataGrid: turning renderer into editor

2008-05-16 Thread rmarples
Hi all - Anybody know from within an item renderer how to tell the AdvancedDataGrid to switch to the item editor for that cell? I tried the createItemEditor method but it doesn't seem to do it. Any ideas? Ryan

[flexcoders] Re: performace issue with repeating same component

2008-03-14 Thread rmarples
You may want to mess with the new profiler to figure out where the bottleneck is but my initial guess at the bottleneck is the layout of the components. If you've got a whole bunch of relative sizing of positioning of the children that can chew up a lot of time. This is where you set the width and

[flexcoders] Customizing for many environments

2008-03-04 Thread rmarples
Hi folks - Would like to get others thoughts on this... We produce a Flex-based product that is an add-on to salesforce.com. We're constantly adding more configuration options to the product to support the wide array of customers needs and salesforce.com configurations. Up until now we've been us

[flexcoders] Re: How to make Button show when it's outside the parent's boundaries?

2008-02-26 Thread rmarples
The drop-down part of the combo box is not a child of the combo-box but as a top-level pop-up so it exists outside of the combo box's parent. Your button would not do this if it was placed on the canvas. So you'll want to have your button pop-up as well. Check out the PopUpManager class in the docs

[flexcoders] Re: DataGrid editor lifecycle

2008-02-08 Thread rmarples
com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > It gets re-enabled when the editor moves to a new row. > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of rmarples > Sent: Friday

[flexcoders] Re: DataGrid editor lifecycle

2008-02-08 Thread rmarples
ing? Ryan --- In flexcoders@yahoogroups.com, Scott Melby <[EMAIL PROTECTED]> wrote: > > try itemEditEnd > > hth > Scott > > Scott Melby > Founder, Fast Lane Software LLC > http://www.fastlanesw.com > > > > rmarples wrote: > > > &

[flexcoders] DataGrid editor lifecycle

2008-02-08 Thread rmarples
Hi folks - Does anybody know what the lifecycle of the DataGrid editing process is in regards to disabling and enabling the autoUpdate feature of it's dataProvider? It seems that it gets disabled at some point when the editing process begins and I'm not clear when it's gets re- enabled. I'm tr

[flexcoders] Re: What is the best way to add a day to a date?

2008-02-07 Thread rmarples
Sorry, first post didn't come through properly. Try this: var origDateString:String = "2008/12/31"; var dateItems:Array = origDateString.split("/"); var newDate:Date = new Date(dateItems[0], Number(dateItems[1])-1, Number(dateItems[2])+1); var newDateString:String = newDate.getFullYear() + "/" +

[flexcoders] Re: What is the best way to add a day to a date?

2008-02-07 Thread rmarples
--- In flexcoders@yahoogroups.com, "Mark" <[EMAIL PROTECTED]> wrote: > > I'm getting dates in my XML formatted like this: > > 2008/12/20 > > In some cases in my Flex app I need to add 1 day to that date. What > is the best way to do that? Right now I'm working it out this way: > > s = chartDates

[flexcoders] Re: Array vs ArrayCollection

2008-02-01 Thread rmarples
problem domain opposed to a basic array. I guess if you find you > want > to use the functions exposed by the ICollectionView and IList > interfaces the ArrayCollection is your tool. > > Anybody have any clear examples? > > Nick >

[flexcoders] Array vs ArrayCollection

2008-01-30 Thread rmarples
We have recently made some big performance gains in our product by replacing the use of ArrayCollections with Arrays in some data calculation algorithms. It appears that even iterating through an ArrayCollection is significantly slower than an Array. My question to you all is... what have you

[flexcoders] Number parsing

2008-01-21 Thread rmarples
Hi folks - I wonder if anybody has had to write an international application where both the input and output of numbers was subject to the regional number format. In other words, The american 1,234.56 should be displayed as 1.234,56 in the german locale. This isn't too hard with the NumberFor

[flexcoders] Re: Repeater problem

2008-01-14 Thread rmarples
You don't need to set up your data before the applicationComplete. But the point is, when you DO assign a value to your _user.skills variable, it needs to be all at once. --- In flexcoders@yahoogroups.com, "Merrill, Jason" <[EMAIL PROTECTED]> wrote: > > Thanks - I suspected it was something like

[flexcoders] Re: Repeater problem

2008-01-09 Thread rmarples
Yeah I just wanted to ensure that it had nothing to do with the structure of the repeater and surrounding components itself. Which it doesn't. But thinking about this a bit more, I think I know what's going on. If you have a property of an object that's bindable, that means that whenever tha

[flexcoders] Re: Repeater problem

2008-01-08 Thread rmarples
Hi Jason - I was curious so I copied your code into a test app and it all seemed to work fine for me: http://www.adobe.com/2006/mxml"; layout="absolute"> --- In flexcoders@yahoogroups.com, "Merrill, Jason" <[EMAIL PROTECTED]> wrote

[flexcoders] Re: Object reference via string

2008-01-08 Thread rmarples
Yes, any property of an AS object can be referenced like: obj.prop But can also be referenced like this: obj["prop"] The prop part here being a string. Ryan --- In flexcoders@yahoogroups.com, "markgoldin_2000" <[EMAIL PROTECTED]> wrote: > > Actually this works: > var Consist:Object = Object

[flexcoders] Re: Save/Recall a Password field?

2008-01-08 Thread rmarples
I'm curious about this as well. If you store the hash, how do you get back the original password later on to pass to your authentication system? --- In flexcoders@yahoogroups.com, "TJ Downes" <[EMAIL PROTECTED]> wrote: > > It may not be until late tomorrow before i can post a code sample. I > wi

[flexcoders] Re: Non en_US locale's number/date format strings

2008-01-08 Thread rmarples
Module() > > or automatically loaded at startup by specifying resourceModuleURLs in > the FlashVars of the HTML wrapper. > > Gordon Smith > Adobe Flex SDK Team > > ____ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf

[flexcoders] Re: Non en_US locale's number/date format strings

2008-01-08 Thread rmarples
lex SDK Team > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of rmarples > Sent: Tuesday, January 08, 2008 4:10 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Non en_US locale's number/date format s

[flexcoders] Non en_US locale's number/date format strings

2008-01-08 Thread rmarples
We are building an application that has a requirement such that numbers, currency and dates need to be formatted based on the user's locale. eg: 1,500.23 in english is 1.500,23 in german. My understanding is that Flex does not provide the ability to automatically read these format styles from the o

[flexcoders] Re: Compare / Add Dates?

2007-12-11 Thread rmarples
Aly - Check this doc out: http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm? context=LiveDocs_Book_Parts&file=08_Dates_and_times_164_2.html --- In flexcoders@yahoogroups.com, "nodovu" <[EMAIL PROTECTED]> wrote: > > Anyone know how to : > Todays date + 7 days > Todays

[flexcoders] Re: How to restore automatic height calculation (after an explicit value was set

2007-12-05 Thread rmarples
Hi Cosma, If you do something like the following you, you will re-set the width of a component to it's original measured size. myComponent.width = myComponent.measuredWidth; Hope this helps! Ryan --- In flexcoders@yahoogroups.com, "Cosma" <[EMAIL PROTECTED]> wrote: > > Hi flexcoders out ther

[flexcoders] Cairngorm design questions about Command-View communication

2007-12-05 Thread rmarples
As our product has gotten bigger, I have moved it from a standard Model-View-Controller design to a more strict Cairngorm-like Model-View-Dispatcher-Command design. But one particular aspect of it has left me a bit unsure as to the best practice. I'm hoping others can share their views on this

[flexcoders] Re: Local storage of password

2007-12-05 Thread rmarples
]> > To: > Sent: Wednesday, December 05, 2007 2:31 AM > Subject: Re: SPAM-LOW: [flexcoders] Re: Local storage of password > > > > > > ( Thanks for listening; glad you enjoy ) > > > > You are working on an application with very odd security

[flexcoders] Re: Local storage of password

2007-12-04 Thread rmarples
out the security implications of storing > this type of authentication between application uses. > > rmarples wrote: > > > > > > Tracy - Isn't MD5 a hashing algorithm? Meaning I can only encrypt, not > > decrypt? I don't > > think this would wor

[flexcoders] Re: Local storage of password

2007-12-04 Thread rmarples
ailable for AS3 that I have used. > > > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of rmarples > Sent: Monday, December 03, 2007 4:59 PM > To: flexcoders@yahoogroups.com > Subjec

[flexcoders] Local storage of password

2007-12-03 Thread rmarples
I have a requirement to take credentials used for an external web service and cache them locally so that the user need not re-type their password each time they run the app. I can easily store these credentials in a SharedObject (cookie) but I don't want to store the password in plain-text he