[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
nd vides be the swf folder? Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Stopping a swf file playing

2008-05-29 Thread Giles Roadnight
p frame: 1 : 1 flash.display::MovieClip frame: 1 : 1 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] Listening for global keyboard events

2008-05-20 Thread Giles Roadnight
er.removePopUp()? How do I re-apply the focus to the stage? Thanks -- Giles Roadnight http://giles.roadnight.name

[flexcoders] Measure and UpdateDisplayList called continuously

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

[flexcoders] Buggy tree control

2008-05-19 Thread Giles Roadnight
imple test cases 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]

Re: [flexcoders] Binding to xml nodes

2008-05-14 Thread Giles Roadnight
d (and spits that warning) > > > -- > > *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 t

[flexcoders] AdvancedDataGrid DefaultDataDescriptor

2008-05-14 Thread Giles Roadnight
lData 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

[flexcoders] Binding to xml nodes

2008-05-14 Thread Giles Roadnight
ow why the binding 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

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

2008-05-14 Thread Giles Roadnight
} > > } > > > > And > > > > var c:Class = Giles; > > > > > > If so it is just just be c.Roadnight or c["RoadNight"] > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On >

[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 > >

[flexcoders] Calling static function on Class instance

2008-05-13 Thread Giles Roadnight
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] Webservice / web proxy clarification

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

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

2008-04-25 Thread Giles Roadnight
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 <[EMAIL PROTECTED] > > <mailto:[EMAIL PROTECTED]>

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

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

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

2008-04-23 Thread Giles Roadnight
ew. We never ask this in a "form letter". And every > potential candidate gets the same specs / SVN Repository. > > There is a "Do 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

[flexcoders] OT: Possible recruiting scam??

2008-04-22 Thread Giles Roadnight
#x27;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

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

2008-04-11 Thread Giles Roadnight
that I 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

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

2008-04-08 Thread Giles Roadnight
> >> public class myClass() > >> { > >> private var testVar:String; > >> > >> public function myClass( value:String ) > >> { > >> this.testVar = 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] 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 Road

Re: [flexcoders] Export To Outlook. in flex

2008-03-14 Thread Giles Roadnight
ile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ> > > -- 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. Ha

Re: [flexcoders] Filter function "Sort" of working

2008-03-12 Thread Giles Roadnight
t;[EMAIL PROTECTED]> wrote: > > I gave it a try but all rows disappear. > > I also tried > var result:Boolean=true; > > and > > var result:Boolean=false; > > The text input also has a change event if this is relevant: > > change="this.masterList.dataProv

Re: [flexcoders] Tree SelectedItem

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

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

2008-03-12 Thread Giles Roadnight
gt; > Like my dad always said – measure twice and make sure to upload your > release bits. > > > > Cheers, > > > > Rick Winscot > > > -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] Filter function "Sort" of working

2008-03-12 Thread Giles Roadnight
reference". > > Thanks, > > James > -- > View this message in context: > http://www.nabble.com/Filter-function-%22Sort%22-of-working-tp15999711p15999711.html > Sent from the FlexCoders mailing list archive at Nabble.com. > > > -- Giles Roadnight http://giles.roadnight.name

[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 th

[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 very

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

2008-02-27 Thread Giles Roadnight
logic looks good. I notice that once > you make 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] 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. Th

[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
a mini-example? Are you sure 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] *O

[flexcoders] measure(), measuredMinWidth and unscaledWidth

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

Re: [flexcoders] Tabbing to links in htmlText

2008-02-19 Thread Giles Roadnight
if I'm > wrong here). 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

[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

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]>

[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] ClassReference and Resource bundles

2008-02-12 Thread Giles Roadnight
ogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf 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

[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 und

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 a

[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 som

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]> wro

[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 tabCh

[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 app?

[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 bu

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)

Re: [flexcoders] Tabbing to an HBox

2008-01-18 Thread Giles Roadnight
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 Chiverton > Helping to continually industrialize attention-grabbing p

[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: http://www.adobe.com/2006/mxml"; layout="absolute"

Re: [flexcoders] Blurry Bitmap Data

2008-01-15 Thread Giles Roadnight
d 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 bo

[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

[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 th

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: > &

[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: Y

Re: [flexcoders] layout / scrolling issues

2007-12-21 Thread Giles Roadnight
t;[EMAIL 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.

Re: [flexcoders] Odd Cairngorm Event error

2007-12-19 Thread Giles Roadnight
p? > > Hope I've been clear enough. > > Giles. > > -- > 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

[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 message

Re: [flexcoders] RichTextEditor - Default color

2007-12-19 Thread Giles Roadnight
gt; viruses. The sender therefore does not accept liability for any errors, > omissions or other such consequences which may arise as a result of this > email transmission. > > > **** > > > > -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] layout / scrolling issues

2007-12-18 Thread Giles Roadnight
. If you set both 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

Re: [flexcoders] SWF resizing

2007-12-17 Thread Giles Roadnight
the embedded font stuff) is below. Or is there > just a better > approach in general? > > > http://www.adobe.com/2006/mxml"; > backgroundColor="#0d0d0d" layout="absolute"> > > scaleContent="true"/> > > > > thanks!! > > > -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] move and scrollbar

2007-12-17 Thread Giles Roadnight
ys at 0 (most likely because 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] REALLY wierd compiler problem, honest this is what happened!

2007-12-17 Thread Giles Roadnight
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

[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

[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 t

[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 i

Re: [flexcoders] Eliminating scrollbars

2007-11-30 Thread Giles Roadnight
crollbars in the layout. > > Whats the perceived 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 1280*1

[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 ab

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 a

[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];

[flexcoders] Canvas layout / style

2007-11-14 Thread Giles Roadnight
Hi All I want to create a Canvas with rounded corners and a drop shadow (easy) and with a bar at the top and bottom (similar to the title bar at the top of a panel) that contain text and buttons. I tried this to begin with by creating a canvas with rounded corners and putting another canvas as a

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

2007-11-05 Thread Giles Roadnight
out the user logged on Windows using action script 3? > > > -- Giles Roadnight http://giles.roadnight.name

Re: [flexcoders] SequenceCommand

2007-10-31 Thread Giles Roadnight
pe ], meta, 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 ar

[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 tha

Re: [flexcoders] Copying xml node attributes

2007-10-25 Thread Giles Roadnight
> > *From:* 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

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 Roadni

[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

[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: 84 10.69204152249135 How do I change the value of the height node (i.e. from 10.6 to 5)? I have tried just setting heightNode = 5 but I get a casting error (cannot

Re: [flexcoders] changing endpoint for remoting service

2007-10-25 Thread Giles Roadnight
alliwells LLP IT Department on 0870 365 8008. > > For more information about Halliwells LLP visit 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

[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] SOT: CF LDAP

2007-10-18 Thread Giles Roadnight
t; cert from your old working server 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. > &g

[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

[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 wo

Re: [flexcoders] Re: Site Launch

2007-10-17 Thread Giles Roadnight
ll <[EMAIL 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 , "Giles > Roadnight" <[EMAIL PROTECTED]> > wrote: > > > >

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: > >

[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 n

Re: [flexcoders] Re: Site Launch

2007-10-15 Thread Giles Roadnight
> designers really went out of their way to do something that's 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

Re: [flexcoders] Cairngorm Events - data object

2007-10-08 Thread Giles Roadnight
x27;ll get > codehints/completion. > > public class GetAPTStatusEvent extends CairngormEvent { > public var data:AptVO; > } > > > > > - Original Message - > From: "Giles Roadnight" <[EMAIL PROTECTED]> > To: > Sent:

Re: [flexcoders] Cairngorm Events - data object

2007-10-08 Thread Giles Roadnight
sEvent(EVENT_TYPE, vo); > // etc.. > > So instead of making coding harder, it makes it *alot* easier. > You can perform Bindings, store it in model, use it as dataprovider > (ArrayCollection of AptVO's) etc, etc.. > > regards, > Muzak > > - Original Message - >

Re: [flexcoders] Cairngorm Events - data object

2007-10-08 Thread Giles Roadnight
Thanks Giles. On 10/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

[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] passing event best practice

2007-10-05 Thread Giles Roadnight
ntents. If you have received this email in error please > delete it and notify Halliwells LLP IT Department on 0870 365 8008. > > For more information about Halliwells LLP visit www.halliwells.com. > > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flex

[flexcoders] passing event best practice

2007-10-05 Thread Giles Roadnight
Hi Alll Just a quick question to see what other do. If you have a button that has a click attribute do you always pass the event in the funtion: http://giles.roadnight.name

Re: [flexcoders] Re: Datagrid masking

2007-10-04 Thread Giles Roadnight
and one more http://giles.roadnight.name/download/datagridMasking2.gif<http://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/da

Re: [flexcoders] Re: Datagrid masking

2007-10-04 Thread Giles Roadnight
pshot of what it looks like. > > -- > *From:* 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 l

Re: [flexcoders] Re: Datagrid masking

2007-10-03 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 >

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

2007-10-03 Thread Giles Roadnight
coders@yahoogroups.com [mailto:[EMAIL 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 si

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

2007-10-03 Thread Giles Roadnight
That's reading in the UK On 10/3/07, Giles Roadnight <[EMAIL PROTECTED]> wrote: > > 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

[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   >