re: [flexcoders] AS3 RemoteObjects and Operations

2009-01-02 Thread Wally Kolcz
Wait..CFCs have methods, not operations So do I remove the Operation variables and just create a function like: public function create(petData:Object):void { ro.create(petData); ro.create.addEventListener(FaultEvent.FAULT, faultHandler);

[flexcoders] Generating Random Unique ID

2009-01-05 Thread Wally Kolcz
Anyone know a good way to generate a GUID or UUID with AS3? I found a nice AS2 version, but it blows up with AS3. Shouldn't be that hard, but haven't been able to find a good Class. Thanks!

Re: [flexcoders] Generating Random Unique ID

2009-01-05 Thread Wally Kolcz
Yeah, already did that. Not sure it is 100% but does seem to generate a unique number... From: Paul Andrews p...@ipauland.com Sent: Monday, January 05, 2009 6:07 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Generating Random Unique ID

Re: [flexcoders] Generating Random Unique ID

2009-01-05 Thread Wally Kolcz
Wow, didn't know about that.still learning the whole framework... thanks...sure that will work fine... From: Brendan Meutzner bmeutz...@gmail.com Sent: Monday,

re: [flexcoders] Which Unit Testing Framework to use?

2009-01-06 Thread Wally Kolcz
Been looking at FlexUnit, FUnit, and ASUnit. Like FlexUnit best so far... From: b_alen alen.ba...@gmail.com Sent: Tuesday, January 06, 2009 5:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Which Unit Testing Framework to use? After a brief

[flexcoders] Stupid Question - Flex width and height

2009-01-12 Thread Wally Kolcz
This is probably a dumb question but... I am trying to do a Flex app primarily in AS. In the constuctor I am trying to create an ApplicationControlBar that is the same as this: mx:ApplicationControlBar right=5 left=5 top=55 id=mainACB / I am having a problem with trying to

Re: [flexcoders] Stupid Question - Flex width and height

2009-01-12 Thread Wally Kolcz
Thanks, didn't know that! From: Wesley Acheson wesley.ache...@gmail.com Sent: Monday, January 12, 2009 2:08 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Stupid Question - Flex width and height On Mon, Jan 12, 2009 at 9:48 PM, Wally Kolcz

[flexcoders] What is the results of a web service

2009-01-21 Thread Wally Kolcz
I am having fits trying to figure out how to use the information coming back from a webservice. I created a web service call in my code: mx:WebService id=storyGateway wsdl=http://www2.med.umich.edu/prmc/media/newsroom/stories.cfc?wsdl; fault=Alert.show(event.fault.message,'Story Gateway

Re: [flexcoders] What is the results of a web service

2009-01-21 Thread Wally Kolcz
Subject: Re: [flexcoders] What is the results of a web service Hi Wally, Any particular reason you are not setting a resultFormat on your mx:operation? For example: mx:operation name=service resultFormat=object result=serviceResult(event)/ Adrian Wally Kolcz wrote: I am having fits trying

Re: [flexcoders] What is the results of a web service

2009-01-21 Thread Wally Kolcz
Well, still getting the same error. From: Wally Kolcz wko...@isavepets.com Sent: Wednesday, January 21, 2009 9:51 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] What is the resultsgeof a web

RE: [flexcoders] Hiding the application control bar?

2009-01-22 Thread Wally Kolcz
Why not set the visible = false or includeInLayout = false? mx:ApplicationControlBar visible=false includeInLayout=false / From: Wildbore, Brendon b.j.wildb...@massey.ac.nz Sent: Thursday, January 22, 2009 11:53 AM To: flexcoders@yahoogroups.com

re: [flexcoders] New Web 2.0 Company looking for Chalnging work (www.dacoders.com)

2009-01-23 Thread Wally Kolcz
Social-Networking, Real Estate, E-Learning Applications, E-Commerce, Financial Applications and Real Time Communication Applications as Live Audio/Video Streaming and Broadcasting for E-Learning or Business Meetings, Instant Messengers and Web Phone...wow, that a very broad scope

Re: [flexcoders] New Web 2.0 Company looking for Chalnging work (www.dacoders.com)

2009-01-23 Thread Wally Kolcz
(www.dacoders.com) Wally, hourly rate depends on the country the developers are based... In some countries 12$ will get you fine for a month or more... :-) On Fri, Jan 23, 2009 at 6:39 PM, Wally Kolcz wko...@isavepets.com wrote: Social-Networking, Real Estate, E-Learning Applications, E-Commerce

Re: [flexcoders] New Web 2.0 Company looking for Chalnging work (www.dacoders.com)

2009-01-23 Thread Wally Kolcz
, this is the advantage of outsourcing in India, or elsewere... The cons? Many... If you ever tried it you know all the problems involved, and usually from prior experience, there are many... On Fri, Jan 23, 2009 at 6:49 PM, Wally Kolcz wko...@isavepets.com wrote: Ahhh, good point. Damn me and my

Re: [flexcoders] New Web 2.0 Company looking for Chalnging work (www.dacoders.com)

2009-01-23 Thread Wally Kolcz
I don't have a business to promote. :-( I feel left out. From: Paul Andrews p...@ipauland.com Sent: Friday, January 23, 2009 8:57 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] New Web 2.0 Company looking for Chalnging work

Re: [flexcoders] Flex. AIR and IPhone

2009-01-26 Thread Wally Kolcz
Could not have put it any better myself. From: Paul Andrews p...@ipauland.com Sent: Monday, January 26, 2009 4:07 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex. AIR and IPhone LOL, yes - the iphone only supports two gestures for flex,

[flexcoders] Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
I am so trying to wrap my head around web services and use them for my projects since we Blue Dragon here at the U. I have my CFCs and they seem to work fine. However, I have no idea on how to set the 'return value' for a web service to an arraycollection to use it. I am used to RemoteObjects

re: [flexcoders] Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
and then tried to trace myData.getItemAt(0).firstName but got an error. From: Wally Kolcz wko...@isavepets.com Sent: Tuesday, January 27, 2009 5:30 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Setting data from web service to ArrayCollection

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
does the debugger show as the result type?). You may like to try... var resultArrColl:ArrayCollection = e.result.source; var firstResult:ArrayCollection = resultArrColl[0]; Alert.show(firstResult[0]); --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: I moved my CFC and database

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
an arrayCollection of arrayCollections (What does the debugger show as the result type?). You may like to try... var resultArrColl:ArrayCollection = e.result.source; var firstResult:ArrayCollection = resultArrColl[0]; Alert.show(firstResult[0]); --- In flexcoders@yahoogroups.com, Wally Kolcz wko

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
of typed User objects PS2: Passwords are normally kept on the server and not transfered on the client , at least not in text form... On Tue, Jan 27, 2009 at 6:19 PM, Wally Kolcz wko...@isavepets.com wrote: Using Alert.show

re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
: Tuesday, January 27, 2009 10:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Setting data from web service to ArrayCollection. --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: I moved my CFC and database to my localhost so I can debug the webservice output

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
Ok, lets take this the other way. Here is my simple CFC. How can I modify this to return a result to Flex to which I can then set to an ArrayCollection that I can use? cfcomponent cffunction name=login access=remote returntype=query output=false hint=I attempt a login cfargument

RE: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
] On Behalf Of Wally Kolcz Sent: Tuesday, January 27, 2009 3:39 PM To:flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Setting data from web service to ArrayCollection. Ok, lets take this the other way. Here is my simple CFC. How can I modify this to return a result to Flex to which I can

re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
. --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Ok, lets take this the other way. Here is my simple CFC. How can I modify this to return a result to Flex to which I can then set to an ArrayCollection that I can use? cfcomponent cffunction name=login access=remote returntype

re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-28 Thread Wally Kolcz
28, 2009 5:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Setting data from web service to ArrayCollection. --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Don't understand the question. Please educate me :-) Collection=multiple things Unique=1 thing Usually

[flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-01-29 Thread Wally Kolcz
I have 2 mirrored environments. One on my laptop running Adobe CF8 and one at the University running Blue Dragon 7. I have the same CFCs set to remote, the same database stucture, and the same mx:WebService on both. I am just switching the wsdl location between the 2 and I am getting

RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-01-30 Thread Wally Kolcz
] On Behalf Of Wally Kolcz Sent: Thursday, January 29, 2009 9:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon

RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-01-31 Thread Wally Kolcz
development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Friday, January 30, 2009 9:00 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Oh WTF? Web Services: Anyone work

RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-01-31 Thread Wally Kolcz
? What is not working? Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Saturday, January 31, 2009 12:04 PM To: flexcoders

RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-02-01 Thread Wally Kolcz
Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Saturday, January 31, 2009 12:04 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Oh WTF? Web

RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-02-02 Thread Wally Kolcz
[mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Saturday, January 31, 2009 6:02 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)? I dunno. I pasted the code I have below and when I try to either trace

RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-02-02 Thread Wally Kolcz
[mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Sunday, February 01, 2009 8:02 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)? The problem seems to be here. I tried to trace each item

[flexcoders] XML walkdown Help

2009-02-02 Thread Wally Kolcz
I am getting a weird return from Blue Dragon's CFC wsdl as my e.result. I need to set this to 2 local XMLList variables but am having a devil of a time walking down this path to the core nodes. Any ideas on how to make this usable? Tracy has been trying to help me, but this

RE: [flexcoders] XML walkdown Help

2009-02-02 Thread Wally Kolcz
Of Wally Kolcz Sent: Monday, February 02, 2009 2:08 PM To:flexcoders@yahoogroups.com Subject: [flexcoders] XML walkdown Help I am getting a weird return from Blue Dragon's CFC wsdl as my e.result. I need to set this to 2 local XMLList variables but am having a devil of a time walking down

re: [flexcoders] XML walkdown Help

2009-02-02 Thread Wally Kolcz
xmlResult:XML = XML(e.result); which gives me the above. var xlColumns:XMLList = xmlResult.loginResponse; which comes up blank. From: Wally Kolcz wko...@isavepets.com Sent: Monday, February 02, 2009 11:08 AM To: flexcoders

re: [flexcoders] XML walkdown Help

2009-02-02 Thread Wally Kolcz
xmlResult:XML = XML(e.result); which gives me the above. var xlColumns:XMLList = xmlResult.loginResponse; which comes up blank. From: Wally Kolcz wko...@isavepets.com Sent: Monday, February 02, 2009 11:08 AM To: flexcoders

RE: [flexcoders] XML walkdown Help

2009-02-03 Thread Wally Kolcz
nodes with a namespace defined. HTH, Ryan From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Monday, February 02, 2009 1:42 PM To:flexcoders@yahoogroups.com Subject: re: [flexcoders] XML walkdown Help Here is a more accurate output

RE: [flexcoders] XML walkdown Help

2009-02-03 Thread Wally Kolcz
[mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Tuesday, February 03, 2009 7:54 AM To:flexcoders@yahoogroups.com Subject: RE: [flexcoders] XML walkdown Help Ok, I tried both approaches and they gave me this. loginResult xmlns=http://www.newatlanta.com/bluedragon/cfc/prmc/PRMCProjects

RE: [flexcoders] XML walkdown Help

2009-02-03 Thread Wally Kolcz
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Tuesday, February 03, 2009 10:23 AM To:flexcoders@yahoogroups.com Subject: RE: [flexcoders] XML walkdown Help Thanks for being patient and helping me. I really need to read more about XML and Flex/AS3. I am so used

RE: [flexcoders] XML walkdown Help

2009-02-03 Thread Wally Kolcz
, to make the expressions easier. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Tuesday, February 03, 2009 10:23 AM To: flexcoders

[flexcoders] Invoking other module's actions

2009-02-05 Thread Wally Kolcz
Sorry if that was a little confusing...Here is the scenario. I have a module (myProjects) that has a viewstack (projectsVS) that allows me to switch between a 2 different sections (indexes). I want to, when the use logs out, make sure that the module's viewstack is set to

re: [flexcoders] Re: Login / Password Form

2009-02-05 Thread Wally Kolcz
I used a database and RemoteObject/Web Services to check a CFC with the query to see if the username and password matches and returns any info I need then I have something like this: public function loginHandler(e:ResultEvent):void { userData = e.result as ArrayCollection;

RE: [flexcoders] Re: Geting the 3dWall Pro to work as flex component ?

2009-02-05 Thread Wally Kolcz
It would probably be best for you to contact them regarding that issue. Most companies that make Flash widgets don't think about AIR. From: David Kramer davidkra...@consultant.com Sent: Thursday, February 05, 2009 10:47 AM To: flexcoders@yahoogroups.com

[flexcoders] What comes out of a datagrid

2009-02-05 Thread Wally Kolcz
Lets say I have 2 DataGrids, one has user info in it (populated with a binded ArrayCollection) and the other is blank (lets call it id=teamDG). You can drag the people from the populated to the blank to populate it. Got that part to work fine. When you have dragged all the people you wanted to

re: [flexcoders] Newbie Help

2009-02-12 Thread Wally Kolcz
1.) Flex is just an SWF file. You can set the application to any size and embed it as a SWF. 3.) Flex has a really good printing solution allowing you to add elements to a print job and control the order of printing. I believe that AlivePDF can convert and export Flex information as a PDF

re: [flexcoders] Re: Events and Child SWFs

2009-02-12 Thread Wally Kolcz
What happens if you set you dispatchEvent to bubble? From: stldvd stl...@yahoo.com Sent: Thursday, February 12, 2009 10:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Events and Child SWFs Hi Steve, But I need the child swf to react, not

[flexcoders] Idiots guide to crossdomain.xml

2009-02-12 Thread Wally Kolcz
I am pulling my hair out with the new requirements for the Flash Player 10 and crossdomain.xml... There is not one good place for a simple explaination. I have a web site: http://www2.med.umich.edu/prmc/af/ It is also being pushed by this domain: http://www.victorsvaliant.org/af/ When I go to

RE: [flexcoders] Re: Events and Child SWFs

2009-02-12 Thread Wally Kolcz
I thought the child of the parent (main application) would be up the chain. The child has to listen and react to the event dispatched by the main application. I've got a parent application with a 'delete' button. When it's clicked, I want to

[flexcoders] Colored Tabs

2009-02-17 Thread Wally Kolcz
I figured out how to turn one of the tabs red using a css snippet and the function below. Just it only works when the tab is not selected..what else would need to be added to get it to be all red all the time? mx:Style .tab1 { fill-colors: #e91116, #e91116; }

[flexcoders] Desperate Help! crossdomain.xml

2009-02-18 Thread Wally Kolcz
I have a site (http://www2.med.umich.edu/prmc/af/) that had an old crossdomain.xml file that worked fine until FP10. It works fine when visiting from that URL since it on the same server, however, we also have this domain (http://www.victorsvaliant.org/af/) pointing to it also and I get a

re: [flexcoders] Best database for Flex

2009-02-20 Thread Wally Kolcz
Flex is database independant. There is no data classes with Flex, unless you are working with AIR. With Flex you connection to your data using either ColdFusion RemoteObjects or Web Services with any (CF, PHP, .NET, etc) so it is more based on what each language can use (which is all of them)

re: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Wally Kolcz
Flex can pass the cc information to a scripting language such as asp.net, php, jsp, or CF. From there you can use any of the API's offered by the various CC processing companies to complete the transactions and pass the information back to flex to display. Or you might be able

re: [flexcoders] Credit card processing in Flex

2009-03-04 Thread Wally Kolcz
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Wednesday, March 04, 2009 9:04 AM To:flexcoders@yahoogroups.com Subject

[flexcoders] mx:MenuBar - How to choose or trigger on click

2009-03-05 Thread Wally Kolcz
I am working on a couple AIR apps that would best be served with a menu bar. Problem is, as where I do understand how to make menu items, I cannot figure out how to trigger a function or switch a viewstack when a menu item is clicked. Lets say I have this: mx:MenuBar x=0 y=80 width=100%

re: [flexcoders] mx:MenuBar - How to choose or trigger on click - Never Mind

2009-03-05 Thread Wally Kolcz
Never mind. Found it From: Wally Kolcz wko...@isavepets.com Sent: Thursday, March 05, 2009 7:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] mx:MenuBar - How to choose or trigger on click I am working on a couple AIR apps that would best

[flexcoders] Reloading data while navigating a view stack

2009-03-05 Thread Wally Kolcz
Using Flex mxml, can you force a reload of data for each module in a viewstack so when the user flips between 'pages' updated data loads?

[flexcoders] importing and dynamically creating objects

2009-03-08 Thread Wally Kolcz
I am trying to create a quizzer when the questions are in components. I want to import the component and add it to the stage based on the question that next and the quiz they are taking. If they load test 1 i need it to: import com.ipexpert.test.1.question1; var currentQuestion:question1 = new

[flexcoders] Find the value of a radiobutton in a radio group

2009-03-09 Thread Wally Kolcz
I am trying to make a AIR app that is a test. I have radiobuttons with a value of either 0 or 1 depending on if its correct or not. I want to pass the value to a function that keeps score. I am running into a problem on determining the value of the passed question to see if the app should add a

re: [flexcoders] Find the value of a radiobutton in a radio group

2009-03-09 Thread Wally Kolcz
it? From: Wally Kolcz wko...@isavepets.com Sent: Monday, March 09, 2009 6:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Find the value of a radiobutton in a radio group I am trying to make a AIR app that is a test. I have radiobuttons

RE: [flexcoders] Find the value of a radiobutton in a radio group

2009-03-09 Thread Wally Kolcz
Of Wally Kolcz Sent: Monday, March 09, 2009 8:12 AM To: flexcoders@yahoogroups.com Subject: re: [flexcoders] Find the value of a radiobutton in a radio group I think I am finding that the problem is in the nextQuestionPlease() method. The reference to questionsVS is null and I can't figure out

[flexcoders] Moving a viewStack through actionscript

2009-03-09 Thread Wally Kolcz
I have a test that I want to walk through the questions using a function. How can I set the inital value of the ViewStack (questionsVS) to 0 and then increment it by one each time someone clicks a button? mx:ViewStack id=questionsVS width=98% height=100% paddingLeft=10

Re: [flexcoders] Moving a viewStack through actionscript

2009-03-09 Thread Wally Kolcz
/langref/mx/containers/ViewStack.html Hope that helps! Michael Wally Kolcz wrote: I have a test that I want to walk through the questions using a function. How can I set the inital value of the ViewStack (questionsVS) to 0 and then increment it by one each time someone clicks a button

Re: [flexcoders] Moving a viewStack through actionscript

2009-03-09 Thread Wally Kolcz
connected to parent. I hope that makes sense! Michael Wally Kolcz wrote: When I added the click=nextQuestion() it was triggered off the selecting of a radio button and not the button. Here all the code I have. It is telling me that the viewStack doesn't exist when I believe it should

Re: [flexcoders] Moving a viewStack through actionscript

2009-03-10 Thread Wally Kolcz
this one is not going to be a full-on huge app, I'd learn about dispatching custom events. It's not that complicated but it takes some time to understand. It would save some of the hassle you're trying to do of course at the expense of a new and different kind of hassle. :-) Michael Wally Kolcz wrote

Re: [flexcoders] Moving a viewStack through actionscript

2009-03-10 Thread Wally Kolcz
not that complicated but it takes some time to understand. It would save some of the hassle you're trying to do of course at the expense of a new and different kind of hassle. :-) Michael Wally Kolcz wrote

RE: [flexcoders] Moving a viewStack through actionscript

2009-03-10 Thread Wally Kolcz
through that reference. Tracy Spratt, Lariat Services, development services available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Tuesday, March 10, 2009 8:34 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Moving a viewStack through actionscript

2009-03-10 Thread Wally Kolcz
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Tuesday, March 10, 2009 8:34 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Moving a viewStack through

[flexcoders] What is a fair price - Opinions Please.

2009-03-26 Thread Wally Kolcz
I have been asked to make an AIR application that is a 100 question quizzer. Wants it done by next Tuesday. Simple quizzer that compares the answer to what the person entered then adds either a 1 or 0 to a running total. Client would like to know a price on it, but I never developed a Flex/AIR

[flexcoders] Stumped - End of a test error

2009-03-29 Thread Wally Kolcz
I am creating a quizer for a client. It goes through a 100 questions. When it passes the last question, it is supposed to remove the VBox containing the question text, textbox, the section text, and button. I am getting this error: TypeError: Error #1010: A term is undefined and has no

Re: [flexcoders] Stumped - End of a test error

2009-03-29 Thread Wally Kolcz
Thanks. It works now! From: Paul Andrews p...@ipauland.com Sent: Sunday, March 29, 2009 9:32 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Stumped - End of a test error q ++; is the culprit. When you get to the last one you advance one

[flexcoders] A better RichTextEditor

2009-04-06 Thread Wally Kolcz
Anyone know of any components for a better RichTextEditor than that which comes stock with Flex 3? My clients are coming from FCKEditor and would like something a little more friendly. Thanks.

[flexcoders] What events are available for the flvplayback component?

2009-04-16 Thread Wally Kolcz
I am trying to convert a video tracking service from FXVideo (which blips) to a Flash FLVPlayback 2.5 component. I need to listen to and react to the following events. Play, Pause, Stop, Complete to fire off my tracking functions. Does the FLVPlayback support any way to broadcast for them?

[flexcoders] Reoading a view from a viewstack

2009-04-18 Thread Wally Kolcz
My application uses a ToggleButtonBar with a viewstack as it's dataprovider. When the app is first loaded and each component is called in the stack, it loads the component and runs it's initApp() on the creationComplete. However when you go back it's already loaded and doesn't run the initApp()

[flexcoders] Text wrap around an image

2009-04-21 Thread Wally Kolcz
Anyone know any examples of how to get text to wrap around and image in the same container? For example a couple paragraphs wrapping around an image that is in the top left. Thanks!

re: [flexcoders] Re: Text wrap around an image

2009-04-22 Thread Wally Kolcz
but the only one I can find is... http://dispatchevent.org/roger/dynamic-text-wrapping-in-actionscript-3/ Also, Gumbo's TLF is supposed to have support for this. HTH Steve --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Anyone know any examples of how to get text to wrap around

re: [flexcoders] Re: Job Offer ! - WTF?!

2009-05-14 Thread Wally Kolcz
How funny. pay to apply and make less than most of us already do. From: valdhor valdhorli...@embarqmail.com Sent: Thursday, May 14, 2009 7:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Job Offer ! Amy Has someone stolen your identity or

[flexcoders] How to pull youtube into a custom Flash/Flex Video Player

2009-06-17 Thread Wally Kolcz
I found the docs from Google on how to query the user's information, but what element do you use as the source for the video player?

[flexcoders] Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Wally Kolcz
Using an example from the web I am trying to create a custom Panel component that had radio buttons in the panel header for a specific piece of a web site. The panel works and I am getting 2 radio buttons but no labels for either button and the radioGroup's

re: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Wally Kolcz
--- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Using an example from the web I am trying to create a custom Panel component that had radio buttons in the panel header for a specific piece of a web site. The panel works and I am getting 2 radio buttons but no labels

re: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Wally Kolcz
24, 2009 8:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help You need to add maps as a child in createChildren(). -TH --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Thanks! The labels are now showing perfectly

re: [flexcoders] Re: Extending Custom Panel with RadioButtons - Help

2009-06-24 Thread Wally Kolcz
){ start_txt.text = Enter Starting Address; } else{ start_txt.text = Choose Your Airport; } } It makes sense to do it this way because the content of the panel could change and you might want to re-use your component.. -TH --- In flexcoders@yahoogroups.com, Wally Kolcz

[flexcoders] Moving tabs in the TabNavigator

2009-07-02 Thread Wally Kolcz
Normally when you have a tab navigator, the tabs start from left to right. I see that you can offset the tabs numerically, but can you / how do you start the tabs from the right side?

[flexcoders] Free World Map Data Component

2009-07-02 Thread Wally Kolcz
Does anyone know where I can find a good, clean world map data component? Something like what ILOG offers. Thanks!

re: [flexcoders] Popup a panel in new browser window

2009-07-02 Thread Wally Kolcz
Use mx.managers.PopUpManager and then use either addPopUp (if in a component) or createPopUp (if creating it on the fly) . Once you create or added a popup, use CenterPopUp(this) to have it center in the screen or else it will pop up at 0,0

Re: [flexcoders] Moving tabs in the TabNavigator

2009-07-02 Thread Wally Kolcz
in the TabNavigator Hi Wally In TabNavigator componet use tabOffset property to get your required output. With Regards, Niamath Basha On Thu, Jul 2, 2009 at 5:53 PM, Wally Kolcz wko...@isavepets.com wrote: Normally when you have

Re: [flexcoders] Free World Map Data Component

2009-07-02 Thread Wally Kolcz
; but don't know of any. Wally Kolcz wrote: Does anyone know where I can find a good, clean world map data component? Something like what ILOG offers. Thanks! -- Jeffry Houser, Technical Entrepreneur Adobe Community Expert: http://tinyurl.com/684b5hhttp://www.twitter.com/reboog711 | Phone

[flexcoders] LiveCycle / BlazeDS question - If anyone knows

2009-07-02 Thread Wally Kolcz
Can Either or Both of these data services stream video and audio similar to FMS? We're looking into getting FMS and I would rather have a DS for my Flex apps if they can :-) Thanks for any info.

[flexcoders] External config file for livecycle

2009-07-02 Thread Wally Kolcz
It would be great to connection to COldfusion's built in livecycle express from a web host but wouldn't that require access to the root config file? Is it possible to load it externally so multiple users can use the stream data services without bumping into each other or having the web host

[flexcoders] Who else is here - SharedObjects?

2009-07-10 Thread Wally Kolcz
I want to do a conference room application for work and would like to show who else is logged in and in the 'room'. I was thinking that SharedObjects would be the way to go, but after doing a little research, it doesn't seem that is the way it works. Is there a way for a Flex/LCDS application to

[flexcoders] Livecycle DS with Flex Questions

2009-07-14 Thread Wally Kolcz
I am trying to get into using LiveCycle DS with my Flex app. I have a couple question for anyone who uses it and understands it. 1.) If I were to have 2 seperate applications (swfs, client / admin) that both subscribe to the same destination, when a change is made (say a admin adds a records)

[flexcoders] Advice from people smarter than me: Data prep for a web service

2009-07-23 Thread Wally Kolcz
I am attempting to bring my Flex apps to the U of Michigan but we are running Blue Dragon.NET and not true ColdFusion. I have my CFCs returning queries since this would be a replacement UI for an existing application. The Web Services that are being returned are in .NET and come back in a

[flexcoders] Is anyone an ACE for Flex 3 with AIR?

2009-07-28 Thread Wally Kolcz
Thinking about going for the ACE exam and was wondering how many people on the thread is an ACE for Flex with AIR and if it really means anything in the 'real world'? What was the test like? Any sections jump out at ya?

[flexcoders] Variable assignment help [1 Attachment]

2009-08-04 Thread Wally Kolcz
I am returning a web service as objects from Blue Dragon. I managed to figure out how to assign them to a datagrid, but some of my application requires assigning values to variables or text. Can anyone tell me how to get the value 'wkolcz' so I can use it to

re: [flexcoders] Variable assignment help

2009-08-04 Thread Wally Kolcz
Ahh, figured it out: e.result.data[0][0] From: Wally Kolcz wko...@isavepets.com Sent: Tuesday, August 04, 2009 7:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Variable assignment help [1 Attachment] [Attachment(s) from Wally Kolcz included

[flexcoders] Convert Blue Dragon Web Service to ArrayCollection

2009-08-10 Thread Wally Kolcz
I have been working on trying to convert the Web Service result from Blue Dragon to a usable, bindable ArrayCollection for a while now. I think I have come up with a solution for a function that will do it for me, but I just can't get it right. Maybe someone could help. I am returning the data

RE: [flexcoders] Re: ameature question but am desperate

2009-08-10 Thread Wally Kolcz
Is you're RemoteObject's source set to the dot note path to the CFC? And the CFC's method name is 'cat'? Mine usually looks something like mx:RemoteObject id=petDAO destination=ColdFusion source='com.isavepets.data.pet.petDAO(which is the CFC) ... mx:method name = create

RE: [flexcoders] Re: ameature question but am desperate

2009-08-10 Thread Wally Kolcz
Here is a done sample of one of mine: mx:RemoteObject id=discountGateway destination=ColdFusion source=com.isavepets.cfc.discounts.discountGateway fault=Alert.show(event.fault.message, event.fault.faultCode) mx:method name=listByType fault=Alert.show(event.fault.message,

re: [flexcoders] Re: ameature question but am desperate

2009-08-11 Thread Wally Kolcz
Post your code for the RemoteObject, the fuction that calls the method and post your CFC. I think i can get it to work. From: stinasius stinas...@yahoo.com Sent: Monday, August 10, 2009 10:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

re: [flexcoders] Re: ameature question but am desperate

2009-08-11 Thread Wally Kolcz
First, cat.selected is a Boolean (True/False) You need to do a conditional to see if the check box (by id) is set to true of false to determine its value private function insertHandler():void{ if (cat.selected == true) {

  1   2   3   >