[flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread edeustace
Hi, The most recent versions of Cairngorm works perfectly with AS3/flex 2 projects. be sure to download version 2 or 2.1. http://labs.adobe.com/wiki/index.php/Cairngorm later ed --- In flexcoders@yahoogroups.com, Webdevotion [EMAIL PROTECTED] wrote: Hello Flexcoders, Is it allright to

[flexcoders] Re: Flex 1.5 AMF Error:... (not of the binary AMF protocol)

2006-08-21 Thread edeustace
--- In flexcoders@yahoogroups.com, Brian Deitte [EMAIL PROTECTED] wrote: Hi Ed, I've never heard of this problem before. All requests that come from RemoteObject should be of the AMF protocol of course... and there should be no problem with creating a request of that size, as I've create

[flexcoders] Flex 1.5 AMF Error:... (not of the binary AMF protocol)

2006-08-18 Thread edeustace
Hello all, I've been making some modifications to a flex 1.5 application, that was last modified in January of this year and was in good working order. the application is now a subset of a larger web application ( using wicket,spring,hibernate).On returning to it some remote object requests are

[flexcoders] Re: Flex 1.5 AMF Error:... (not of the binary AMF protocol)

2006-08-18 Thread edeustace
hi all, further to my post, i think i have tracked down the problem to our server (jetty 6.0.0beta1), will post more once i've got it sorted. ed -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: Dynamically create multiple text input rows

2005-12-15 Thread edeustace
for creating the input boxes use createChild. for collecting data from the rows i'd create an array index for each child created and then collect the information for each item in the array.. see code below... hope this helps ed --- InputBoxes.mxml -- ?xml version=1.0

[flexcoders] Re: html link in text

2005-12-14 Thread edeustace
--- In flexcoders@yahoogroups.com, Nithya R [EMAIL PROTECTED] wrote: hi, i want to have a text with a html link in between.. like click HERE for more details .. in this sentence HERE alone should be a link... how to do this thanks, nithya Send instant messages to

[flexcoders] Re: addTreeNode Parameters question

2005-11-30 Thread edeustace
hi, use the dataProvider for that tree var myNewNode = { label: label, url: http://...;, etc: ...} myTree.dataProvider.addTreeNode(myNewNode, data); yours, eddy --- In flexcoders@yahoogroups.com, augie [EMAIL PROTECTED] wrote: Hello, Can someone point me in the direction of how I would

[flexcoders] Flow.as from Re: div like behaviour?

2005-11-03 Thread edeustace
hi, thanks for the response, i suppose i could do something like that, although after a quick test it would mean deferring a function call using getTime(), so a workaround. I was hoping that there is something more straightforward i could do within the component. i suspect i am missing something

[flexcoders] Flow.as from Re: div like behaviour?

2005-11-02 Thread edeustace
hello, i have been using flow.as (see below), and it works great. however there is something that i'd like to fix. firstly i have bound a showEffect and hideEffect to it which increases the width over a time period: mx:Effect mx:Resize name=shrink widthTo=0 duration=300 /

[flexcoders] extended tree class with improved drag and drop feedback available

2005-07-19 Thread edeustace
hello, i was working on a project recently where the client wanted the drag and drop behaviour of the tree to be improved as the tree they were using only had folders in it and they felt the black line wasn't very intuitive. so i extended the tree class for them, and now i've extended it again to