Re: [flexcoders] How is a checkbox check, but not check

2008-04-05 Thread Scott
I think you should just post that link from now on :) Scott Sent from my iPhone On Apr 5, 2008, at 6:33 PM, Doug McCune [EMAIL PROTECTED] wrote: Hey Tracy, you ever realize that you're posted 150 messages on flexcoders about itemRenderers? http://tech.groups.yahoo.com/group/flexcoders

[flexcoders] Calling a function in an inner pd

2008-04-29 Thread Scott
to be? Or, is there a better way to accomplish the same thing (keeping the pod as independent as possible)? Thanks in advance. Scott

[flexcoders] Re: Calling a function in an inner pd

2008-04-30 Thread Scott
Thanks for the reply. I think I'm going to set bindable properties inside the other pod and automatically update the info that way. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: You can certainly do this with a direct call, but you will be better served to use an

RE: [flexcoders] The High Score Problem

2008-05-27 Thread Scott
I've ben struggling with this as well. The issue is not with Flex; you'll have this with any client server application. You even have a bigger issue than what you are outlining... The components you have to expose on the server can be directly accessed by a skilled programmer without using

RE: {Disarmed} [flexcoders] Re: code still appearing even after deletion

2008-05-27 Thread Scott
there is probably another way to do this also. IE, I just configure the options directly. - Todd --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Scott [EMAIL PROTECTED] wrote: I have a weird problem... I have some layout code that I created a while back that I wanted to merge

[flexcoders] Refresh issues

2008-07-09 Thread Scott
Ok, it kind of makes sense that I lose where I am at in my flex application if I hit F5, but I'd like to find a way around it... I'm starting on my first CF/Flex3 application. My first task that I just completed is the login routine which works beautifully using CFLogin. If I hit F5 (or

[flexcoders] States

2008-07-11 Thread Scott
Can states be managed independently in components? In other words, can I have unique and active states in each of my components or can I only have one state for the whole application? Thanks!

[flexcoders] Calling AS3 functions

2008-07-11 Thread Scott
I'm working on a logon class in Flex 3. I've got a login.mxml which controls the overall views (logon/register/logout) all in the same box depending on what state the user is in. In the loginForm.mxml (included in the logon.mxml), I've got a function called protected returnName():String

Re: [flexcoders] Calling AS3 functions

2008-07-11 Thread Scott
I'm still getting the same error... The class exists in the loginForm.mxml but the mxml code exists in the login.mxml file. Is there something special I have to do to use the functions that exist in the other mxml file? Better yet, is there a way to access variables other than setting

RE: {Disarmed} RE: [flexcoders] Calling AS3 functions

2008-07-12 Thread Scott
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Friday, July 11, 2008 8:30 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Calling AS3 functions I'm still getting the same error... The class exists

RE: [flexcoders] Calling AS3 functions

2008-07-13 Thread Scott
THANK YOU! I just want to be able to pull the username of the person that is currently logged in. I didn't have the id=name in the definition and that fixed all of it. Regards, Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

[flexcoders] AS3 function returning true when it only can be false

2008-07-14 Thread Scott
This is weird... I'm linking to a coldfusion component I'm creating. For the sake of playing around a bit, I created the variable rc The following AS3 function queries the CF server to see if the user is logged in or not; returns true for yes, false for no public

RE: [flexcoders] AS3 function returning true when it only can be false

2008-07-14 Thread Scott
: [flexcoders] AS3 function returning true when it only can be false It appears to me, that your Coldfusion script returns a string instead of a boolean. Every string with a length 0 evaluates to true in a boolean expression. Cheers Ralf. On Mon, Jul 14, 2008 at 4:05 PM, Scott [EMAIL PROTECTED] wrote

[flexcoders] Re: AS3 function returning true when it only can be false

2008-07-14 Thread Scott
and is well worth the cost. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Scott [EMAIL PROTECTED] wrote: Actually it does return a Boolean cffunction name=userStatus access=remote returntype=boolean -Original Message- From: flexcoders@yahoogroups.com

Re: [flexcoders] AS3 function returning true when it only can be false

2008-07-14 Thread Scott
] AS3 function returning true when it only can be false Try trace( getQualifiedClassname( rc )) in your userStatus method to make sure. You can see the output if you run in debug mode. Cheers Ralf. On Mon, Jul 14, 2008 at 4:16 PM, Scott [EMAIL PROTECTED] mailto:halo%40netprof.us wrote

RE: [flexcoders] Re: AS3 function returning true when it only can be false

2008-07-14 Thread Scott
clarity about what is going on. Good luck, Ralf. On Mon, Jul 14, 2008 at 5:52 PM, Scott [EMAIL PROTECTED] wrote: I do have another function that returns bool and it does work ok... And for sake of argument I changed the true and false to 0 and 1 and had the same effect. I just noticed

RE: [flexcoders] Re: AS3 function returning true when it only can be false

2008-07-14 Thread Scott
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Monday, July 14, 2008 12:07 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: AS3 function returning true when it only can be false Coldfusion is just the webservice

RE: [flexcoders] Re: AS3 function returning true when it only can be false

2008-07-14 Thread Scott
in the result object. Modify as needed .. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Monday, July 14, 2008 1:26 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: AS3 function returning true when it only

[flexcoders] Accessing information in a class

2008-07-15 Thread Scott
that variable scope dissapears when it leaves the class. If I create a link in two different classes to the same class (say login), are they accessing the same class or are they each accessing their own copy of the class? TIA Scott

RE: {Disarmed} RE: [flexcoders] Accessing information in a class

2008-07-15 Thread Scott
Ah! so that's like a global variable(s) then. That's perfect and fits 100%. Thanks SO much! Scott From: flexcoders@yahoogroups.com on behalf of Tracy Spratt Sent: Tue 7/15/2008 12:18 PM To: flexcoders@yahoogroups.com Subject: {Disarmed} RE: [flexcoders

RE: [flexcoders] Accessing public function from a different mxml

2008-07-15 Thread Scott
I'm working on the same issue right now and have been for a few days now. In all my different iterations of code I believe what Tracy is saying is probably the best way to go. She also said basically the same thing to me. Either set up an Application.application or a data model (which is

RE: {Disarmed} RE: [flexcoders] Accessing public function from a different mxml

2008-07-15 Thread Scott
DOH! Sorry about that... assumptions can get you every time! Thanks, I just pulled that up in livedocs; I'll read more about it now. Regards, Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday

[flexcoders] What is the underscore '_'

2008-07-16 Thread Scott
... being used for in flex code? I see example code out there that has variables like _myVar = myVar, what is this doing? TIA!

[flexcoders] Anyone have a good resource on singletons?

2008-07-16 Thread Scott
I'm trying to find information on using singletons in AS3/Flex. I've got an .AS file set up but I'm having issues calling the data/functions within that function in other classes. Does anyone have a good resource on the web for creating and using singletons? Thanks!

[flexcoders] Flex debugger issues

2008-07-16 Thread Scott
Anyone else having issues running the Flex debugger? After the application crashing a few times I my code no longer is getting updated. A telltale sign is if I hit the project-clean I get an error that the project.swf file cannot be deleted. I can exit flex builder and try to delete the

[flexcoders] arrayCollection event COLLECTION_CHANGE issues?

2008-07-17 Thread Scott
First thanks for all your help guys. I'm making nice strides learning this language quickly. I'm working with events now. I created an arrayCollection to capture a query from coldfusion. I have the data being dumped into this variable just fine (I can do a combobox on it and see all of it).

Re: [flexcoders] arrayCollection event COLLECTION_CHANGE issues?

2008-07-17 Thread Scott
; GlobalVars.instance.acUser.refresh(); In that you're swapping out the underlying Array the collection is wrapped around, and then calling refresh will dispatch teh COLLECTION_CHANGE, firing any bindings and calling your listener code. On Thu, Jul 17, 2008 at 8:43 AM, Scott [EMAIL PROTECTED] mailto:[EMAIL

Re: [flexcoders] arrayCollection event COLLECTION_CHANGE issues?

2008-07-17 Thread Scott
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Thursday, July 17, 2008 5:24 PM To: flexcoders@yahoogroups.com Subject: {Disarmed} Re: [flexcoders] arrayCollection event COLLECTION_CHANGE issues? When I do that I get an error that the property is not defined. I can do

[flexcoders] Variable Typecasting

2008-07-17 Thread Scott
I'm trying to pull a variable from an arrayCollection which I know is type String. Here's the code: public var strEMail:String; ... Private function ... { strEMail = GlobalVars.instance.acUser.getItemAt(0); } That above line of course throws an error

Re: [flexcoders] Variable Typecasting

2008-07-18 Thread Scott
/17/08, Scott [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: I'm trying to pull a variable from an arrayCollection which I know is type String. Here's the code: public var strEMail:String; ... Private function ... { strEMail

RE: {Disarmed} Re: [flexcoders] Variable Typecasting

2008-07-18 Thread Scott
know about strEMail. Perhaps that's a bug...? -sj From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Friday, July 18, 2008 8:12 AM To: flexcoders@yahoogroups.com Subject: {Disarmed} Re: [flexcoders] Variable Typecasting

[flexcoders] display code won't work outside of the mx:State and mx:AddChild

2008-07-21 Thread Scott
I'm not sure why this is not working but I can't seem to get it to work correctly... I've got the following code: mx:State name=Startup mx:AddChild position=lastChild mx:Image x=31 y=30 source=images/FT.gif/ (this one displays the

[flexcoders] mxml components

2008-07-25 Thread Scott
Ok, I'm trying to get a firm grasp on AS3 components/classes. I'm trying to figure out how to structure code so I can optimize code re-use. What is the life of a component/class in a flex application? In other words... If I have a main.mxml that calls another class like logins.mxml,

[flexcoders] timed events

2008-07-25 Thread Scott
Is there a way to launch an event based on time? What I'd like to do is flash a button every 10 seconds to draw attention to it. Is this possible in any other way other than using a flash movie? TIA

[flexcoders] CF remote object return struct and singletons

2008-07-27 Thread Scott
I was returning type query from my remote object but needed to add in some other processed data along with the query so I changed the type to struct. I am processing the data into a singleton class to track the user's login. Previously I had the following line to set the data in the singleton:

RE:[flexcoders] Re: Passing parameter to component

2008-07-27 Thread Scott
Nevermind, I misread your question. Sorry. Try mx:Label text={strProjectName.text} / From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cathal Sent: Sunday, July 27, 2008 7:01 AM To: flexcoders@yahoogroups.com Subject: {Disarmed}

RE:[flexcoders] Re: Passing parameter to component

2008-07-27 Thread Scott
It doesn't look like you're including the component... The component in your function needs to be defined something like: mx:Script ![CDATA[ Import com.myapp.mycomponent; From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] Value of AS variable dissapearing

2008-07-27 Thread Scott
I've got a weird issue that I'm trying to track down... It's all part of the life of a class instance that I posted before (I've got an update on that one coming soon). In my user registration validation class, I check to see if the email address already exists in the DB. I created a CFC

RE:[flexcoders] Value of AS variable dissapearing

2008-07-27 Thread Scott
instance it changes back to false. Any ideas out there? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Sunday, July 27, 2008 4:15 PM To: flexcoders@yahoogroups.com Subject: {Disarmed} [flexcoders] Value of AS variable

RE: [flexcoders] Value of AS variable dissapearing

2008-07-28 Thread Scott
method. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Sunday, July 27, 2008 9:36 PM To: flexcoders@yahoogroups.com Subject: RE:[flexcoders] Value of AS variable dissapearing Ok, I'm really not fully understanding what

[flexcoders] on the fly form validation

2008-07-28 Thread Scott
In thinking about forms and flex events, how hard is it to validate a form as a user tabs through it? Without creating a ton of event handlers, is there an easy way to accomplish this?

RE: [flexcoders] mxml components

2008-07-28 Thread Scott
references to it are removed, and Garbage Collection has run and removed it. If this is not the answer, perhaps you can rephrase your question, without using the word call? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent

Re: [flexcoders] on the fly form validation

2008-07-28 Thread Scott
Perfect! Thanks to both of the responses. Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Gravener Sent: Monday, July 28, 2008 9:12 AM To: flexcoders@yahoogroups.com Subject: {Disarmed} Re: [flexcoders] on the fly form

RE: {Disarmed} [flexcoders] RemoteObject madness

2008-07-28 Thread Scott
What is your backend? - - what are you connecting to? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [p e r c e p t i c o n] Sent: Monday, July 28, 2008 4:43 PM To: flexcoders@yahoogroups.com Subject: {Disarmed} [flexcoders]

RE: {Disarmed} RE: [flexcoders] mxml components

2008-07-29 Thread Scott
like you're misinterpreting it. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Saturday, July 26, 2008 4:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] mxml components I

RE: [flexcoders] mxml components

2008-07-29 Thread Scott
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Saturday, July 26, 2008 4:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] mxml components I was afraid of that... Ok, let's see if I can do it better. I

RE: [flexcoders] mxml components

2008-07-29 Thread Scott
The import class; is what creates the instance? So in other words, if I use the import thisfile.mxml in each of my other files, each one is creating another instance of the thisfile.mxml? From: flexcoders@yahoogroups.com on behalf of Michael VanDaniker Sent:

RE:[flexcoders] AIR Initial WIndow Position Problem

2008-07-30 Thread Scott
I assume you have uncommented them in your application? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of todd_geist Sent: Monday, July 28, 2008 2:30 AM To: flexcoders@yahoogroups.com Subject: {Disarmed} [flexcoders] AIR Initial WIndow

[flexcoders] cookies and getremote

2008-08-03 Thread Scott
Does anyone know if getRemote() works with CF8? I'm looking for a good Flex/Cookie discussion blog somewhere if anyone knows of one... Also, are Flex cookies subject to the security settings in IE like HTML cookies? Thanks Scott

[flexcoders] SWF/Flex security

2008-08-03 Thread Scott
and protecting my code from prying eyes? Regards, Scott

Re: [flexcoders] SWF/Flex security

2008-08-03 Thread Scott
Is there going to be an archived webcast afterwards? I'd love to go to that but unfortunately; August is the busiest time of the year for me and my clients. Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Westberg

Re: [flexcoders] Remoting fails

2008-08-06 Thread Scott
I write .cfm files to test my code to ensure its working. Perhaps writing a quick .cfm to validate you can hit the coldfusion server would help...? That way you have better error reporting from the remote components and can dump variables easily as well. Regards, Scott

[flexcoders] CRC

2008-08-06 Thread Scott
Does anyone know of a way to collect a CRC from a flex or air application file? I would like to verify that they are running the most current version and the code I wrote as they hit my remote components. Thanks Scott

Re: [flexcoders] Remoting fails

2008-08-06 Thread Scott
I just thought of something else... Did you check the services-config.xml to ensure outside access? Regards, Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Wednesday, August 06, 2008 9:43 AM To: flexcoders

Re: [flexcoders] CRC

2008-08-06 Thread Scott
that with the server's version. If they don't match, make them run the updater (air). On Wed, Aug 6, 2008 at 10:45 AM, Scott [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Does anyone know of a way to collect a CRC from a flex or air application file? I would like to verify that they are running

Re: [flexcoders] Remoting fails

2008-08-06 Thread Scott
: Wednesday, August 06, 2008 10:37 AM To: flexcoders@yahoogroups.com Subject: {Disarmed} Re: [flexcoders] Remoting fails Hi Scott and thanks for the replies, I can hit it fine from a few different servers cross domains ( BTW this is using the old flash remoting for AS2 ) and this only seems an issue

[flexcoders] removing or resetting an event

2008-08-11 Thread Scott
an event after it fires? Thanks Scott

RE: {Disarmed} [flexcoders] Compare two XMLs

2008-08-17 Thread Scott
You should be able to use the as3 funtion, contains() (see http://livedocs.adobe.com/flex/3/langref/XML.html). You would have to read both XML files then use a loop to go through items bResult = xml1.item[nLoop].contains(xml2.item[nLoop]); if (bResult == false ) { {Not equal do

[flexcoders] flex captcha

2008-08-17 Thread Scott
Does anyone have a good/cool flex(flash) captcha generator? Regards, Scott

RE:[flexcoders] Re: SecurityError: Error #2060: Security sandbox violation-what is the real solution

2008-08-17 Thread Scott
FYI, this is a community user group; not an adobe support forum. Yes, you'll see an adobe employee post a message once in a while but it's mainly a community support group and it's most active Mon-Fri. From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] state and country dropdown boxes

2008-08-17 Thread Scott
Does anyone have/care to share a premade country/state/province dropboxes? I can find a state list, but where does one find an accurate (at least to this day anyway...) country list? Thanks! Scott

RE:[flexcoders] Data binding

2008-08-17 Thread Scott
... Regards, Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Sunday, August 17, 2008 10:22 PM To: flexcoders@yahoogroups.com Subject: {Disarmed} [flexcoders] Data binding I have DGs and I am assigning

Re: [flexcoders] flex captcha

2008-08-18 Thread Scott
Thanks! I'll take a look at it. Best regards, Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Uttarwar Sent: Monday, August 18, 2008 12:30 AM To: flexcoders@yahoogroups.com Subject: {Disarmed} Re

[flexcoders] Re: state and country dropdown boxes

2008-08-18 Thread Scott
://aralbalkan.com/1351 http://aralbalkan.com/1351 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Scott [EMAIL PROTECTED] wrote: Does anyone have/care to share a premade country/state/province dropboxes? I can find a state list, but where does one find an accurate (at least

[flexcoders] flexcoders] Re: flex captcha

2008-08-18 Thread Scott
--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Scott [EMAIL PROTECTED] wrote: Does anyone have a good/cool flex(flash) captcha generator? Regards, Scott -- This message has been scanned for viruses and dangerous content by MailScanner http

Re: [flexcoders] SortField without a name doesn't refresh properly

2008-10-01 Thread Scott
I frequently find it helpful to add a getter at the higher level so I can access the lower level property... For example public function get childProp():Boolean { return child.prop; } Once you do this you can use a sort field on childProp. hth Scott --- Scott Melby Founder, Fast Lane

[flexcoders] Components and displaying into a new target

2008-10-10 Thread Scott
in the main.mxml. TIA. Scott

RE: {Disarmed} [flexcoders] Couple questions

2008-10-10 Thread Scott
I can't comment on the 2nd question. However, you'd probably want to do something in Flash for a powerpoint. Flex is more of a programmers language, flash is more of a designer interface. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: {Disarmed} Re: [flexcoders] Components and displaying into a new target

2008-10-10 Thread Scott
will do the trick.. Thanks, with Regards, Jitendra Jain - Original Message From: Scott [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, 11 October, 2008 10:25:53 AM Subject: [flexcoders] Components and displaying into a new target I've got an issue that I can't

RE:[flexcoders] floodFill and threshold methods with bitmapData

2008-10-12 Thread Scott
Open the JPG in photoshop and see if you have clean edges. If you have pixels around the edge that are not clean then you will see things like that happen... sj From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tchredeemed Sent:

[flexcoders] internationalization

2009-01-19 Thread Scott
is the best way to do this? Has anyone done this or come across any articles? The articles I've found thus far deal with changing the currency/calendar/etc.. While that is something that I need to use, it's not the whole story... Thanks much. Scott

[flexcoders] Flex debugger not working IE7 flash 10

2009-02-19 Thread Scott
but they are either unresolved, the fixes didn't work, or it doesn't apply to my scenario (I'm on Vista Business not MAC). Does anyone know what I'm running into here and how to fix it? Thanks Scott

[flexcoders] FB program launch wants to install 10 when I only have 9

2009-02-27 Thread Scott
; // - And I don't see any references to version 10 of flash. Where is this coming from? I also verified the properties are set to version 9.0.151 in FB3. Thanks! Scott

RE: {Disarmed} [flexcoders] FB program launch wants to install 10 when I only have 9

2009-02-27 Thread Scott
away but I still have the debugger issue... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Friday, February 27, 2009 10:42 AM To: flexcoders@yahoogroups.com Subject: {Disarmed} [flexcoders] FB program launch

[flexcoders] FB3 Debugger issue - cannot connect

2009-02-27 Thread Scott
. Has anyone run into this?? Thanks! Scott

[flexcoders] Credit card processing in Flex

2009-03-04 Thread Scott
Anyone have a website or information that references how to process credit cards through flex? Thanks Scott

re: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Scott
: Scott h...@netprof.us Sent: Wednesday, March 04, 2009 7:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Credit card processing in Flex Anyone have a website or information that references how to process credit cards through flex? Thanks Scott -- This message has been scanned

RE: {Disarmed} RE: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Scott
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Wednesday, March 04, 2009 7:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Credit card processing in Flex Anyone have a website or information that references how to process credit cards through flex

[flexcoders] watching and triggering events

2009-03-23 Thread Scott
I think I'm making this more difficult than it should be; or at least I hope I am... I've got a parent viewer called AddContactandReminder.mxml and that has two child objects, AddContact.mxml and ListAndShowContacts.mxml. When I add a new contact in the contact object I trigger an

[flexcoders] watching and triggering events

2009-03-23 Thread Scott
I think I'm making this more difficult than it should be; or at least I hope I am... I've got a parent viewer called AddContactandReminder.mxml and that has two child objects, AddContact.mxml and ListAndShowContacts.mxml.  When I add a new contact in the contact object I trigger an event

RE: [flexcoders] watching and triggering events

2009-03-23 Thread Scott
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Monday, March 23, 2009 12:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] watching and triggering events I think I'm making this more difficult than it should be; or at least I

RE:[flexcoders] Re: watching and triggering events

2009-03-23 Thread Scott
components will respond. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com [mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com ] On Behalf Of Scott Sent: Monday, March 23, 2009 12:29

RE: {Disarmed} [flexcoders] How to make show event work?

2009-03-23 Thread Scott
If I'm not mistaken, the component is created and kept in memory once you call it. I don't think you can call the show the way you are trying to call it in the constructor. Instead you would have to do a creationComplete=Alert.show('test') The re-calling the function would be dependent

[flexcoders] changing more than the outline on a validator

2009-03-23 Thread Scott
Ok, I'm going back through my code and adding validators. Sample code: !-- Validate email -- mx:EmailValidator id=emailValidator source={strEMail} property=text / ... mx:FormItem label=E-Mail mx:TextInput id=strEMail errorColor=#FE020E shadowDistance=5

RE: [flexcoders] Re: watching and triggering events

2009-03-23 Thread Scott
Are you talking about setting up a singleton to handle events for models? Scott From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Monday, March 23, 2009 3:23 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Re: watching and triggering events

2009-03-23 Thread Scott
Yes. Tracy Spratt, Lariat Services, development services available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Monday, March 23, 2009 4:50 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re

[flexcoders] validator.validateall

2009-03-23 Thread Scott
] at com.cfgenerated.views.Contacts::AddContactForm2/__btnAdd_click()[C:\Cold Fusion8\wwwroot\FT\src\com\cfgenerated\views\Contacts\AddContactForm2.mx ml:149] Anyone know what this error is referring to and/or why I'm getting it? Thanks. Scott

RE:[flexcoders] validator.validateall

2009-03-24 Thread Scott
input. One of the fields I'm checking in the validator doesn't exist unless the state is active. I commented out that individual validator and it works. Hopefully this message will help someone in the future to not go through what I did. ;) Scott I

RE:[flexcoders] validator.validateall

2009-03-24 Thread Scott
what that error is telling me? Thanks! Scott --- I've been banging my head on this issue all afternoon/evening... In all the examples I've seen for this, the Validator.validateall() seems to be very straight forward. !-- Validators -- mx:Array id=validators

RE: {Disarmed} [flexcoders] remoteobject and parameters

2009-03-24 Thread Scott
You need to create a remoteobject in Flex. I use ColdFusion for my backend but it should be similar. I'm also not sure if you're using amfphp or not but this is the basis to work from: mx:Script private function accessRemote():void { phpService.remotePHPFunctionName( variable1,

RE: [flexcoders] ADG to .csv - Not finding any solutions out there

2009-03-24 Thread Scott
to the drive then let me know! Scott From: flexcoders@yahoogroups.com on behalf of Tom Chiverton Sent: Tue 3/24/2009 9:45 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ADG to .csv - Not finding any solutions out there On Tuesday 24 Mar 2009, Adrian

RE: [flexcoders] Re: which one is better to use?

2009-03-24 Thread Scott
transfered by 30-50%. Scott From: flexcoders@yahoogroups.com on behalf of valdhor Sent: Tue 3/24/2009 9:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: which one is better to use? I have found that using an arrayCollection of typed objects is much

RE: [flexcoders] Custom Classes and Custom Events

2009-03-24 Thread Scott
=sameasremotequery /Remoteobject mx:Button id=button name=getdata click=getData()/ There are exceptions to my rule, but for the most part I try to use events where they are needed. Scott From: flexcoders@yahoogroups.com on behalf of secrit.service Sent: Tue 3

RE: [flexcoders] Re: remoteobject and parameters

2009-03-24 Thread Scott
Is any small developer even using Weborb? When I called them they were slow to get back to me and they don't even have documentation of their products they're working on it. That's a huge red flag to me... What kind of support would I get for their products if I were to buy in. Also, the

[flexcoders] Weborb

2009-03-24 Thread Scott
as well. The sales person I talked to didn't seem really that technical. Can someone tell me the real benefits in using weborb if there are any? Thanks Scott

RE: [flexcoders] Re: Weborb

2009-03-25 Thread Scott
there has to be something more to Weborb than just that data connectivity. I guess that's what I'm trying to figure out. Scott From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mark Piller Sent: Wednesday, March 25, 2009 12:01 AM

RE: [flexcoders] Weborb

2009-03-25 Thread Scott
So weborb -is- the server side? I was under the impression you still had to run a server technology for weborb to work...? There isn't anything built into CF for push, but I could use livecycle in CF if I wanted to pay the large sum for it. Regards, Scott

RE: [flexcoders] Which mobile device can run flash ?

2009-03-25 Thread Scott
I can say... NOT the iPhone.. (GRUMBLE) ;) I did see a list on Adobe's website a while back but I couldn't find it when I went to look just now. Perhaps they weren't updating it? Or perhaps they are and I just couldn't find it again... Scott From

RE: [flexcoders] Re: Weborb

2009-03-25 Thread Scott
I thought livecycle requires a license? I've been interested in playing with that... It sounds like you have. Do you know how to size a server for using Flex against a LCDS? Scott From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com

RE: [flexcoders] Re: Which mobile device can run flash ?

2009-03-26 Thread Scott
Here's the list: http://www.adobe.com/mobile/supported_devices/ I'm not sure how well it's maintained though. Scott From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tom Chiverton Sent: Thursday, March 26, 2009 6:40

  1   2   3   4   5   6   7   8   9   10   >