Re: [flexcoders] Lightweight Flex framework?

2010-03-03 Thread Clint Tredway
check out robotlegs.. its PureMVC simplified and has a good community following to help when you need to ask questions. On Wed, Mar 3, 2010 at 11:01 AM, Nick Middleweek wrote: > > > Hi, > > Here's one to those that have experience with many frameworks... > > I'm currently using Cairngorm in a bi

Re: [flexcoders] Re: how to get the name of a video file after upload

2010-01-04 Thread Clint Tredway
yes, you are using fileReference. public function selectFile():void { file = new FileReference(); file.addEventListener(Event.SELECT, fileSelected); file.addEventListener(DataEvent.UPLOAD_COMPLETE_DATA, uploadDataComplete); file.addEventListener(Event.COMPLETE, uploadComplete); file.addEventListen

Re: [flexcoders] Re: how to get the name of a video file after upload

2010-01-04 Thread Clint Tredway
What you need to do is create some xml in your file upload cfm page OK#expandPath('/yourPath')#/ Error#cfcatch.Message# #status# , and then in your flex code you need to listen for the DataEvent.UPLOAD_COMPLETE_DATA event and then you can parse that xml for the file name. public function u

Re: [flexcoders] Re: how to call a function from a component to another

2009-10-12 Thread Clint Tredway
.mxml so X.addEventListener > :-( > > > --- In flexcoders@yahoogroups.com , Clint > Tredway wrote: > > > > inside an init function or similar just add something like this: > > this.addEventListener(EVENT,function) > > > > then in your X component just dispatch a cu

Re: [flexcoders] Re: how to call a function from a component to another

2009-10-12 Thread Clint Tredway
no id on the components, I don't see how to add a listener on > the Y.mxml or even in the Main.as that I have ? > > > --- In flexcoders@yahoogroups.com , Clint > Tredway wrote: > > > > best way is to broadcast an event and have the listener call the function > > yo

Re: [flexcoders] how to call a function from a component to another

2009-10-12 Thread Clint Tredway
best way is to broadcast an event and have the listener call the function you need. On Mon, Oct 12, 2009 at 9:00 AM, quantum_ohm wrote: > > > Hi All ! > > I'd like to call a function x() which is in a component X.mxml, from a > function y() which is in another component Y.mxml... > > (As my compo

Re: [flexcoders] Re: Reading a 2D barcode

2009-06-30 Thread Clint Tredway
ry for reading 2D barcodes. > > You are probably better off looking into Merapi (http://merapiproject.net/) > as a bridge. You could use Zebra Crossing (http://code.google.com/p/zxing/) > to read the bar codes and send the resulting data to the Flash player. > > > --- In flexco

[flexcoders] Reading a 2D barcode

2009-06-30 Thread Clint Tredway
I have been looking for an actionscript library to read 2D barcodes but I have not run across one yet. Does anyone know of a library, and if so, do you mind sharing? Thanks! -- “When you choose hope, anything is possible.” -Christopher Reeve

Re: [flexcoders] SWFLoader showing images originally off the 'canvas'

2009-05-22 Thread Clint Tredway
Use a canvas as a mask on the swf loader and that should work. On Fri, May 22, 2009 at 9:20 AM, twcrone70 wrote: > > > In Flex I am trying to show "examples" of SWFs that run on portable devices > in FlashLite. I am able to open them in a Flex control (HBox, TitleWindow > etc.) and pass necessar

Re: [flexcoders] FB 3.0.2 plug-in

2008-11-19 Thread Clint Tredway
no problem, took me a bit to find it as well. On Wed, Nov 19, 2008 at 8:11 AM, Richard Rodseth <[EMAIL PROTECTED]> wrote: > Ah, thanks. I guess I it was the full download that was only available > in 3.0.1. > > On Wed, Nov 19, 2008 at 6:05 AM, Clint Tredway <[EM

Re: [flexcoders] FB 3.0.2 plug-in

2008-11-19 Thread Clint Tredway
http://www.adobe.com/support/flex/downloads_updaters.html On Wed, Nov 19, 2008 at 8:03 AM, Richard Rodseth <[EMAIL PROTECTED]> wrote: > So how does one upgrade? I saw no 3.0.2 plug-in installer on the > downloads page. > > On Wed, Nov 19, 2008 at 3:36 AM, Tom Chiverton < > [EMAIL PROTECTED]> wr

Re: [flexcoders] Do you use a Mac?

2008-10-23 Thread Clint Tredway
I recently switched to a MAC and love it. On Thu, Oct 23, 2008 at 2:04 PM, Alan <[EMAIL PROTECTED]> wrote: > I use a mac, but I've been using Apple products since 1979 > > OSX is Unix based, and a lot of devs like the Unix- ish features. My > experience with designing and developing on a ma

[flexcoders] Flash based flex component issue

2008-08-25 Thread Clint Tredway
Hey all. We are working on a 'game' for kids using Flex and Flash together and have run into a random issue. We have some assets that flash made components that being referenced through a SWC. We are applying a glow filter to the objects and if the mouse movement is too quick, the components flicke

Re: [flexcoders] Flexbuilder for iPhone?

2008-08-08 Thread Clint Tredway
that would rock.. I just got an iPhone and I am learning the SDK for it, but flex apps would be awesome. On Fri, Aug 8, 2008 at 2:33 PM, dnk <[EMAIL PROTECTED]> wrote: > > On 8-Aug-08, at 12:18 PM, Merrill, Jason wrote: > > > > > Ryan Stewart just tweeted, "I just let Adobe's iPhone secret slip >

Re: [flexcoders] Embedding fonts

2008-07-01 Thread Clint Tredway
eri Lamy > > > On Tue, Jul 1, 2008 at 4:05 PM, Clint Tredway <[EMAIL > PROTECTED]> > wrote: > > I have tried using the documentation to embed a font into my flex app, > but > > are there any gotcha's in doing this? > > -- "When you choose hope, anything is possible." -Christopher Reeve

[flexcoders] Embedding fonts

2008-07-01 Thread Clint Tredway
I have tried using the documentation to embed a font into my flex app, but are there any gotcha's in doing this? Thanks! -- "When you choose hope, anything is possible." -Christopher Reeve

Re: [flexcoders] Dynamically Resizing

2008-04-16 Thread Clint Tredway
use percentWidth and percentHieght On Wed, Apr 16, 2008 at 12:46 PM, meltonianweb <[EMAIL PROTECTED]> wrote: > Greetings, > I'm new to flex coding and what I'm trying to do with my current > project is automatically resize panes (canvases?) by mouse actions > like mouseover. I need to use perce

[flexcoders] Combobox label function help

2008-04-04 Thread Clint Tredway
I am helping a fellow coder with using a labelFunction in a combobox that is an itemRenderer in a datagrid. Is there a special way I need to reference the labelFunction? Thanks -- http://grumpee.instantspot.com/blog

Re: [flexcoders] How do I set width to 100% in actionscript?

2008-03-25 Thread Clint Tredway
you have to use percentWidth On Tue, Mar 25, 2008 at 1:43 PM, luvfotography < [EMAIL PROTECTED]> wrote: > How do I set the width to 100% using actionscript?? > It only allows a number - not a string!?! > > var newcanvas:Canvas = new Canvas(); > > newcanvas.width = "100%"; > > 1067: Implicit coe

RE: [flexcoders] Re: Problems setting up Flex with CF 7.0.2

2008-02-29 Thread Clint Tredway
No problem. I have had to go through this exact same issue 2 times, at separate companies, and this was the solution both times. Clint Tredway Cynergy Systems | Consultant 706 7th St SE, Washington DC, 20003 W. http://www.cynergysystems.com E. [EMAIL PROTECTED] From: flexcoders

RE: [flexcoders] Re: Problems setting up Flex with CF 7.0.2

2008-02-29 Thread Clint Tredway
Yes, this is the cause of your issues. You need to do a fresh install of 7.02 and it will work. Somewhere along the way, the 'upgrades' hose the gateway. Clint Tredway Cynergy Systems | Consultant 706 7th St SE, Washington DC, 20003 W. http://www.cynergysystems.com E. [EMAIL

RE: [flexcoders] Problems setting up Flex with CF 7.0.2

2008-02-29 Thread Clint Tredway
Was this server a fresh install of 7.02 or an upgrade to 7.02? I would bet money this was an upgrade and I have seen this several times... the gateway gets hosed with the upgrade and the only fix is to do a fresh install of 7.02. Clint Tredway Cynergy Systems | Consultant 706 7th St SE

RE: [flexcoders] Populating DataGrid

2008-01-19 Thread Clint Tredway
Try this: Import mx.utils.ObjectUtil And then trace out the result to make sure you are getting something back by doing this trace(ObjectUtil.toString(evt.result)) Clint Tredway Cynergy Systems | Consultant 706 7th St SE, Washington DC, 20003 W. http://www.cynergysystems.com E. [EMAIL

RE: [flexcoders] Re: File upload

2008-01-18 Thread Clint Tredway
No, you do not need 2 buttons, only one will be needed. In the selectHandler of the file call is where the upload actually happens. Here is the example in livedocs that should get you going. http://livedocs.adobe.com/flex/201/html/17_Networking_and_communications _173_6.html#118971 Clint

RE: [flexcoders] Flex 3 Beta 3 no syntax coloring or indenting

2007-12-20 Thread Clint Tredway
Mine is doing it as well. Clint Tredway Cynergy Systems | Consultant 706 7th St SE, Washington DC, 20003 W. http://www.cynergysystems.com E. [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Derrick Anderson Sent: Thursday, December 20, 2007 9:04 AM

[flexcoders] keeping a drawn line attached to 2 objects

2007-06-04 Thread Clint Tredway
Can anyone point me in the direction in drawing a line between to objects and then keeping that line attached to each object even during being dragged around the screen? Thanks -- I am not a diabetic, I have diabetes my blog - http://grumpee.instantspot.com/blog

Re: [flexcoders] AddChild problem

2007-06-01 Thread Clint Tredway
into a vertical stack. Canvas is better for "random' positioning. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Clint Tredway *Sent:* Friday, June 01, 2007 8:31 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] AddChild

[flexcoders] AddChild problem

2007-06-01 Thread Clint Tredway
I am not sure this as much a problem as I am probably doing something wrong. I am adding child components at runtime to a vbox. These new components can be dragged to a new position. This all works. The 'problem' is that when anytime a new child is added, all the child components move the top left

Re: [flexcoders] hyperlink image

2007-05-30 Thread Clint Tredway
you dont need to use a linkbutton, the image container has a click event you can use. On 5/30/07, Flexing... <[EMAIL PROTECTED]> wrote: Instead use LinkButton and specify your image as ICON of the LinkButton On May 31, 2007, at 12:51 AM, Rohan Pinto wrote: how to i hyperlink an image in fle

Re: {Disarmed} [flexcoders] Just getting started, hitting walls...

2007-05-30 Thread Clint Tredway
You can make your 'views' components and use a viewstack or other container to show that 'screen' or your can make each screen its own app and use the module system to pull each app into the main app as needed. On 5/30/07, Dave @ VitalPodcasts.com <[EMAIL PROTECTED]> wrote: I feel like its ba

Re: [flexcoders]How does Flex work on Mobile devices

2007-04-27 Thread Clint Tredway
none at this point as the player for devices is not able to run flex apps. On 4/27/07, dorkie dork from dorktown <[EMAIL PROTECTED]> wrote: My boss asked, "What options does Flex have for deploying to mobile devices?" -- I am not a diabetic, I have diabetes my blog - http://grumpee.ins

Re: [flexcoders] Getting started with CF and Flex

2007-04-19 Thread Clint Tredway
have a look at my blog http://grumpee.instantspot.com/blog/ On 4/19/07, hoffsm <[EMAIL PROTECTED]> wrote: I've been trying to get the coldfusion/flex communication to work on and off for about 6 months and I just can't get it to work. I can't figure out how to use the CFC's and I can't seem t

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-17 Thread Clint Tredway
IMO, web services should be the last option to use as a data transport. All the added soap 'tags' make it quite slow when large sets of data are passed back and forth. In all honesty, Adobe cant do anything about this since its the soap protocol that makes it slow. Since remoting and FDS both use

Re: [flexcoders] simple question backgroundColor

2007-04-13 Thread Clint Tredway
[0xFF,0x00] On 13 Apr 2007 13:16:29 -0700, Patrick Lemiuex <[EMAIL PROTECTED]> wrote: I am trying to change the backGroundColor of my app... how do i put in an array for a gradient, i simply forget the syntax? Sorry for the dumb question. THanks, Patrick -- I am not a diabetic

Re: [flexcoders] Changing a string to reference an ID of an Object

2007-04-11 Thread Clint Tredway
set the result to a bindable var and then when you create the RTE, set the htmlText property to that var. On 11 Apr 2007 12:02:01 -0700, Nate Pearson <[EMAIL PROTECTED]> wrote: I am calling a webservice to get text for an item(RichTextEditor) that I am adding dynamically. If i set the ID of

Re: [flexcoders] Re: FlexBuilder Keyboard Not Responsive on the Mac

2007-04-04 Thread Clint Tredway
sure does, unfortunately On 04 Apr 2007 08:29:54 -0700, Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Tuesday 03 Apr 2007, Clint Tredway wrote: > > I have a toshiba core 2 duo with 2gb of ram and mine does the same thing.. > > With adjusted eclipse.ini settings ? > > -

Re: [flexcoders] Can flex write to local file system

2007-04-04 Thread Clint Tredway
No, but Apollo can do that. You can write an Apollo app that is flex based and run it on the desktop. On 04 Apr 2007 05:58:05 -0700, carltondickson <[EMAIL PROTECTED]> wrote: Hi guys, I under stand Flex is for RIA but if it's just an embedded swf file within HTML can it not just be used for

Re: [flexcoders] Re: FlexBuilder Keyboard Not Responsive on the Mac

2007-04-03 Thread Clint Tredway
I have a toshiba core 2 duo with 2gb of ram and mine does the same thing.. On 03 Apr 2007 12:42:53 -0700, Tony Obermeit <[EMAIL PROTECTED]> wrote: I've got a 1.5ghz G4 powerbook with 1.5gb RAM and the first application I've used that made me think this machine is slow and needs upgrading is f

Re: [flexcoders] How to open windows with the background greyed out

2007-04-03 Thread Clint Tredway
when using the popUp manager, set the popUp to be modal and that will do the same as an Alert box. var helpWindow:TitleWindow = TitleWindow(PopUpManager.createPopUp(this, what, true)); in the above code, if you set the last param to true, it will be modal and that will do what you want. On 03 Ap

Re: [flexcoders] Warning/Error Hints

2007-03-30 Thread Clint Tredway
I am going to assume that you are talking about an input form(although you may not be), you can use the built in validators to validate the form elements as the user navigates the form. On 30 Mar 2007 06:53:43 -0700, André Rodrigues Pena <[EMAIL PROTECTED]> wrote: Hi all, I'm developing an ap

Re: [flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Clint Tredway
> > > > > > ________ > > From: flexcoders@yahoogroups.com > [mailto:flexcoders@yahoogroups.com ] On Behalf Of Clint Tredway > Sent: Friday, March 30, 2007 11:13 AM > To: flexcoders@yahoogroups.com > Subject: Re: [flexcoders] Re: Make a component

Re: [flexcoders] Re: Make a component 'modal'

2007-03-30 Thread Clint Tredway
grey out and disable mouse interaction with everything on the stage but the control passed in. Am I hoping for too much? --- In flexcoders@yahoogroups.com , "Clint Tredway" <[EMAIL PROTECTED]> wrote: > > without seeing how you setup your code, here is my suggestion. > > Set t

Re: [flexcoders] Make a component 'modal'

2007-03-30 Thread Clint Tredway
without seeing how you setup your code, here is my suggestion. Set the parent containers of the other 'components' enabled attribute to a bindable var or even a state, and then when that specific button is clicked, set the var to false or in the case of using states, just change the state. Either

Re: [flexcoders] Problem with flash.Utils.Timer

2007-03-30 Thread Clint Tredway
I think its not working right because you have set the continue param to 0. What happens if you set this to some other value? On 3/30/07, kumaran_sb <[EMAIL PROTECTED]> wrote: Hello flexcoders this is a related question to my previous one. I'm having trouble with the flash.utils.Timer which

Re: [flexcoders] Connect and Retrieve from MS SQL Server 2005

2007-03-28 Thread Clint Tredway
you can use just about any server side language (ColdFusion, PHP, ASP, .NET, etc) to connect to SQL Server On 3/28/07, hugocorept <[EMAIL PROTECTED]> wrote: Hello all, In your opnion, witch is the simple/best way to connect a MSSQLServer 2005. I prefer java-less.. Thank you , Very Much!

Re: [flexcoders] Question

2007-03-28 Thread Clint Tredway
there is a flex jobs list that you can post it to. http://tech.groups.yahoo.com/group/flexjobs/ On 3/28/07, midwest_consulting_group <[EMAIL PROTECTED]> wrote: Dear Flex Mamabers, I am a recruiter currently conducting a search for a Flex developer position in the DFW area. Without breaking a

Re: [flexcoders] Re: Flex access to cookies

2007-03-28 Thread Clint Tredway
yer"; ); Then reference these parameter in Flex via the Application class: import mx.core.Application; Application.application.parameters.username; Application.application.parameters.pwd; --- In flexcoders@yahoogroups.com , Tony Obermeit <[EMAIL PROTECTED]> wrote: > > Thanks

Re: [flexcoders] wanted to share...

2007-03-28 Thread Clint Tredway
ues. I guess this does work on the mac. I have no idea what was wrong with he other developer's version of ColdFusion, but this new one works great. Now I can have flex & ColdFusion communicate`-` Just wanted to thank you one more time! John - Original Message ---- From: Clint

[flexcoders] wanted to share...

2007-03-27 Thread Clint Tredway
I posted this on the component list, but I know not all of you are on that list. I made a simple Count Down Timer component and I am sharing it. http://www.clinttredway.com/components/CountDownTimer.zip Feel free to do whatever you wish with it. -- http://indeegrumpee.spaces.live.com/

Re: [flexcoders] Flex access to cookies

2007-03-27 Thread Clint Tredway
pass in the cookie value thru the flashVars. On 3/27/07, Tony Obermeit <[EMAIL PROTECTED]> wrote: I need to access the cookies already created in the browser in order to determine if the user has been authenticated using oracle single sign on. 1. Which flash object / class do I use to access

Re: [flexcoders] List Control with checkbox items

2007-03-27 Thread Clint Tredway
here is a couple of ideas. (I didnt test these, but either 'should work') 1. have a function tied to the click event of the checkbox that adds that index to the selectedItems of the list control 2. when submitting the info, loop through the list and check to see if any check boxes are checked.

Re: [flexcoders] Flex Builder

2007-03-27 Thread Clint Tredway
ave been reading,and i think that I will be getting the plug in version. John - Original Message ---- From: Clint Tredway <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, March 27, 2007 3:23:16 AM Subject: Re: [flexcoders] Flex Builder What is the same is the f

Re: [flexcoders] Flex Builder

2007-03-27 Thread Clint Tredway
und this site: http://www.riapedia.com/2007/03/20/flex_builder_stand_alone_or_eclipse_plugin Just a few days ago, and so I guess I am not the only one thinking about it. I am excited as I finally have the money for flex builder, it is just a question about which one. John - Original Mess

Re: [flexcoders] Flex Builder

2007-03-27 Thread Clint Tredway
I use the plugin. The reason is I use CFEclipse and other plugins and as those mature they are needing the newer build of Eclipse. The standalone FB is an older version of Eclipse. On 3/27/07, John Barrett <[EMAIL PROTECTED]> wrote: Hi, I have a question. I am just about to get Flex Builder

Re: [flexcoders] Re: Flex coldfusion simple question

2007-03-27 Thread Clint Tredway
No problem John. I dont use a Mac so I am not aware of these issues ;) Dont hesitate to ask any questions.

Re: [flexcoders] weird ArrayCollection issue

2007-03-26 Thread Clint Tredway
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Clint Tredway *Sent:* Monday, March 26, 2007 8:40 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] weird ArrayCollection issue I have to arrayCollections that I am assigning the same data to. I am adding an item to

[flexcoders] weird ArrayCollection issue

2007-03-26 Thread Clint Tredway
I have to arrayCollections that I am assigning the same data to. I am adding an item to one of the collections but that item is getting set to both collections, wth?? code is here: newTestGroup = event.result as ArrayCollection; groups = event.result as ArrayCollection;

Re: [flexcoders] Re: Flex coldfusion simple question

2007-03-24 Thread Clint Tredway
Thanks, > John > > > > > - Original Message > From: Clint Tredway <[EMAIL PROTECTED] > > To: [EMAIL PROTECTED] ups.com > Sent: Friday, March 23, 2007 2:01:13 AM > Subject: Re: [flexcoders] Re: Flex coldfusion simple question > > > > > > > &

Re: [flexcoders] Re: Flex coldfusion simple question

2007-03-23 Thread Clint Tredway
on to ColdFusion" I have a screen shot of the error message here: http://johnbarrett.net/flex_error.jpg I am running ColdFusion 7.02 on the Mac. Any thoughts? Thanks, John - Original Message ---- From: Clint Tredway <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thurs

Re: [flexcoders] Live Cycle Data Services

2007-03-22 Thread Clint Tredway
thanks Matt, thats what I thought. On 22 Mar 2007 21:39:41 -0700, Matt Chotin <[EMAIL PROTECTED]> wrote: Nope, LCDS is strictly data, no media. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Clint Tredway *Sent:* Thursday,

[flexcoders] Live Cycle Data Services

2007-03-22 Thread Clint Tredway
I cannot find a definite answer on this, but does it support audio/video? I am trying to decide on the right technology for a project I am working on. I am using FMS right now, but its kinda a pain so I am looking at my options. thanks -- http://indeegrumpee.spaces.live.com/

Re: [flexcoders] flex remoting and query

2007-03-22 Thread Clint Tredway
return that query and bind it to an ArrayCollection in your AS. Then you can bind it to a grid or list, etc. On 3/22/07, Chad Gray <[EMAIL PROTECTED]> wrote: If in my CFC that I am connecting to with RemoteObject can I return a Query object to Flex? Here is an example cfc: SELECT JobName

Re: [flexcoders] flex remoting and query

2007-03-22 Thread Clint Tredway
return that query and bind it to an ArrayCollection in your AS. Then you can bind it to a grid or list, etc. On 3/22/07, Chad Gray <[EMAIL PROTECTED]> wrote: If in my CFC that I am connecting to with RemoteObject can I return a Query object to Flex? Here is an example cfc: SELECT JobName

Re: [flexcoders] Re: Flex coldfusion simple question

2007-03-22 Thread Clint Tredway
http://grumpee.instantspot.com/blog On 3/22/07, cardinalflexjeremy <[EMAIL PROTECTED]> wrote: Are there any code examples or tutorials on this? That is, any samples using coldfusion (not webservices or httpRequest) to access CFCs? thanks. --- In flexcoders@yahoogroups.com , Tom Chiverton <[

Re: [flexcoders] Flex coldfusion simple question

2007-03-22 Thread Clint Tredway
You can use FDS, Flash Remoting, HTTP Service, or web services. I posted a simple example on my blog showing how to use Flash Remoting. On 22 Mar 2007 09:47:41 -0700, cardinalflexjeremy <[EMAIL PROTECTED]> wrote: Simple question here for the group. If I want to make a flex app to tie to a Da

Re: [flexcoders] Re: flash remoting

2007-03-22 Thread Clint Tredway
Look at my example that I sent just a bit ago. You send objects to the cfc when you call a method of the RemoteObject tag. On 3/22/07, rchadgray <[EMAIL PROTECTED]> wrote: Another question. When using the web service tag i was able to specify with operation and request tags what function i

Re: [flexcoders] Re: flash remoting

2007-03-22 Thread Clint Tredway
Thats not how remoting works. By sending an object to the server, the gateway translates it into a or many structures that is in the argument scope of CF. to pass a string to a CFC do this: public function sendToCFC():void{ var cfObj:Object = {input:source.text}; myFlashRemote.echoString

Re: [flexcoders] Re: flash remoting

2007-03-21 Thread Clint Tredway
Ya, you would need to use the endpoint, not the source to point it to another url. On 21 Mar 2007 13:20:04 -0700, Peter Farland <[EMAIL PROTECTED]> wrote: Hmm, really? I don't think that is correct. The source attribute is only used by the gateway to locate a CFC using a logical mapping to

Re: [flexcoders] flash remoting

2007-03-21 Thread Clint Tredway
Ok, I did a blog on this. The example is very simple. http://grumpee.instantspot.com/blog/ I also have a zip file I can email of the code. I couldn't attach it to my blog. On 3/21/07, Clint Tredway <[EMAIL PROTECTED]> wrote: the share should work. Remoting works on the same por

Re: [flexcoders] flash remoting

2007-03-21 Thread Clint Tredway
the share should work. Remoting works on the same port as the cf server is on. So if CF is tied to IIS and IIS is running on port 80, then so is CF, so is Remoting. You can change the URL to point to your dev server. I run CF locally then move my files to a server when its ready to test. I will

Re: [flexcoders] Re: first impressions

2007-03-21 Thread Clint Tredway
ert my below test into a Flash Remoting service instead of a web service. Will i need to start a new project in Eclipse and select the flash remoting option? Or can i take my current project and just change the way i connect to the service? Thanks! Chad --- In flexcoders@yahoogroups.com , "Cl

Re: [flexcoders] first impressions

2007-03-21 Thread Clint Tredway
now. I have a relaxed school schedule this term, and I thought that I would try again. I was wondering if you could offer a flex newbie some thought on this. Thanks so much, John - Original Message ---- From: Clint Tredway <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesd

Re: [flexcoders] first impressions

2007-03-21 Thread Clint Tredway
pes. I have to build the CFC first, but if I get stuck I will post here on the list. Thanks! Chad -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Clint Tredway *Sent:* Tuesday, March 20, 2007 10:11 PM *To:* flexcoders@

Re: [flexcoders] first impressions

2007-03-20 Thread Clint Tredway
Honestly, to get started you dont need to know OO. You need to understand how Flex works. Its event based. Your code needs to respond to events that are triggered, ie button clicks, results being returned from the server, etc. I would be happy to help you get going as I use Flex/CF/SQL Server eve

Re: [flexcoders] Re: Trace Output Stopped Working

2007-03-16 Thread Clint Tredway
How are you trying to view the trace outputs? On 3/16/07, Paul Whitelock <[EMAIL PROTECTED]> wrote: Just tried re-installing the Flash Player Debug version and no luck :-( Paul --- In flexcoders@yahoogroups.com , "Paul Whitelock" <[EMAIL PROTECTED]> wrote: > > No, I'm on a PC. Flex Builder

Re: [flexcoders] Re: "Arrow-down/up" event in non-editable DataGrid?

2007-03-14 Thread Clint Tredway
no problem On 3/14/07, Peter Demling <[EMAIL PROTECTED]> wrote: Worked perfectly (I was looking closely at the "item*" events and missed this one). Thanks very much! -Peter Demling --- In flexcoders@yahoogroups.com , "Clint Tredway" <[EMAIL PROTECTED]> wrote

Re: [flexcoders] "Arrow-down/up" event in non-editable DataGrid?

2007-03-14 Thread Clint Tredway
use the change event to do what you want. On 14 Mar 2007 07:18:52 -0700, Peter Demling <[EMAIL PROTECTED]> wrote: First-time hello Flexcoders, I have a non-editable DataGrid, and as the user arrows-down through the rows, I want to handle the event and do some stuff. The "itemClick" event onl

Re: [flexcoders] How to bind a SharedObject to a dataprovider

2007-03-14 Thread Clint Tredway
without seeing your code, I would say you need to convert the SO into an ArrayCollection then bind that to your grid. But again, I say this without seeing your code. On 3/14/07, Stanisław Fiedor <[EMAIL PROTECTED]> wrote: Hi! On the server side I've got a SO object which is a userlist - its

Re: [flexcoders] Re: Combobox will not display (only) one item

2007-03-14 Thread Clint Tredway
the list controls are very picky when it comes to ArrayCollections. In my code, I check to see if the length is 1 or gt than 1 and then set the dataprovider accordingly. To me, this is very much a PITA as now I have to add additional checks to make sure my data displays correctly. FYI, I do not u

Re: [flexcoders] Re: Dynamically creating item IDs

2007-03-01 Thread Clint Tredway
what do you mean by 'id' On 3/1/07, thetexaspsycho2003 <[EMAIL PROTECTED]> wrote: --- In flexcoders@yahoogroups.com , "thetexaspsycho2003" <[EMAIL PROTECTED]> wrote: > > Is there a way to dynamically create an item's ID? For example pulling > it in from a XML file? > I guess from the lack of

Re: [flexcoders] changing states from within a component

2007-02-28 Thread Clint Tredway
try parentDocument.currentState = 'home' On 2/27/07, stephen50232 <[EMAIL PROTECTED]> wrote: Hi, I'm working on an application, which is component based. One of my components is a Login screen, in which the user enters the username and password, these details are passed to a ColdFusion CFC a

Re: [flexcoders] Time Based State Transitions

2007-02-27 Thread Clint Tredway
you can use setInterval or setTimeout On 2/26/07, nextadvantage <[EMAIL PROTECTED]> wrote: How would I go about changing view states say every 10 secs... with a 1 sec fade? -- http://indeegrumpee.spaces.live.com/

Re: [flexcoders] Just curious, A big development team or individual developers

2007-02-23 Thread Clint Tredway
right now, just me, in a couple months it will be TEAM. On 2/23/07, boy_trike <[EMAIL PROTECTED]> wrote: I wonder how many people are working on TEAM to develop their flex applications (and how many are 1 or 2 men (whoops I mean PEOPLE) developers. Please discount the Graphic artists, HTML co

Re: [flexcoders] New to Flex

2007-02-23 Thread Clint Tredway
the mxml code is here: com.cfgenerated.controllers. look in the cfgenerated directory for more directories as well. On 2/23/07, Robert Shaw <[EMAIL PROTECTED]> wrote: OK I guess I am an idiot. My boss finally decided for us to adapt to Adobe products starting with Flex. I installed the Flex

Re: [flexcoders] Re: Using data in an Array Collection

2007-02-13 Thread Clint Tredway
lly to the row. As I said before I am very new to all of this and it is a very steep learning curve at the moment. --- In flexcoders@yahoogroups.com , "Clint Tredway" <[EMAIL PROTECTED]> wrote: > > the item param is row data, what is in that row of the array collection

Re: [flexcoders] Re: Using data in an Array Collection

2007-02-13 Thread Clint Tredway
below is doing please? checkData(item:Object,column:Object):String Is it converting the parsed XML data in my ArrayCollection to a String before searching the converted string for the number 2? Thanks once again. --- In flexcoders@yahoogroups.com , "Clint Tredway" <[EMAIL PROTECTE

Re: [flexcoders] Problem with changing viewstack programatically

2007-02-12 Thread Clint Tredway
can you post your code so we can help On 2/12/07, boy_trike <[EMAIL PROTECTED]> wrote: I have a button in a component in a viewstack that switches view to another component in the viewstack with the code "parentApplication.myViewStack.selectedIndex = 0". While this works ok, I have 2 problems

Re: [flexcoders] Re: Using data in an Array Collection

2007-02-12 Thread Clint Tredway
e! --- In flexcoders@yahoogroups.com , "Clint Tredway" <[EMAIL PROTECTED]> wrote: > > use a labelFunction to check the value and then do something: > > private function checkData(item:Object,column:Object):String{ > var retString:String; > if(item['column']

Re: [flexcoders] Using data in an Array Collection

2007-02-12 Thread Clint Tredway
use a labelFunction to check the value and then do something: private function checkData(item:Object,column:Object):String{ var retString:String; if(item['column'] == 2){ retString="Return String"; } else { retString = "Alt Return string"; } } then set this as the la

Re: [flexcoders] DG.dataProvider.length returns 0 at creationComplete time

2007-02-12 Thread Clint Tredway
have you tried using the initialize event? On 2/12/07, Paul Barbieux <[EMAIL PROTECTED]> wrote: Hello; I would like that the number of lines in my dataGrid is equal to the number of data from my dataProvider. I have found a part of solution by searching in this forum, and the code is simple

Re: [flexcoders] Re: Datagrid update woes(blank rows)

2007-02-11 Thread Clint Tredway
myGrid.dataProvider.length On 2/11/07, munene_uk <[EMAIL PROTECTED]> wrote: how do i find out the index of the last item in order to use addItemAt(evt2.result,index); (if that makes sense!!) --- In flexcoders@yahoogroups.com , "Clint Tredway" <[EMAIL PROTECTED]>

Re: [flexcoders] Re: Datagrid update woes(blank rows)

2007-02-11 Thread Clint Tredway
try what I suggested in your addItem On 2/11/07, munene_uk <[EMAIL PROTECTED]> wrote: this is what i got *[SWF] F:\Adobe\Flex Builder 2\Projects\bin\Savo_Course_Manager2-debug.swf- 1,103,465 bytes after decompression warning: unable to bind to property 'SURNAME' on class 'Object' (class is

Re: [flexcoders] Re: Datagrid update woes(blank rows)

2007-02-11 Thread Clint Tredway
trace the evt.result using the ObjectUtil.toString() (note: you will need to import mx.utils.ObjectUtil to do this) and lets see what is coming back from the server. most likely the reason you are getting a blank row is that what is coming back does not match what the grid is expecting. On 2/11/0

Re: [flexcoders] Datagrid update woes(blank rows)

2007-02-11 Thread Clint Tredway
you need to add an Item which is an object to the dataProvider of the grid. If you show us what you are doing, we can help better. What I have done is myGrid_dg.dataProvider.addItemAt(item,index) On 2/11/07, munene_uk <[EMAIL PROTECTED]> wrote: im tryin to successfully update a datagrid to

Re: [flexcoders] Re: Move from Flex Builder to command line/SDK -- how?

2007-02-10 Thread Clint Tredway
ated way to start this? TIA Mike --- In flexcoders@yahoogroups.com , "Clint Tredway" <[EMAIL PROTECTED]> wrote: > > You can use the mxmlc compiler and compile your apps OR you can use > FlashDevelop which now is good for doing Flex 2 and AS3 coding. I have > gotten

Re: [flexcoders] Move from Flex Builder to command line/SDK -- how?

2007-02-10 Thread Clint Tredway
You can use the mxmlc compiler and compile your apps OR you can use FlashDevelop which now is good for doing Flex 2 and AS3 coding. I have gotten this to work well and I like it. Go to flashdevelop.org as they have info on how to set this up. On 2/10/07, Mike Crowe <[EMAIL PROTECTED]> wrote:

Re: [flexcoders] Re: filterFunction

2007-02-09 Thread Clint Tredway
if you want, I can post how I iterate through a collection which should get you started. On 2/9/07, Mark <[EMAIL PROTECTED]> wrote: I was just about to post the same question before I saw this and thought I'd ride this one out to see where it goes. I've found a bunch of examples on how to fi

Re: [flexcoders] Re: FormItem adds extra space on the left . . .

2007-02-09 Thread Clint Tredway
@yahoogroups.com , "Clint Tredway" <[EMAIL PROTECTED]> wrote: > > Dont use the form or formItem tags, use a grid to layout your form. > -- http://indeegrumpee.spaces.live.com/

Re: [flexcoders] FormItem adds extra space on the left . . .

2007-02-09 Thread Clint Tredway
Dont use the form or formItem tags, use a grid to layout your form. On 2/9/07, crumpelfungus <[EMAIL PROTECTED]> wrote: *Does anyone know how to control the space within a FormItem?* If I have a FormItem and then add a RadioButton (or any other control for that matter), I always get a bunch

Re: [flexcoders] filterFunction

2007-02-09 Thread Clint Tredway
I have what I call filter functions that will find items and remove them or if not found add them.. not sure what you are meaning by filter... On 2/9/07, kumarpal jain <[EMAIL PROTECTED]> wrote: Hi All, Can some one help me in filterFunction method of listcollectionView or Array Collection .

  1   2   3   >