[flexcoders] Flex courses

2008-09-03 Thread Giles Roadnight
Hi All My partner who has been a tester for 5 years wants to re-train in Flex. She has done a post grad IT course in which she learnt OOD and C++ / Visual Basic. Can anyone recommend some good courses in the London area which she can take to get her started? Thanks Giles Roadnight http

[flexcoders] Referring to external assets from within Flash swf

2008-05-31 Thread Giles Roadnight
be the swf folder? Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Stopping a swf file playing

2008-05-29 Thread Giles Roadnight
flash.display::MovieClip frame: 1 : 1 Introduction_fla::b2MC_6 frame: 1 : 1 flash.display::MovieClip frame: 1 : 1 flash.display::MovieClip frame: 1 : 1 How can I stop this completly? Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Measure and UpdateDisplayList called continuously

2008-05-20 Thread Giles Roadnight
it works fine. _label.x and _label.y are both set to 0 in the above case. -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Listening for global keyboard events

2008-05-20 Thread Giles Roadnight
the focus to the stage? Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Buggy tree control

2008-05-19 Thread Giles Roadnight
for these issues but have not been able to replicate it in a cut down version. I may have another go at this later if I have time. Has anyone else had trouble with the tree component? Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Anti Aliasing Flex Components

2008-05-16 Thread Giles Roadnight
Hi All I am building a project in which we will most likely be using a lot of components at an angle. At small angles (like 5 degrees) the edges of these components look VERY blocky: http://giles.roadnight.name/RotationTest/RotationTest.html Is there any way round this? Thanks -- Giles

Re: [flexcoders] Re: Calling static function on Class instance

2008-05-15 Thread Giles Roadnight
Going back to my project the [functionName] does not work still. the class reference points to a class that extends a base class. The static function is in the base class. Is that why it doesn't work? Thanks On Thu, May 15, 2008 at 8:24 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Thanks

Re: [flexcoders] Re: Calling static function on Class instance

2008-05-14 Thread Giles Roadnight
be c.Roadnight or c[RoadNight] -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles Roadnight *Sent:* Tuesday, May 13, 2008 8:44 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Re: Calling static function on Class instance

[flexcoders] Binding to xml nodes

2008-05-14 Thread Giles Roadnight
does not work in this case. Shoudl I make the model listen (how?) for an xml updates and then fire the event to signify that the property has been updated? Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] AdvancedDataGrid DefaultDataDescriptor

2008-05-14 Thread Giles Roadnight
class and in there you can only set 1 value for the children property so I can't list the node types I want expandable. Thanks -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Binding to xml nodes

2008-05-14 Thread Giles Roadnight
) -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles Roadnight *Sent:* Wednesday, May 14, 2008 1:16 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Binding to xml nodes HI All I have an xml object in my model

[flexcoders] Calling static function on Class instance

2008-05-13 Thread Giles Roadnight
a static function on the Template. When I have a Class object is there anyway of calling a static function on that class without creating an instance of the class? Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Re: Calling static function on Class instance

2008-05-13 Thread Giles Roadnight
Along the same lines - how do I get the class name from a Class object. If I do toString() I get [class HeaderImage1]. Do I just have to extract the string from that? Thanks again Giles On Tue, May 13, 2008 at 4:21 PM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I have a class

[flexcoders] Webservice / web proxy clarification

2008-04-30 Thread Giles Roadnight
need all this generated code? What's the advantage. Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] SOT: BlazeDS, J2EE, ColdFusion, JBoss

2008-04-25 Thread Giles Roadnight
or does the JBoss tomcat just get overwritten? Any advice much appreciated. Thanks -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] SOT: BlazeDS, J2EE, ColdFusion, JBoss

2008-04-25 Thread Giles Roadnight
of this. While BlazeDS comes with a turnkey Tomcat install, it is relatively simple to install BlazeDS on an existing Tomcat install. I did this about a month ago - I don't remember the details - I just read the instructions and it was painless. On Fri, Apr 25, 2008 at 5:15 AM, Giles Roadnight

[flexcoders] OT: Possible recruiting scam??

2008-04-23 Thread Giles Roadnight
in the US I think I'm going to leave it. With the exchange rate the way it is it woudl be very expensive for them to match my rate in the UK. Thanks -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] OT: Possible recruiting scam??

2008-04-23 Thread Giles Roadnight
Flex work for us bot posting comments on a bunch of blogs. It has an invalid gmail address as the poster. I wonder if this is the same company? I blocked this IP address from posting on The Flex Show and my personal blog. Giles Roadnight wrote: Hi All Just wanted some feedback

[flexcoders] Re: Using flexUnit and addAsync doesn't work

2008-04-11 Thread Giles Roadnight
was using addAsync. I have now added a parameter of testClassB: parentTest:TestCase and when I use addAsync in testclassB I use parentTest.addAsync. It now all works as expected. Giles On Wed, Apr 9, 2008 at 1:49 PM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I'm using flexUnit to test code

[flexcoders] Google App Engine

2008-04-08 Thread Giles Roadnight
can replace my server with App Engine and save some cash! I think I'll wait until they support some other languages though - Java for example which shouldn't take too long. (CF would be nice but will probably have to wait a while!). Anyone else excited by this? -- Giles Roadnight http

Re: [flexcoders] General list consensus using 'this' when referencing local vars

2008-04-08 Thread Giles Roadnight
= value; // versus: testVar = value; } } } Thank you all so much in advance, for any help you can offer regarding this topic. Mike -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Flex 3 Export Source Bug?

2008-03-14 Thread Giles Roadnight
Hi All I have uploaded a project here with source code here: http://giles.roadnight.name/Carousel/srcview/index.html All the source code is there ok but when you download the zip there are no mxml / as files in there. I can't remember if I built this with Flex 3 Beta or the release version.

Re: [flexcoders] Export To Outlook. in flex

2008-03-14 Thread Giles Roadnight
=Ahu06i62sR8HDtDypao8Wcj9tAcJ -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Filter function Sort of working

2008-03-12 Thread Giles Roadnight
at Nabble.com. -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Measure Twice... upload once.

2008-03-12 Thread Giles Roadnight
-- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Tree SelectedItem

2008-03-12 Thread Giles Roadnight
select the item after i drop it on tree2? -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Filter function Sort of working

2008-03-12 Thread Giles Roadnight
; if(item.FirstName != null !item.FirstName.match(pattern))return false; ect return true; } That what you are looking for? -- Giles Roadnight http://giles.roadnight.name -- View this message in context: http://www.nabble.com/Filter-function-%22Sort%22-of-working-tp15999711p16000140.html

[flexcoders] Odd keyboard behaviour for TextArea - bug?

2008-03-06 Thread Giles Roadnight
We need to make our app accessible so all buttons / text ect must be accessible by the keyboard. We have a text area in our app and the behaviour for keyboard users is a bit odd. You can tab to the text area ok but then if you use Page Down or spacebar to scroll the text field it goes to the

[flexcoders] Odd keyboard behaviour for TextArea - bug?

2008-03-06 Thread Giles Roadnight
Apologies if this comes through twice, I don't think it worked the first time. We need to make our app accessible so all buttons / text ect must be accessible by the keyboard. We have a text area in our app and the behaviour for keyboard users is a bit odd. You can tab to the text area ok but

Re: [flexcoders] Re: Carousel component - help yourself

2008-02-27 Thread Giles Roadnight
it around the carousel once with either button it stops and the only way to be able to use either button is to select an image, (effectively reseting the _selectedindex variable). DL --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Giles Roadnight [EMAIL PROTECTED] wrote

[flexcoders] Flex and Coldfusion Cached queries

2008-02-24 Thread Giles Roadnight
Hi All I realise that this could well be the wrong list to ask this question on but here I go anyway. My site uses cached queries to speed it up but all flex calls pass in a cachedWithin variable of 0 so it always gets the latest data. Whenever it updates the data it re-loads it with 0 cache.

[flexcoders] Carousel component - help yourself

2008-02-22 Thread Giles Roadnight
of it please do. I'd appreciate it if you could let me know if you do use it. Comments and feedback appreciated. -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] measure(), measuredMinWidth and unscaledWidth

2008-02-21 Thread Giles Roadnight
the measure() sets measuredHeight to 200 every time? Sometimes on the first call, the image or TextField can have the wrong height. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles Roadnight *Sent:* Wednesday, February 20, 2008

[flexcoders] measure(), measuredMinWidth and unscaledWidth

2008-02-20 Thread Giles Roadnight
. Any ideas? Thanks -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Tabbing to links in htmlText

2008-02-19 Thread Giles Roadnight
). If that is true than your only other option would be to highlight the text programatically, which wouldn't give you any extra functionality beyond the highlighting itself. Is that a functionality you want? - Dan Freiman On Feb 19, 2008 9:41 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi

[flexcoders] Tabbing to links in htmlText

2008-02-19 Thread Giles Roadnight
Hi All We have to be able to tab to all buttons / links ect in the flex application. We have am html text field with a Privacy Policy link in it. At the moment you can't tab to it. Is there a way to do this? Thanks Giles

[flexcoders] Clear validation

2008-02-15 Thread Giles Roadnight
Hi All I am using validators on my form and all is workign well. I have a problem when I clear the form and set all of the text fields back to . All of the form items go red. Is there a way of resetting the validator / form item to get rid of this until it is next edited? Thanks

Re: [flexcoders] Clear validation

2008-02-15 Thread Giles Roadnight
fantastic, many thanks On Fri, Feb 15, 2008 at 10:05 AM, YOGESH JADHAV [EMAIL PROTECTED] wrote: when to do textfield.text = also make textField.errorString = ; On Fri, Feb 15, 2008 at 3:22 PM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I am using validators on my form

Re: [flexcoders] ClassReference and Resource bundles

2008-02-12 Thread Giles Roadnight
Of *Giles Roadnight *Sent:* Friday, February 08, 2008 6:41 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] ClassReference and Resource bundles Hi All I have this in one of my locale property files: countryListClass=ClassReference(com.pricklythistle.i18n.CountryListEN) and get

[flexcoders] ClassReference and Resource bundles

2008-02-08 Thread Giles Roadnight
Hi All I have this in one of my locale property files: countryListClass=ClassReference(com.pricklythistle.i18n.CountryListEN) and get this error when I try to build the resource bundles: [exec] C:\xampp\htdocs\pricklythistle\ezine\locale\en_GB\lang.properties(58): col: 52 Error: Access of

Re: [flexcoders] Tween Class buggy?

2008-02-08 Thread Giles Roadnight
A parallel effect might have worked. In the end I just wrote my own Tween class. No one else has had trouble with the Tween class? On Feb 7, 2008 2:29 PM, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 07 Feb 2008, Giles Roadnight wrote: For all of the effects I am using a Tween class. I

[flexcoders] Tween Class buggy?

2008-02-07 Thread Giles Roadnight
Hi All I'm building a slide out menu. The requirement is when you mouse over a button it expands horizontally with a label in it. When you then click it it expands down with a form inside. If you don't click and mouse out it goes back to it's initial size. On the whole this works fine except

[flexcoders] Flexbook tab children

2008-01-31 Thread Giles Roadnight
Hi All I'm using the flexbook component here: http://www.quietlyscheming.com/blog/components/flexbook/ but need to be able to tab to the buttons on the pages in the book. If I make the book implement the IFocusManagerComponent interface I can tab to the book but within it. I have made sure

Re: [flexcoders] Flexbook tab children

2008-01-31 Thread Giles Roadnight
Ok, I've managed to fix this (the sure fire way of working a problem out for yourself is posting the question on flexcoders!). The FlexBookPage class had tabChildren set to false. Setting this to true solved the problem. On Jan 31, 2008 9:13 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi

[flexcoders] Working with maps / latitude / longditude data

2008-01-30 Thread Giles Roadnight
Hi All I'm considering doing a project that involves displaying latitude / longitude data on a map. For example: displaying different colors on each lat / long square with a popup showing number of pelicans per bananas squared in that location. Does anyone have any experience in this sort of

[flexcoders] Tabbing to an HBox

2008-01-18 Thread Giles Roadnight
Hi All I've got a simple task - to tab through a list of buttons and to an HBox set up as a button. This doesn't seem to work though, I have tried in Flex 3 and Flex 2 and a variety of different property combos. my current code looks like this: ?xml version=1.0 encoding=utf-8? mx:Application

Re: [flexcoders] Tabbing to an HBox

2008-01-18 Thread Giles Roadnight
And by the way, it doesn't work with a canvas either. On Jan 18, 2008 11:58 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 18 Jan 2008, Giles Roadnight wrote: HBox set up as a button. This is unusual - why do this rather than use a (styled) Panel or other container ? -- Tom

Re: [flexcoders] Tabbing to an HBox

2008-01-18 Thread Giles Roadnight
/flexcoders%40yahoogroups.com Yahoo! Groups Links -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Flex Build Paths / build.xml / ant

2008-01-18 Thread Giles Roadnight
Hi All I'm starting on a new project today and my setting up my environment. The project I am working on uses ANT to compile language swfs for localisation but the main swf is built using the usual built in flex compiler. The project is also published to a local server htdocs folder. My flex

[flexcoders] Blurry Bitmap Data

2008-01-15 Thread Giles Roadnight
Hi All I am using a book component that you can turn the pages of ect. It's working fine except for one really annoying bug. When I mouse over the corner of the page it starts to draw the flipped page. To do this it caches the bitmap data for the front and back of the page that is being flipped

Re: [flexcoders] Blurry Bitmap Data

2008-01-15 Thread Giles Roadnight
the problem. basically the shape you are rendering to needs to have integers for it's stage based x and y coordinates. Hope that helps someone else with the same problem. Giles On Jan 15, 2008 10:10 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I am using a book component that you can turn

[flexcoders] Flex 3 checkbox layout issues

2008-01-11 Thread Giles Roadnight
Hi All I've made a CheckBox tree component here: http://giles.roadnight.name/CheckBoxTree/main.html which I am pretty pleased with but I'm have problems getting it to work in Flex 3. The CheckBoxs appear out of line with the label - 8 pixels too high. I can correct this by setting y to 8 but

[flexcoders] RemoteObject, Flex 3 and Cairngorm

2008-01-11 Thread Giles Roadnight
Hi All We use renaun's AMF class to connect to our back end AMF interfaces: http://renaun.com/blog/flex-components/remoteobjectamf0/ and we are in the process of migrating form Flex 2 to Flex 3. We've got the library working in Flex 3 and all is fine except that we get the following warnings:

Re: [flexcoders] RemoteObject, Flex 3 and Cairngorm

2008-01-11 Thread Giles Roadnight
OK, we've worked this out now. I needed to specify and set up an XML file to get the RemoteObject to work. On Jan 11, 2008 9:45 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All We use renaun's AMF class to connect to our back end AMF interfaces: http://renaun.com/blog/flex-components

Re: [flexcoders] layout / scrolling issues

2007-12-21 Thread Giles Roadnight
PROTECTED] wrote: setting minHeight=0 may also work. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles Roadnight *Sent:* Tuesday, December 18, 2007 4:31 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] layout

Re: [flexcoders] RichTextEditor - Default color

2007-12-19 Thread Giles Roadnight
which may arise as a result of this email transmission. -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Odd Cairngorm Event error

2007-12-19 Thread Giles Roadnight
flexcoders%40yahoogroups.com] On Behalf Of Giles Roadnight Sent: 19 December 2007 15:02 To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: [flexcoders] Odd Cairngorm Event error Hi All I'm setting up a session timeout handling system. The way it is suppsoed to work is that when

[flexcoders] Odd Cairngorm Event error

2007-12-19 Thread Giles Roadnight
Hi All I'm setting up a session timeout handling system. The way it is suppsoed to work is that when a call to the back end fails a SessionTimeOutEvent is dispatched with the orignal event as a property (e.g. listUsers event). SessionTimeOutCommand will then popup the login dialogue with a

Re: [flexcoders] layout / scrolling issues

2007-12-18 Thread Giles Roadnight
to height=100% the canvas behaves and does not stretch it's parent, the VBox then fits within the canvas and the canvas scrolls the VBox Hopefully someone will find that useful. On Dec 17, 2007 10:47 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I have a couple of niggling lay out issues

[flexcoders] layout / scrolling issues

2007-12-17 Thread Giles Roadnight
Hi All I have a couple of niggling lay out issues that I can't seem to resolve and was hoping that someone could help me with them. I have a popup with an HBox in. on the left I have VBOx (lets call it the controls Vbox) and on the right a text area. Both have height=100%. With in the controls

Re: [flexcoders] REALLY wierd compiler problem, honest this is what happened!

2007-12-17 Thread Giles Roadnight
it then that does seem like that might be the reason. How do you clear the cache in server 2003 then? Thanks On Dec 17, 2007 11:03 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Saturday 15 Dec 2007, Giles Roadnight wrote: Has anyone ever had anyhtign like this? It really does seem impossible to me - I had

Re: [flexcoders] move and scrollbar

2007-12-17 Thread Giles Roadnight
the maxHorizontalScrollPosition is also 0)... i tried various ways of moving it already but it doesn't seem to want to since most of the dimensions i need are 0 :( if anyone can help, i would really appreciate it. thanks! -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] SWF resizing

2007-12-17 Thread Giles Roadnight
; backgroundColor=#0d0d0d layout=absolute mx:SWFLoader source=the_winner_with_logo.swf width=1159 height=909 scaleContent=true/ /mx:Application thanks!! -- Giles Roadnight http://giles.roadnight.name

[flexcoders] REALLY wierd compiler problem, honest this is what happened!

2007-12-15 Thread Giles Roadnight
I've been working on a project at home for a few weeks now. I made quite a bit of progress last weekend and committed it all to CVS. Last night I went back to it to do some more work. There was a slight problem that an alert box had Login Error as a title rather than Error so I fixed that in the

[flexcoders] Remoting, returning errors from CFCs to Flex

2007-12-14 Thread Giles Roadnight
Hi All Sorry for the slightly off topic post. I am setting up a login system for my Flex administration tool. I'm using a ColdFusion 8 backend. I've looked into CFlogin but I'm not very keen on it really so I've decided to just use session variables instead. When a user logs in a userVo object

Re: [flexcoders] Eliminating scrollbars

2007-11-30 Thread Giles Roadnight
best practice to avoid the generation of scrollbars in layouts? Paul -- Giles Roadnight http://giles.roadnight.name

[flexcoders] strange layout issue - ToggleButtonbar bug?

2007-11-29 Thread Giles Roadnight
Hi All I have a ToggleButtonBar across the top of my application that I use to load different modules into a view stack. This toggle button bar width is set to 100% and it is in a VBOX that is also set to width=100%. The application is also set to 100% When the browser is maximised on my

[flexcoders] Extending RichTextEditor

2007-11-22 Thread Giles Roadnight
Hi All I know that Rich Text editor has bene brought up a load of times but there still doesn't seem to be any decent solution. I want a basic HTML editor that will allow me to style and lay out fairly simple text as content for webpages. I want to be able to add images, re-size them and to be

[flexcoders] glow effects

2007-11-15 Thread Giles Roadnight
Hi All I want to make a button pulse (and maybe speed it up to flash). I am using a sequence to string together 2 glow effects, glowUp and glowDown: private function gridClicked(e:MouseEvent):void { var templateButton:Button = templateButtons[e.currentTarget.selectedItem.templateID];

Re: [flexcoders] Canvas layout / style

2007-11-15 Thread Giles Roadnight
Thanks for the suggestion, I did do it with a mask in the end. On Nov 14, 2007 5:16 PM, Jon Bradley [EMAIL PROTECTED] wrote: On Nov 14, 2007, at 10:51 AM, Giles Roadnight wrote: The obvious way to do it is to have an image as a background with rounded corners and shadows as part

Re: [flexcoders] Find out user logged on Windows using AS

2007-11-05 Thread Giles Roadnight
? -- Giles Roadnight http://giles.roadnight.name

[flexcoders] SequenceCommand

2007-10-31 Thread Giles Roadnight
Hi All I'm quite new to sequence commands but they are used extensively at my new job. At the moment I am trying to save a large number of items. I am using a sequenceCommand to do this although in this case it is not being used as part of a sequence. In the command I have a private variable

Re: [flexcoders] SequenceCommand

2007-10-31 Thread Giles Roadnight
, param ); call.addResponder( _command ); this calls an renaun:RemoteObjectAMF0 service so perhaps the problems lies there? Thanks Giles On Oct 31, 2007 2:58 PM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I'm quite new to sequence commands but they are used extensively at my new job

Re: [flexcoders] Copying xml node attributes

2007-10-26 Thread Giles Roadnight
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles Roadnight *Sent:* Thursday, October 25, 2007 4:21 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Copying xml node attributes What's the easiest way to copy a load of attributes from one XML node to another

[flexcoders] changing endpoint for remoting service

2007-10-25 Thread Giles Roadnight
Hi All I am using a renaun:RemoteObjectAMF0 service to communicate with the back end. At the moment I am building an administration tool that will be used for managing the data and fixing problems. The login box has a drop down to select which server you want to log onto. This works fine but if

Re: [flexcoders] changing endpoint for remoting service

2007-10-25 Thread Giles Roadnight
://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links -- Giles Roadnight http://giles.roadnight.name

[flexcoders] really simple xml problem (I hope)

2007-10-25 Thread Giles Roadnight
This is a seemingly very simple problem but so far I have only come up with a complex solution. I have the following xml snippet: properties property name=width type=real units=mm84/property property name=height type=real units=mm10.69204152249135/property /properties How do I change the value

[flexcoders] Copying xml node attributes

2007-10-25 Thread Giles Roadnight
What's the easiest way to copy a load of attributes from one XML node to another? I tried looping over the attributes() array but that didn't seem to work. Thanks

Re: [flexcoders] really simple xml problem (I hope)

2007-10-25 Thread Giles Roadnight
Aha - yes I knew that really!! (thanks a lot, make sense now but when I was reading the docs I didn't work that out). Giles On 10/25/07, Daniel Freiman [EMAIL PROTECTED] wrote: heightNode.text()[0] = 5; - Dan Freiman On 10/25/07, Giles Roadnight [EMAIL PROTECTED] wrote

[flexcoders] SOT: CF LDAP

2007-10-18 Thread Giles Roadnight
Hi All Some of the code I have inherited contains a CFLDAP tag in it that retrieves data about users that's used in a cfc. We've just moved the server to a new domain and don't as yet have a valid certificate for the new domain. The code that used to work fine to get the LDAP info now doesn't

[flexcoders] eBay using Air

2007-10-18 Thread Giles Roadnight
I'm sure most of you guys knew this already but wired has an article on the beta application: http://www.wired.com/software/softwarereviews/news/2007/10/ebay_desktop thought people might find it interesting. Giles

Re: [flexcoders] SOT: CF LDAP

2007-10-18 Thread Giles Roadnight
to the new one and install it. Sorry, I have no URL to give you, but a search on Adobes site should turn up a article speaking to how to do this. Also, I suggest posting this sort of question on CF-Talk at houesoffusion.com. cheers! DK On 10/18/07, Giles Roadnight [EMAIL PROTECTED] wrote

Re: [flexcoders] Re: Site Launch

2007-10-17 Thread Giles Roadnight
PROTECTED] wrote: Hate to say it, guys, but neither of these sites launched during my attention span (with DSL). Hope you have really motivated visitors! --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Giles Roadnight [EMAIL PROTECTED] wrote: Yeah, it loooks pretty nice (but why

[flexcoders] Flex wsdl concatanating url after moving to new domain Siteminder / apache / CF

2007-10-16 Thread Giles Roadnight
Hi All I've got a flex site that uses webservices to talk to wsdl interfaces on a coldfusion back end. This has worked fine up till now. Today we went through a lengthly process to move the server to a new domain. This involves re-setting up Siteminder to authorise people on the new domain. We

Re: [flexcoders] Flex wsdl concatanating url after moving to new domain Siteminder / apache / CF

2007-10-16 Thread Giles Roadnight
I forgot to say that this is a secure site (https) but we don't have a certificate for the new url yet. You do get browser errors but the flash site does load. Not sure if this will be confusing flash. Thanks again. On 10/16/07, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I've got

Re: [flexcoders] Re: Site Launch

2007-10-15 Thread Giles Roadnight
not just a datagrid and a few bindings. Yep, it sure isn't. GREAT work guys. It totally rocks. -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Cairngorm Events - data object

2007-10-08 Thread Giles Roadnight
Hi All I've not been using the data object in my cairngorm events but have been jsut creating properties within the event and populating these in the contructor

Re: [flexcoders] Cairngorm Events - data object

2007-10-08 Thread Giles Roadnight
/8/07, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I've not been using the data object in my cairngorm events but have been jsut creating properties within the event and populating these in the contructor -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Cairngorm Events - data object

2007-10-08 Thread Giles Roadnight
/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Cairngorm Events - data object

2007-10-08 Thread Giles Roadnight
/completion. public class GetAPTStatusEvent extends CairngormEvent { public var data:AptVO; } - Original Message - From: Giles Roadnight [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, October 08, 2007 1:08 PM Subject: Re: [flexcoders] Cairngorm Events

[flexcoders] passing event best practice

2007-10-05 Thread Giles Roadnight
listener. This way you can hve the button click or an event listener fire the function. Thanks -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] passing event best practice

2007-10-05 Thread Giles Roadnight
www.halliwells.com. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Alert Bug - positioning of icon / text layout

2007-10-04 Thread Giles Roadnight
PROTECTED] *On Behalf Of *Giles Roadnight *Sent:* Wednesday, October 03, 2007 4:31 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Alert Bug - positioning of icon / text layout Ok, I've made a simple test which can be downlaoded from here: http://giles.roadnight.name/download

Re: [flexcoders] Re: Datagrid masking

2007-10-04 Thread Giles Roadnight
ok, next time it happens I'll get a screen dump. On 10/3/07, Alex Harui [EMAIL PROTECTED] wrote: Let's start with a snapshot of what it looks like. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles Roadnight *Sent

Re: [flexcoders] Re: Datagrid masking

2007-10-04 Thread Giles Roadnight
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles Roadnight *Sent:* Wednesday, October 03, 2007 1:06 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: Datagrid masking I'd love to but in my existing appliucation it only happens very occassionally

Re: [flexcoders] Re: Datagrid masking

2007-10-04 Thread Giles Roadnight
and one more http://giles.roadnight.name/download/datagridMasking2.gifhttp://giles.roadnight.name/download/datagridMasking.gif On 10/4/07, Giles Roadnight [EMAIL PROTECTED] wrote: Here's a screenshot from a list: http://giles.roadnight.name/download/datagridMasking.gif not the best example

Re: [flexcoders] Re: Datagrid masking

2007-10-03 Thread Giles Roadnight
%40yahoogroups.com [mailto: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com] On Behalf Of Giles Roadnight Sent: Thursday, September 27, 2007 1:05 AM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: Re: [flexcoders] Datagrid masking Ok, I've installed Moxie to give

Re: [flexcoders] Alert Bug - positioning of icon / text layout

2007-10-03 Thread Giles Roadnight
: Please make a simple test case and file a bug. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Giles Roadnight *Sent:* Tuesday, October 02, 2007 12:34 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Alert Bug

[flexcoders] any CF / Flex freelance developers who can work in Reading

2007-10-03 Thread Giles Roadnight
Hi All I'm leaving my contract job in Reading and a replacement is needed. If you have CF and Flex experience and can work on a contract in Reading mail me off list. -- Giles Roadnight http://giles.roadnight.name

  1   2   >