[flexcoders] Is it a proxy setting?

2007-03-07 Thread smccran
Hi all! First post, so go easy on me I'm using this code ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* layout=absolute creationComplete=userRequest.send() !-- Set the url for the cfm template -- mx:HTTPService id=userRequest

[flexcoders] State Refresh

2007-09-04 Thread smccran
Hi all, I have a page which contains a tilelist. The Tilelist is populated from a list. I have a button in the tilelist which triggers a function which removes an element from a list. My problem is that without 'refreshing' the screen it doesn't look like the list item has been removed. Iv'e

[flexcoders] Referencing items in other states

2007-09-07 Thread smccran
Hi, Bit of a N00b question, I have a site with multiple viewstates, obviously there are individual elements within each view state. I'm getting an error when pressing a button on one state that calls a function, that references an element on another state. The error is saying that 'The

[flexcoders] Referencing elements in a component

2007-10-05 Thread smccran
Hi, I have TileList (Shopping basket), with a component in it. The tilelist has a numeric stepper displayed in the component. There is a change event on the stepper, that calls a function that increases or decreases the number of that item in the basket. I have two problems, the first is

[flexcoders] Scrollbar weirdness

2007-11-15 Thread smccran
Hi all, I have a datagrid that has longer data in some rows than others. The problem is that my scrollbar is changing size! Does anyone know how to stop the scrollbar changing height? A sample code is below. Thanks Shaun Code: ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Aamzon flash scrolly rotator

2008-05-23 Thread smccran
Hi all, I found this the other day, its Amazons flash driven rotating Item picker http://www.amazon.co.uk/b/ref=amb_link_62695165_1? ie=UTF8node=10917681pf_rd_m=A3P5ROKL5A1OLEpf_rd_s=ilmpf_rd_r=0ACZ4V8 V6PJSJ3K5HGZTpf_rd_t=101pf_rd_p=187921591pf_rd_i=266239 I really like the functionality, and

[flexcoders] Multiple arrays?

2008-08-18 Thread smccran
Hi all, I'm trying to produce a booking form, where users can select their seat. The seats are laid out in a square. I'm currently doing this with 4 arrays, one for each side of the square. This is proving very complicated tho, as I have a remote object from a cfc returning the results from

[flexcoders] Re: Multiple arrays?

2008-08-18 Thread smccran
: Why not just use one array and number the seats all the way around the square? On Mon, Aug 18, 2008 at 8:39 AM, smccran [EMAIL PROTECTED] wrote: Hi all, I'm trying to produce a booking form, where users can select their seat. The seats are laid out in a square. I'm currently doing

[flexcoders] Connecting an AIR application to FCF through Webservices.

2009-03-30 Thread smccran
Hi all, I am trying to connect an AIR app to a coldfusion back end webservice (CFC), but am getting an error message: Code: mx:WebService id=popData wsdl=http://www.mccran.co.uk/wld/services/phoneBook.cfc?wsdl; showBusyCursor=true useProxy=true mx:operation name=getData resultFormat=object

[flexcoders] Creating exceptions to an eventlistener

2009-04-01 Thread smccran
Hi all, I've got a canvas with an event listener, that allows the user to drag the canvas around. The only problem is that I have a datagrid inside this canvas, and the event listener is interfering with it. IE I cannot drag the slider in the datagrid, or resize the column etc, as the event

[flexcoders] Form field clearing

2009-04-09 Thread smccran
Hi all, I have a standard flex form, and I want to do a simple 'reset' function. At the moment I would simply set each field value as blank like this: private function clear():void { nameField.text = ; tel.text = ;