RE: [flexcoders] arraycollection vs listcollectionview

2009-03-27 Thread Scott
That's a nasty little bug. I haven't encountered that myself yet but I can see where that would happen. You may want to change your remove function to fire only on a button click and not a component update (component.remove). Scott

RE: [flexcoders] I want to use Flex Builder 3 to develop Flash Games

2009-03-28 Thread Scott
That is correct. Flex can only debug code in flex itself. I did see a book at barnes and noble last week that dealt with games in Flex (but I forgot the name of it). From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Axonn Se

[flexcoders] Flex to Air and remote coldfusion

2009-05-18 Thread Scott
be aware of if I'm connecting to another application's service? Thanks Scott

RE: [flexcoders] Flex to Air and remote coldfusion

2009-05-18 Thread Scott
Nevermind; I just figured it out. I needed to set the endpoint to the server in the remoteobject. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Monday, May 18, 2009 11:08 PM To: flexcoders@yahoogroups.com

[flexcoders] Advanced Datagrid performance

2009-05-21 Thread Scott
I'm using the advanced datagrid component to display data from my Coldfusion server. Realistically, how many records can I load into this component and still have it function? Thanks Scott

[flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Scott
e a development app like this into production? TIA! Scott

RE: [flexcoders] Voice transmission

2009-08-05 Thread Scott
My recommendation for learning: 1) pick out an app that you want to create and just start working with the code 2) If you are fairly new to programming in general then attend training http://www.adobe.com/cfusion/partnerportal/index.cfm?event=partnerfinder &showtab=training& 3)

RE: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Scott
uot;/> false deploying between servers then becomes pretty easy. On Wed, Aug 5, 2009 at 4:16 PM, Tom Chiverton mailto:tom.chiver...@halliwells.com> > wrote: On Wednesday 05 Aug 2009, Scott wrote: > I've been working on my development environment on

RE: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Scott
this a bit; it's very promising. sj From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Wednesday, August 05, 2009 12:50 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Moving flex app (coldfusion)

[flexcoders] Bindable object / combobox issue

2009-08-15 Thread Scott
rks just fine. Anyone have any idea on what is preventing the richtexteditor from populating and/or why I'm seeing that warning? Thanks Scott

RE: [flexcoders] Bindable object / combobox issue

2009-08-15 Thread Scott
hanks Scott From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Saturday, August 15, 2009 5:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Bindable object / combobox issue I've got an object I

RE: [flexcoders] Bindable object / combobox issue

2009-08-15 Thread Scott
NEVERMIND. I need some sleep... =/ There was a different entry method set up on the last two tabs that prevented it from appearing... different component. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent

[flexcoders] rich text editor bug?

2009-08-16 Thread Scott
r instance this fails and keeps the old data: If I change the RichTextEditor to text input like this: Then the text clears when the new object loads and the itemAt(0) is null. Anyone know why this is happening and have a work around? Thanks Scott

[flexcoders] Adobe Air app losing connection to DB

2009-08-17 Thread Scott
This is another weird one. I'm struggling with session management in Air and Coldfusion. I've got Coldfusion session variables set to: Use J2EE vars Unchecked Enable app vars checked enable session vars enabled MAX timeout: Application vars: 2 days 0 hours 0 minutes 0 secs S

RE: [flexcoders] Click Datagrid row - Custom class popup window showing database values?

2009-08-19 Thread Scott
I do this right now and I use the popupmanager. You'll just call another mxml component with the extended information then call the popupmanager using the click() event for the datagrid. http://livedocs.adobe.com/flex/3/langref/mx/managers/PopUpManager.html http://blog.flexexamples.com/catego

RE: [flexcoders] call remoteObject muliple times

2009-08-21 Thread Scott
I'm not sure you could account for all the records when CF returns the data... The actual data population from the CF call is in the EVENT call in the remoteobject link. The problem is, this will change every call you make and I could see that it could there could be possibility of lost data if y

RE: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-21 Thread Scott
The data gets populated/manipulated in the result="...". If the data doesn't come in for some reason, the fault handler kicks in. You can pass customized values into the fault handler from your RDO as well. So, if your handleList1Result(event) function fires, then it has data. Then you can check

RE: [flexcoders] how to wait for more than one httpserivice/remoteobject result to finish?

2009-08-21 Thread Scott
Tim makes a great point... Events are great for tracking things, but you also have to be careful not to have too many events waiting in your program. I have seen cases where there are so many events waiting in a program that weird things happen with them like the handler not getting the messag

[flexcoders] Largest DataGrid

2009-08-30 Thread Scott
What's the largest DataGrid you have populated with data? And speed and/or memory issues with really large ones? Thanks Scott

RE: [flexcoders] How to know that an application has "createdCompleted" ?

2009-08-31 Thread Scott
I would either add it into the component's creationcomplete (not the main components creationcomplete) or create a custom event to fire... sj From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of elextraana Sent: Monday, August 3

[flexcoders] CSV file: Coldfusion to Flex/Air

2009-08-31 Thread Scott
Has anyone created a dynamic query to csv through Coldfusion and been able to receive it through Flex or Air? When I was doing straight Coldfusion code I could create a CSV file on the fly without dumping it on the webserver first. I can't see anyway to pass that back through to Air, does anyo

[flexcoders] creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
data connection hasn't been built yet. Falling short of creating a custom event, is there a way to fire off the init() function when the component is enabled instead of when it's creationComplete? Thanks Scott

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
lexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Tuesday, September 01, 2009 11:01 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] creationcomplete firing when a component is disabled I've got a troubling issue... On my main page I have

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Tuesday, September 01, 2009 11:01 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] RE: creationcomplete firing when a component is disabled Makes sense, but I tried that already... http://w

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
on where you do: buttonClick(..) { myCanvas.enabled = true ; //Here is the place to put init() } On Tue, Sep 1, 2009 at 9:01 PM, Scott mailto:h...@netprof.us> > wrote: Makes sense, but I tried that already... http://www.adobe.com/2006/mxml <http://www.adobe.com/2006/mxml>

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
Changed", init); Alex Harui Flex SDK Developer Adobe Systems Inc. <http://www.adobe.com/> Blog: http://blogs.adobe.com/aharui <http://blogs.adobe.com/aharui> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Tuesday,

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
e in the app I would do: GlobalVars.instance.addEventListener("bLoggedInChanged", init); Alex Harui Flex SDK Developer Adobe Systems Inc. <http://www.adobe.com/> Blog: http://blogs.adobe.com/aharui <http://blogs.adobe.com/aharui> From: flexcoders@yahoogroups.com [

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
m] On Behalf Of Scott Sent: Tuesday, September 01, 2009 3:50 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] RE: creationcomplete firing when a component is disabled I've been playing around with this... I added in the line GlobalVars.instance.addEventListener("

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
Yeah, that got me next... I had to add in the event into the init(evt::Event):void. With all the work, I've got the same issue... It's trying to initialize the remoteobject before it has the required information provided after the login. From: flexcoder

RE: [flexcoders] RE: creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
[Bindable] and my problem went away. It was then I realized that the remote object with the endpoint variable was initialized in a non-configured state. GRR. Thanks for your help anyway, Alex. I learned something new about overloading variables in flex which I'm sure will com

[flexcoders] Flex/PHP securing functions

2010-01-25 Thread Scott
27;m assuming that session information is not available in PHP (as it isn't in coldfusion as well). Thanks Scott

[flexcoders] Re: Flex/PHP securing functions

2010-01-26 Thread Scott
That is what I was looking for. Thanks! Regards, Scott From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of seanmcmonahan Sent: Tuesday, January 26, 2010 1:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex

[flexcoders] Flash builder 4 List control (remove items)

2010-01-31 Thread Scott
I'm using Flash Builder 4 with PHP. I've used lists before with no issue but I can't seem to find the removeItem() anywhere. Does anyone know if they changed the function for removing an item out of a list? Thanks. sj

RE: [flexcoders] Flash builder 4 List control (remove items)

2010-02-01 Thread Scott
AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flash builder 4 List control (remove items) The List's dataprovider is an IList or ICollectionView. Ilist has a removeItem. On 2/2/10 3:56 PM, "Scott" wrote:

[flexcoders] FB4 -> PHP object call

2010-02-08 Thread Scott
I've got to be missing something simple here... I've spent hours trying to figure out why my "lastresult" is not getting set my remote call. I define an object to fill in the input variables: private var objSearchControl:Tblbrowserrecord = new Tblbrowserrecord(); Then I make the call t

[flexcoders] flash builder 4 and Zend framework

2010-03-08 Thread Scott
I've built an application in Flash Builder 4 and am working on the final piece; the security. Not knowing much of anything about the zend framework, I've done a few searches on the Internet looking for examples on how to use zend_auth and zend_acl. All of the examples I found are written fo

RE: [flexcoders] flash builder 4 and Zend framework

2010-03-08 Thread Scott
...@yahoogroups.com] On Behalf Of Scott Sent: Monday, March 08, 2010 4:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] flash builder 4 and Zend framework I've built an application in Flash Builder 4 and am working on the final piece; the security. Not knowing much of anything

[flexcoders] Flash Builder super-class regeneration

2010-03-26 Thread Scott
Does anyone know what triggers the super-class regeneration to pick up new variables? I generated a php class from Flash Builder then modified the code and removed functions that I didn't want. I then discovered that I needed an additional DB field in my MySQL table so I added the DB field and

[flexcoders] Dataprovider and events

2010-03-29 Thread Scott
I know I've ran into this before but for some reason my memory isn't kicking in. I've got a listbox that depends on a combobox to load before it fires its dataprovider. Without having the combobox loaded, the data provider for the listbox is null and it throws an error: #1009: Cannot access a pro

RE: [flexcoders] Dataprovider and events

2010-03-29 Thread Scott
xcoders] Dataprovider and events Post the entire stacktrace so we can see why it throws. On 3/29/10 11:33 AM, "Scott" wrote: I know I've ran into this before but for some reason my memory isn't kicking

RE: [flexcoders] Re: Dataprovider and events

2010-03-29 Thread Scott
oting, you can wait for the resultevent to fire and then populate the listbox. Also, you could populate the dataprovider with dummy blank data so it's not null and then update it when the data arrives. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Scot

[flexcoders] Purplexing error

2010-03-29 Thread Scott
I'm getting a weird error when updating a mysql table through PHP. I've tested the function using PHP and it works perfect. I've also made sure the variables match the object. When I fill in my textbox and click submit, I get this error: ArgumentError: updateItem called with an item wh

RE: [flexcoders] Dataprovider and events

2010-03-29 Thread Scott
Subject: Re: [flexcoders] Dataprovider and events Instead of using creationComplete, you might want to wait until you get a resultEvent from the server. On 3/29/10 1:12 PM, "Scott" wrote: It's throw

RE: [flexcoders] Purplexing error

2010-03-29 Thread Scott
did to fix it was to create a whole new update function and the error went away. sj From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Monday, March 29, 2010 6:04 PM To: flexcoders@yahoogroups.com Subject: [flexcode

RE: [flexcoders] Purplexing error

2010-03-30 Thread Scott
y hope the beta version is the issue... sj From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Ryan Stewart Sent: Monday, March 29, 2010 10:19 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Purplexing error Hey

RE: [flexcoders] Google map mashup

2010-04-01 Thread Scott
You could use the get html to a place like: http://www.geobytes.com/ipLocator.htm You'll never be extremely accurate with the location though. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Christophe Sent: Thursday, April

RE: [flexcoders] Display mySql Table in Flex

2010-04-01 Thread Scott
That's a pretty broad question... To learn this better, I'd upgrade to Flash Builder 4 and use the builtin code generator to see examples of how this is created. This code generator creates the php classes to create, update, and delete records in mysql. However, this is all using the Zend fra

[flexcoders] SWC's vs. source

2010-04-14 Thread Scott
, but I'm not necessarily looking for what's easier. I want what's most efficient. Thanks Scott

RE: [flexcoders] SWC's vs. source

2010-04-14 Thread Scott
What about file size? Does it link the whole SWC into the final product? Scott From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Oleg Sivokon Sent: Wednesday, April 14, 2010 1:04 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Re: SWC's vs. source

2010-04-14 Thread Scott
log/index.cfm/2009/6/25/How-does-SWC-size-affe t-SWF-size> I suspect--but never verified--that this is due to static classes or classes w/ static methods. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Scott" wrote: > > What about file siz

[flexcoders] Flash builder skins

2010-05-19 Thread Scott
Does anyone have a unique skin for Flash builder 4 available for download? Or know of a site that has Flash Builder 4 skins for download? Thanks much.

[flexcoders] Get URL that user typed in

2010-05-27 Thread Scott
ant do something a little more dynamic. If I have multiple URLS pointing to my server I'd like to know what the original URL was to provide the correct content. Thanks! Scott

[flexcoders] Button in dataGrid (Flashbuilder 4)

2010-06-06 Thread Scott
er place a text label "PAID" or a button if the item has not been paid. Any ideas on how this is done? Thanks Scott

[flexcoders] FB4 CF data wizard bugs?

2010-06-13 Thread Scott
I've been using the FB4 data wizards to make the initial connections to my CF functions then modify them to do exactly what I want them to. (saves a heck of a lot of time!) I've been noticing that frequently the data wizard detects my DB fields wrong. My private keys for instance are almost al

RE: [flexcoders] FB4 CF data wizard bugs?

2010-06-13 Thread Scott
flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Sunday, June 13, 2010 10:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] FB4 CF data wizard bugs? I've been using the FB4 data wizards to make the initial connections to my CF functions then modify them to do exactly what I

RE: [flexcoders] FB4 CF data wizard bugs?

2010-06-13 Thread Scott
m going to go through all of this once again. Anyway... A bug. Anyone have any thoughts on who could be the culprit? sj From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Sunday, June 13, 2010 1:05 PM To: f

RE: [flexcoders] FB4 CF data wizard bugs?

2010-06-14 Thread Scott
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Sunday, June 13, 2010 2:46 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] FB4 CF data wizard bugs? Ok, I found the issue and it's more than likely a bug. But I

[flexcoders] Crazy... Why does FB4 prevent me from deleting a record?

2010-06-14 Thread Scott
Ok, I just tried to link a delete function for the first time in FB4 and came across a weird error... The following line causes the error: "Attempt to use managed delete method with an item that is not managed on this client" deletetbllogResult.token = tbllogService.deletetbllog(dgLogBrowser.se

[flexcoders] ConflictDetector... Why?

2010-06-16 Thread Scott
I've been arguing with the FB4 / CF9 conflict detector the past couple of days and it's become very apparent that I'm misunderstand something. I have a datagrid component that is populated from a CF9/MySQL datasource. I set the datagrid to editable and created the associated functions to updat

RE: [flexcoders] ConflictDetector... Why?

2010-06-16 Thread Scott
oders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Wednesday, June 16, 2010 8:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ConflictDetector... Why? I've been arguing with the FB4 / CF9 conflict detector the past couple of days and it

[flexcoders] datagrid refresh

2010-06-16 Thread Scott
When I use CF9 as the datasource; I'm missing the option to refresh the dataProvider. Eg. getAllRecords_paged.lastResult.Refresh() is missing. Does anyone know how I can refresh the datagrid? Thanks. sj

RE: [flexcoders] datagrid refresh

2010-06-17 Thread Scott
__ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Thursday, June 17, 2010 2:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] datagrid refresh When I use CF9 as the datasource; I'm missing the option to refresh

RE: [flexcoders] How much does FXG affect performance?

2010-06-18 Thread Scott
Sorry, OT, but I just had to... LMAO! From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gregor Kiddie Sent: Friday, June 18, 2010 4:45 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] How much does FXG affect perfo

[flexcoders] Interesting paradox with data service call

2010-06-18 Thread Scott
I modified the call for my data_paged function to allow for the userID. I then refreshed the data service call and it picked up the new user. I did the same for the count() service call. Now, if I put in the userID I get an error: Description Resource Path Location

RE: [flexcoders] Interesting paradox with data service call

2010-06-18 Thread Scott
...@yahoogroups.com] On Behalf Of Scott Sent: Friday, June 18, 2010 5:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Interesting paradox with data service call I modified the call for my data_paged function to allow for the userID. I then refreshed the data service call and it picked up the new

RE: [flexcoders] Flex 4 datagrid paging AND filtering

2010-06-20 Thread Scott
You need to modify the PHP function to do the filtering then modify the FB4 code to work with the function. Out of the box, FB4 does not provide that functionality. It sounds like you did the auto-generated php wizard. If you did that, you'll need to remove the service from the datagrid and d

RE: [flexcoders] Flex 4 datagrid paging AND filtering

2010-06-20 Thread Scott
BTW, when you delete the service I mean delete the AS files associated with the service... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Sunday, June 20, 2010 3:03 PM To: flexcoders@yahoogroups.com Subject: RE

[flexcoders] AS3 nested groups

2010-06-21 Thread Scott
I'm trying to draw a calendar grid using HGroup and VGroup If I do the follow it draws 7 boxes: for (var nDay:int = 0; nDay < 7; nDay++) { var bcBox:BorderContainer = new BorderContainer(); var lblCalText:Label = new Label(); var vgWeek:VGroup = new VGroup();

[flexcoders] Accessing an object within an array

2010-06-26 Thread Scott
ad the same issue. There were no complex statements when I ran that test. Any ideas on what I'm experiencing? Thanks. Scott - day.mxml sample: public function setNumber( nNumber:number ):void { _nNumber = nNumber; }

RE: [flexcoders] Accessing an object within an array

2010-06-26 Thread Scott
Of Scott Sent: Saturday, June 26, 2010 7:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Accessing an object within an array I've got an mxml component that I've created. Below is a simple code sample of what I'm experiencing... Basically I've got a compone

[flexcoders] line returns in a tooltip field

2010-06-26 Thread Scott
I'm scratching my head on this one... Can't be any more simple than it is... http://livedocs.adobe.com/flex/3/html/help.html?content=tooltips_3.html I'm trying to set/format the toolTip on a dataGrid so that there's multiple lines in the toolTip. On the dataGrid I have toolTip="This is

[flexcoders] Working with date/Time in FB

2010-06-27 Thread Scott
There's something I'm not completely understanding yet. I've coded around it but I'm not feeling comfortable with my solution. My FB4 app links up with CF9 and I'm working with dates and times. When I pull up a date from CF9 into a FB4 datagrid the time shows off by one hour. Eg. 2010

RE: [flexcoders] Send SMS

2010-06-27 Thread Scott
That's a serverside issue... I use the builtin SMS features of Coldfusion to perform this task. sj From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Christophe Sent: Sunday, June 27, 2010 3:20 AM To: flexcoders@yahoogroups.c

RE: [flexcoders] Working with date/Time in FB

2010-06-27 Thread Scott
tting? -Original Message- From: Scott Sent: 06-27-2010 19:19:40 Subject: [flexcoders] Working with date/Time in FB There's something I'm not completely understanding yet. I've coded around it but I'm not feeling comfortable with my solution. My FB4 app links up with CF9 and I

RE: [flexcoders] Working with date/Time in FB

2010-06-27 Thread Scott
thing is very interesting, cant you help you in this case, again debug the code and take a look of the network monitor Of FB. -Original Message- From: Scott Sent: 06-28-2010 03:27:00 Subject: RE: [flexcoders] Working with date/Time in FB I just verified both server and client are at th

RE: [flexcoders] Working with date/Time in FB

2010-06-27 Thread Scott
flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Sunday, June 27, 2010 4:27 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Working with date/Time in FB I just verified both server and client are at the same time and same timezone. I wasn't doing anything special with t

RE: [flexcoders] Working with date/Time in FB

2010-06-28 Thread Scott
I am using remoteobject. The following code returns the same timezone information as my workstation is in. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Paul Hastings Sent: Sunday, June 27, 2010 10:59 PM To: flexcoders@ya

RE: [flexcoders] Melbourne Flex User Group Thursday

2010-06-28 Thread Scott
I've always wanted to go to Australia! =) From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Dale Fraser Sent: Sunday, June 27, 2010 11:44 PM To: cfaus...@googlegroups.com; flexaus...@googlegroups.com; flexcoders@yahoogroups.com S

RE: [flexcoders] Working with date/Time in FB

2010-06-29 Thread Scott
oders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Monday, June 28, 2010 6:41 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Working with date/Time in FB I am using remoteobject. The following code returns the same timezone information as my workstati

[flexcoders] datagrid column sorting

2010-07-01 Thread Scott
Take this scenario: . [Bindable] public var acAppts:ArrayCollection = new ArrayCollection(); private function sortDate(itemA:Object, itemB:Object):int { return ObjectUtil.dateCompare( itemA.dtCreated,itemB.dtCreated); } ...

RE: [flexcoders] Re: datagrid column sorting

2010-07-01 Thread Scott
new sort and refresh. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Scott" wrote: > > Take this scenario: > > > > . > > > > [Bindable] public var acAppts:ArrayCollection = new ArrayCollection(); > >

RE: [flexcoders] how to filter our a column in datagrid?

2010-07-01 Thread Scott
You could set the column width to 0... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of coder3 Sent: Thursday, July 01, 2010 1:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to filter our a column in datagrid?

[flexcoders] datagrid itemrenderer breaks custom tooltip

2010-07-02 Thread Scott
I have a normal dataGrid that I created a rollover event to display a custom tooltip on each box. When I added in an itemRenderer this functionality was broken. I'm assuming it's because the itemRenderer is overriding the rollover event? Is that true? The itemRenderer does work ok, it change

RE: [flexcoders] Custom Tree Renderer for ADG in Flex 4

2010-07-02 Thread Scott
I was just* reading about this while researching another issue I was having... http://help.adobe.com/en_US/flex/using/WS03d33b8076db57b9-1c32bcb9124dea dc3e9-8000.html From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of mreg

RE: [flexcoders] send email from flex

2010-07-05 Thread Scott
You will definitely need a SMTP server to send the emails from. Without a properly setup SMTP server, emails will be dropped as spam... So you'll need a server side like Coldfusion or PHP to do that work. You can then submit the email to be sent from FB to the server who will forward it for you.

RE: [flexcoders] Input formatter?

2010-07-06 Thread Scott
Yes, you can use formatters... http://livedocs.adobe.com/flex/3/html/help.html?content=formatters_2.htm l Bind the component to the variable. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Nick Middleweek Sent: Tuesday, July

RE: [flexcoders] Input formatter?

2010-07-06 Thread Scott
: Re: [flexcoders] Input formatter? Hi scott, Thanks for the link, this only seems to format the 'string' when I focus out the field... What I'd like is on every key press, the entry field validates the character at each position... So taking this as an entry format... DD/M

[flexcoders] Regenerating service calls

2010-07-09 Thread Scott
service call. Is anyone aware of a quicker/easier way than this? Thanks Scott

RE: [flexcoders] How to print full content of TextArea component ?

2010-07-09 Thread Scott
I don't know the resolution but I can see why this is happening. The sprite capture will just capture the screen area and what was within the rectangle during the snapshot. It doesn't care or know what components are under the sprite rectangle. This guy talks about the issue a bit: http://

RE: [flexcoders] Getting Started with AMFPHP and PureMVC

2010-07-10 Thread Scott
I've done a couple of projects with this. Post your questions, I'll see if I (or someone else on here) can answer them. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jeremy Mitchell Sent: Friday, July 09, 2010 11:03 AM To: f

RE: [flexcoders] DateTimeAxis - day + hour:minute

2010-07-10 Thread Scott
You need to use a dateformatter. I haven't done this before but it's probably just like the other components that I've done similar things with. Check out the viewer comments on this page; it may help you. http://blog.sunild.com/2008/05/creating-line-charts-in-flex-3_12.html sj __

[flexcoders] Child of a child custom event handler

2010-07-12 Thread Scott
I've got a parent component that contains a child panel that contains a popup window. When the user enters the information and submits, I want to notify the top parent that a change has been made to refresh the other components. grandparent->Panel->PopupWindow In the popup window compon

RE: [flexcoders] Re: Child of a child custom event handler

2010-07-12 Thread Scott
. When that event fires, you would then inject it into your component. --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> , "Scott" wrote: > > > > I've got a parent component that contains a child panel that contains a > popup window. When

RE: [flexcoders] Re: Child of a child custom event handler

2010-07-12 Thread Scott
m] On Behalf Of Scott Sent: Monday, July 12, 2010 2:33 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Child of a child custom event handler That makes a lot of sense. But... How do I reference the popup at the top level? Is it PopUpmanager.POPUP or? Is there a way to lo

Re: [flexcoders] An open-source to Flex Data Services

2007-02-15 Thread Scotty Scott
pcosta -- Scotty Scott http://www.franciswscott.com

[flexcoders] editable combobox

2007-04-04 Thread Scotty Scott
: String So... should this be possible or should I create a component that has a dropdown attached to it that only updates the textinput on itemClick? I can provide more information if needed. Thanks for any help -- Scotty Scott http://www.franciswscott.com

Re: [flexcoders] editable combobox

2007-04-05 Thread Scotty Scott
, Alex Harui <[EMAIL PROTECTED]> wrote: I think that's been reported as a bug. Try setting the .text property to the correct value. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Scotty Scott *Sent:* Wednesday, April 04, 2

Re: [flexcoders] Re: string to actual actionscript code?

2008-06-16 Thread Scott Melby
(location == knownLocation) { ret = true; break; } } return ret; } Then call this method passing your image.location and your array of things that you want to check against (which you can now build dynamically). hth Scott mariovandeneynde wrote: ok, I just have

RE: [flexcoders] width via style/css

2008-06-25 Thread Shearer, Scott
quot; you want to set is found in the "styles" table, then it is a style item and you can use a style sheet, setStyle() etc. for setting the value of that style. Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mich

[flexcoders] flash player version picker in Firefox?

2008-07-12 Thread Scott Langeberg
Anyone remember an extension for firefox (I think) that lets you pick which of your installed flash players to use in the browser, on the fly? That thing was handy, when it worked... -- : : ) Scott Helping your grandma on the interweb at: http://blog.criticalpile.com

<    1   2   3   4   5   6   7   8   9   10   >