Re: [flexcoders] Facebook Application

2010-06-09 Thread Alan Rother
, -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

[flexcoders] Adobe Flex 4 / Coldfusion 9 Pre-Release Tour hits Phoenix This Thursday (6/25/09)

2009-06-23 Thread Alan Rother
. Meeting Details: What: AZCFUG - Ryan Stewart, Adobe Platform Evangelist When: 6/25/2009 6:30 PM Where: UAT in Tempe, AZ http://maps.google.com/maps?q=2625+W.+Baseline+Road%2C+Tempe%2C+AZ+85283 -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group

Re: [flexcoders]Importing a project into Flash Builder 4 from Flex Builder 3

2009-06-02 Thread Alan Rother
If you are planning on doing this, I would make copies of your FB3 code and use these to import into FB4 (Don't use your originals). That should alleviate the risk. =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Is this list declining?

2009-06-01 Thread Alan Rother
user group has been around for 10 years now and there is a lot of apathy amongst even the most doe hard members. They all show up when a new version gets released. I think we can expect the traffic on the list to pick back up after Gumbo gets released. =] -- Alan Rother Adobe Certified

Re: [flexcoders] Re: drag drop tree to tree onto node, not between nodes [1 Attachment]

2009-05-10 Thread Alan Rother
into a branch and add people reporting to him/her. Cannot drop beneath as that would be a legal peer. TIA, Mic. -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

[flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Alan Rother
AS. private function openWindow():void { win = view.UserForm(PopUpManager.createPopUp(this, UserForm, false)); PopUpManager.centerPopUp(win); win.addEventListener(UserEvents.USER_SUBMIT, onSubmit); } -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User

Re: [flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Alan Rother
(PopUpManager.createPopUp(this, UserForm, false)); PopUpManager.centerPopUp(win); win.addEventListener(UserEvents.USER_SUBMIT, onSubmit); } ]] /mx:Script mx:DataGrid dataProvider={users}/ view:UserForm userSubmit=onSubmit(event)/ mx:Button label=click me click=openWindow()/ /mx:Application -- Alan

Re: [flexcoders] Newbie question: Custom Components and Custom Events

2009-05-04 Thread Alan Rother
); var user:User = new User(); user.fname = fname.text; user.lname = lname.text; user.email = email.text; event.user = user; dispatchEvent(event); } ]] /mx:Script -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Re: Newbie question: Custom Components and Custom Events

2009-05-04 Thread Alan Rother
A!!! Bingo, thanks everyone... Coming from the a very linear programming background the OO stuff is getting me... =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Is it better easier to learn Flex3 AS3 via a book or videos?

2009-04-14 Thread Alan Rother
want to get out of Flex. HTH =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

[flexcoders] Flex 3/ LCDS / Coldfusion RTMP Issues

2009-03-30 Thread Alan Rother
this on my local machine (WinXP SP3, IIS, Coldfusion 8.01) I'm kind of stuck, is there some additional config I need to alter? Are there log files I can check to see if the RTMP is throwing and error? =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User

Re: [flexcoders] Flex 3/ LCDS / Coldfusion RTMP Issues

2009-03-30 Thread Alan Rother
Hmm... scratch that... apparently sending this email made it work... I launched it again and this time, consumer.channelSet told me it was using cf-rtmp Magic... =\ -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

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

2009-03-26 Thread Alan Rother
about $500 to spend... - Depending on your relationship with this client, you might just want to ask what they have available to spend on the project upfront. Then go back and determine if it's enough for you to get it done. HTH =] -- Alan Rother Adobe Certified Advanced

Re: [flexcoders] How much actionscript 3 do you need to know in order to develop in Flex 3

2009-03-23 Thread Alan Rother
As another total newbie to Flex and AS, Flex is a great way to learn AS. You can totally build a Flex app using nothing but MXML, it'll be limited, but you can do it. Once you get into and start following the tutorials out there you'll pick up the AS pretty quickly. =] -- Alan Rother Adobe

Re: [flexcoders] Flex 3 Tree - Moving Nodes

2009-03-11 Thread Alan Rother
... =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Flex 3 Tree - Moving Nodes

2009-03-11 Thread Alan Rother
BINGO! Thank you everyone! =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

[flexcoders] Flex 3 Tree - Moving Nodes

2009-03-09 Thread Alan Rother
, re-ordering within a section or moving a page to another section. This ExtJS example is almost exactly what I want my Flex tree to do http://www.extjs.com/deploy/dev/examples/tree/reorder.html Except I need to treat every item on the tree as a folder. =] -- Alan Rother Adobe Certified

Re: [flexcoders] Flex 3 Tree - Moving Nodes

2009-03-09 Thread Alan Rother
don't want to do it in Ext... =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Flex 3 Tree - Moving Nodes

2009-03-09 Thread Alan Rother
but empty folders have a middle drop zone for dropping “into”. Alex Harui Flex SDK Developer Adobe Systems Inc. http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Alan Rother *Sent:* Monday

Re: [flexcoders] Flex 3 Tree - Moving Nodes

2009-03-09 Thread Alan Rother
Thanks Jim, Thats not exactly what I was looking for, but it's a great example of how to use some of the Tree components, which I've been struggling with... =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Who have YOU used for outsourcing mid to large Flex/CF projects?

2009-02-26 Thread Alan Rother
Three words John C Bland http://www.johncblandii.com/ He's a friggin Flash / Flex / CF / .net genius. Also a former Flash Platform User Group Manager here in Phoenix and now an Adobe Community Expert. My company has used him many times on big important projects. =] -- Alan Rother Adobe

[flexcoders] - Tree Component Styling issue

2008-12-23 Thread Alan Rother
with it (active, locked, publishing, etc...) Any one found a way to handle it ? =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] - Tree Component Styling issue

2008-12-23 Thread Alan Rother
== Whatever) { return pdfIcon; } return docIcon; } =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

[flexcoders] Hslider skin

2008-11-10 Thread Alan Rother
to make it work... Sorry, I just don't know where to start =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] remover water mark from Trial version

2008-07-02 Thread Alan Rother
flex 2 but want to use a feature of flex 3 for a presentation. -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] remover water mark from Trial version

2008-07-02 Thread Alan Rother
But don't buy just any version. The Standard version doesn't include charting components, so you have to buy the $699 Professional version. Yes, good point, thank you. I did forget to mention that. -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion

Re: [flexcoders] Re: Web conferencing with Flex

2008-02-21 Thread Alan Rother
by the same people who built Flex and LCDS. How about a positive response with alternative suggestions? -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Web conferencing with Flex

2008-02-20 Thread Alan Rother
is a free, scaled down version of Connect http://labs.adobe.com/technologies/brio/ -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Re: Flex is becoming unviable

2007-10-22 Thread Alan Rother
. That alone makes me feel good about using Flex. =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

Re: [flexcoders] Creating a Video Player in Flex

2007-02-26 Thread Alan Rother
Awesome Thank you. I had searched the archives but didn't find this one. =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer

[flexcoders] Creating a Video Player in Flex

2007-02-23 Thread Alan Rother
and pause, but I cannot find any help on how to bind the stream to a control so I can move the playhead forward and back. Volume as well... Does anyone have a simple player built in Flex they'd be willing to share so I can see how it's done correctly? -- Alan Rother Adobe Certified Advanced ColdFusion

Re: [flexcoders] Adding a row at bottom in datagrid with total of all other rows

2007-01-11 Thread Alan Rother
total of the numeric field above it -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer

Re: [flexcoders] integrating ASP JSP with Flex

2006-08-09 Thread Alan Rother
Sure, Scrap JSP and ASP and use Cold Fusion. Flex 2 has native access to data created by it.-- Alan RotherMacromedia Certified Advanced ColdFusion MX 7 Developer __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: