Re: [flexcoders] getting the sum of values in list datafield.

2014-08-29 Thread Scott Fanetti scott.fane...@gmail.com [flexcoders]
IMHO - you should create a separate bindable string and set the value to that instead of directly setting the .text property of a text field. Your reduce function seems ok - just run each object through the filter function to see if it returns true. Only objects that return true should be

Re: [flexcoders] Re: Future Scope of Flex

2014-08-18 Thread Scott Fanetti scott.fane...@gmail.com [flexcoders]
Wow - I really don't think this is the forum for character assassination. I've been a polyglot developer and architect for 20 years. One thing in technology is constant - that is change. Adapt. It is childish to cling to a technology like a fanboy. Dynamic languages use different

[flexcoders] Re: Future Scope of Flex

2014-08-16 Thread Scott Fanetti scott.fane...@gmail.com [flexcoders]
Technologies come and go. When I was a kid - the coolest thing in the world was the NextStep computer. It died but eventually reemerged as the Mac OS. Languages come and go as well. Flex and AS were great for a time - but the proprietary nature of the language killed it a few years ago. The

Re: [flexcoders] Re: Future Scope of Flex

2014-08-16 Thread Scott Fanetti scott.fane...@gmail.com [flexcoders]
I built the Rosetta Stone user interface in flex and the EA Pogo flex games interface and online store were also built by me. I was using flash when it was the Futuresplash player. I was a very early adopter. Adobe F'd it in the A by mismanaging the technology that WAS really great. But -

Re: [flexcoders] Problems creating/updating DB record with selection from DropDownList

2012-02-05 Thread Scott Fanetti
It looks like you are setting the status on the change in the drop down list but not casting it. Is that your issue? The change handler does not seem attached - what is triggering it? When you debug it - what are the contents of the drop down list data provider? Sent from my iPhone On Feb

Re: [flexcoders] You are the product

2011-12-17 Thread Scott Fanetti
delivery - the ONLY one that delivers on all devices. Guy On 17/12/2011, at 8:36 AM, Scott Fanetti wrote: Except for the fact that HTML 5 apps look like shit compared to flash, the run like shit, they can be freely stolen by anyone - and generally they rely on lots of browser

Re: [flexcoders] You are the product

2011-12-16 Thread Scott Fanetti
Except for the fact that HTML 5 apps look like shit compared to flash, the run like shit, they can be freely stolen by anyone - and generally they rely on lots of browser and CSS hacks to be pseudo consistent. Html5 really sucks - its just a shame the world has decided Flash must no longer be

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

2011-12-15 Thread Scott Fanetti
The textfield has change events - you can use that to get the new value - then recompute the sum. Pseudocode: script private function onChange( e:Event ):void { doSum(); } private function doSum():void { ... } /script s:/ texInput change=onChange(event)

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

2011-12-03 Thread Scott Fanetti
The way I would do this is to add a change event listener to the array collection - and in the listener I would iterate through the collection to sum the values. I would also create a value object to hold your data in a type safe fashion. You could then use data binding to get UI updates in

Re: [flexcoders] image is caching

2011-11-20 Thread Scott Fanetti
You should hash the images and use the hash as the name - that way image will not be cached if it changes. Or just change the name each time- append the date for instance. Sent from my iPhone On Nov 18, 2011, at 9:03 AM, Michael Sumner msum...@nationsbestsports.com wrote: Working on a home

[flexcoders] Re: Transitions - How to

2011-10-12 Thread Scott Fanetti
It's not clear from your example what's is going on. Is the textArea even created by the time the outer container changes state? Sent from my iPhone

[flexcoders] Re: problem with the sand box on air app

2011-10-08 Thread Scott Fanetti
Have you tried dispatching events from the remote file for doing things like managing the stage - and letting the swf in the local security domain ( app: iglesia.swf ) do the calls for scaleMode and such? Sent from my iPhone

[flexcoders] Re: problem with the sand box on air app

2011-10-08 Thread Scott Fanetti
Read: http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e3f.html It goes into detail about the security sandbox an application exists within. What exactly are you trying to do? Sent from my iPhone

[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

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 h...@... wrote: I've got a parent component that contains a child panel that contains a popup window. When the user enters the information

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:

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] Regenerating service calls

2010-07-09 Thread Scott
the 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:

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,

RE: [flexcoders] Input formatter?

2010-07-06 Thread Scott
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/MM/, or perhaps I should write

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

[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

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

[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); } ... mx:DataGrid x=0 y=20 width={CELLWIDTH}

RE: [flexcoders] Re: datagrid column sorting

2010-07-01 Thread Scott
@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Scott h...@... wrote: Take this scenario: . [Bindable] public var acAppts:ArrayCollection = new ArrayCollection(); private function sortDate(itemA:Object, itemB:Object):int { return ObjectUtil.dateCompare

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?

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

2010-06-29 Thread Scott
@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 workstation

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:

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

[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.

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:

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

2010-06-27 Thread Scott
formatting? -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'm working

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

2010-06-27 Thread Scott
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 the same time and same timezone. I

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

2010-06-27 Thread Scott
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 the object I was returning initially

[flexcoders] Accessing an object within an array

2010-06-26 Thread Scott
. Any ideas on what I'm experiencing? Thanks. Scott - day.mxml sample: public function setNumber( nNumber:number ):void { _nNumber = nNumber; } Parent component: month.mxml private var aryOfDays:array = new array

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 component creating an array

[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] 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();

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

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

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

[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

[flexcoders] datagrid refresh

2010-06-17 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
@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 the dataProvider. Eg

[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

RE: [flexcoders] ConflictDetector... Why?

2010-06-16 Thread Scott
better documentation on how the process works (or any documentation at all...) I would have at least realized that it's expecting to update only one field at a time. sj From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott

RE: [flexcoders] FB4 CF data wizard bugs?

2010-06-14 Thread Scott
[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'm not sure if it's a bug with FB4 or CF9 though... The issue

[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 =

[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

RE: [flexcoders] FB4 CF data wizard bugs?

2010-06-13 Thread Scott
there's an option for configure input type. If I select this it just shows my bad object; not the object contents. Is there a quick way around this issue? Thanks. sj From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott

RE: [flexcoders] FB4 CF data wizard bugs?

2010-06-13 Thread Scott
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: flexcoders@yahoogroups.com

[flexcoders] Button in dataGrid (Flashbuilder 4)

2010-06-06 Thread Scott
to mx.controls.listClasses.IListItemRenderer. Moreover; I'm trying to figure out how to either 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] Get URL that user typed in

2010-05-27 Thread Scott
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] 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] 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
/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 h...@... wrote: What about file size? Does it link the whole SWC

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,

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

RE: [flexcoders] Purplexing error

2010-03-30 Thread Scott
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 Scott

[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

RE: [flexcoders] Dataprovider and events

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

RE: [flexcoders] Re: Dataprovider and events

2010-03-29 Thread Scott
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 , Scott h...@... wrote: I know

[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

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 h...@netprof.us wrote: It's throwing because

RE: [flexcoders] Purplexing error

2010-03-29 Thread Scott
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: [flexcoders] Purplexing error

[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

[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

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 about

Re: [flexcoders] Re: Future Of Flex Developers?

2010-02-11 Thread Scott Langeberg
I'm developing Flex 3 apps in FlashBuilder 4 beta 2, right now - not too many probs On Thu, Feb 11, 2010 at 7:15 AM, GeorgeB grg_b...@yahoo.com wrote: Exactly Paul! I am now using Flex Builder3.x and will (when time comes) upgrade to whatever they call it. As I will have to. Obviously!

[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 to

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

2010-02-01 Thread Scott
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 h...@netprof.us wrote: I'm

[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

[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] Flex/PHP securing functions

2010-01-25 Thread Scott
is not available in PHP (as it isn't in coldfusion as well). Thanks Scott

Re: [flexcoders] click and doubleClick on the same button?

2009-09-01 Thread Beau Scott
, I'm having difficulty setting both a click and a doubleClick event on the same button. Is it possible? Thanks, Nick -- Beau D. Scott Software Engineer

Re: [flexcoders] Stopping double-click of a button 'bubble' to the datagrid row

2009-09-01 Thread Beau Scott
it and therefore stop the row event from being fired but ti didn't work. Now I think i need to capture the doubleClick cancel event in the button object and prevent it from bubbling from the button to the AvDG. Where do I set event.cancelable = true? Thanks, Nick -- Beau D. Scott Software

[flexcoders] creationcomplete firing when a component is disabled

2009-09-01 Thread Scott
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
...@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 a tabNavigator that has several different pages for my app

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

2009-09-01 Thread Scott
@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... mx:Canvas xmlns:mx=http

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

2009-09-01 Thread Scott
init when you 'manually' enable the canvas. Ie: you have a button where you do: buttonClick(..) { myCanvas.enabled = true ; //Here is the place to put init() } On Tue, Sep 1, 2009 at 9:01 PM, Scott h...@netprof.us mailto:h...@netprof.us wrote: Makes sense, but I tried

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

2009-09-01 Thread Scott
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, September 01, 2009 11:22 AM To: flexcoders@yahoogroups.com Subject

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

2009-09-01 Thread Scott
(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 [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Tuesday, September 01, 2009 11:22 AM

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

2009-09-01 Thread Scott
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(bLoggedInChanged), init

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:

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

2009-09-01 Thread Scott
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 come in handy later on. 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

Re: [flexcoders] Different Views | Same DataProvider

2009-08-31 Thread Beau Scott
of dataprovider for different views. Is there any other way. Actually my dataprovider has more than 25,000 records. Need your suggestions. Thanks ilikeflex -- Beau D. Scott Software Engineer

Re: [flexcoders] Manage a multi lingual application

2009-08-31 Thread Beau Scott
=l10n_2.html Beau On Mon, Aug 31, 2009 at 10:35 AM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, What is the best system to manage with Flex a multi-lingual application ? Do you have source examples ? Thank you, Christopher, -- Beau D. Scott Software

Re: [flexcoders] Store files on the customer PC

2009-08-31 Thread Beau Scott
you, Christopher, -- Beau D. Scott Software Engineer

[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

Re: [flexcoders] about FB3_WWEJ_Plugin.exe

2009-08-30 Thread Beau Scott
much. -- 好玩贺卡等你发,邮箱贺卡全新上线!http://cn.rd.yahoo.com/mail_cn/tagline/card/*http://card.mail.cn.yahoo.com/ -- Beau D. Scott Software Engineer

[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] Create a directory

2009-08-28 Thread Beau Scott
, Aug 28, 2009 at 8:01 AM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, How to create a directory (and see if it exists) on the server from a flex application ? Thank you, Christopher, -- Beau D. Scott Software Engineer

Re: [flexcoders] DatagridColumn dataField question

2009-08-28 Thread Beau Scott
this work is use a labelFunction eg mx:DataGridColumn dataField=array1[1] labelFunction=something/ Just wondered if there was any other way? TIA Bod -- Beau D. Scott Software Engineer

Re: [Spam] Re: [flexcoders] Creating a flex library project that referencesa remote SVN path?

2009-08-28 Thread Beau Scott
://www.theflexshow.comhttp://www.jeffryhouser.com -- Part of the DotComIt Brain Trust -- Beau D. Scott Software Engineer

[flexcoders] Access system color/style scheme from AIR app?

2009-08-28 Thread Beau Scott
Anyone know if this is yet possible in AIR? Beau

Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Beau Scott
objects being set / modified prior to the alert being called. Inputs highly appreciated. Thanks. -- Beau D. Scott Software Engineer

  1   2   3   4   5   6   7   8   9   10   >