[flexcoders] View States(mx:States) and Caching Issue

2006-05-06 Thread sof4real03
I have a panel that has multiple view states: default: empty createPerson: populates the panel with an accordion/form So after I fill out the accordion/form I submit my data and change my view state back to default. Then I want to add another person I click on a button that once again puts me

[flexcoders] Has this been fixed in B3

2006-05-06 Thread Dominick Accattato
I've been trying to load a swf from another domain.  That domain has a crossdomain.xml file setup but it won't load.  I guess this is a known issue?  Has this been fixed for b3. Runtime security error on loading cross-domain SWF in a Loader Flash Player returns a security error when using the L

Re: [flexcoders] Re: Please Help. Http Service WTH

2006-05-06 Thread Faisal Abid
*Okay look this is my code so far What am i doing wrong?? This is my hotjobs.as file*     var hotjobs_service: String = "";    function     buildMyUrl(country:String,state:String,city:String,job:String) {     hotjobs_service = "http://hotjobs.yahoo.com/rss/0/" +    

Re: [flexcoders] Re: Please Help. Http Service WTH

2006-05-06 Thread Faisal Abid
  click="buildMyUrl(textinput.text);myService.send()" /> when i do that i get an error at runtime saying TypeError: Error #1009: null has no properties.     at index/__search_click() Doug Lowder wrote: > It's up to you where you put the call to buildMyUrl(), depending on > when and how you w

[flexcoders] Flex 2 Beta 2 Action Script Error: Couldn't establish a connection to ColdFusion

2006-05-06 Thread porsche_911_1978
When trying to run a Flex 2 Beta 2 sample, I'm getting the following error: Error: faultCode:InvokeFailed faultString:'Error: Unknown destination 'ColdFusion'.' faultDetail:'Couldn't establish a connection to 'ColdFusion'' I have installed on a fresh system the following programs: Flex 2 Bet

[flexcoders] Drag and drop DataGrid to Tree

2006-05-06 Thread Franca Daniel
  Hey you all,     i am trying build a application where i need drag a item from DataGrid to drop in a Tree. Anyone have a idea how to do that ?    Please help me ,Thank you!       ___ Abra sua conta no Yahoo! Mail: 1G

RE: [flexcoders] Re: Please Help: Not being able to access the .as class from mxml in Flex 2 Beta 2

2006-05-06 Thread João Fernandes
Try to add the Constructor function inside your class. package test{ public class Program{   private var programId:int;   private var programName:String;   public function Program(){   } } } João Fernandes -Original Message- From: flexcoders@yahoogroups.com on behalf of eairox Sen

[flexcoders] Re: Please Help: Not being able to access the .as class from mxml in Flex 2 Beta 2

2006-05-06 Thread eairox
Hi, Thanks for replying. Yes, Program.as live in test package and it is in test directory. In the flex builder, there is no compile-time error. I get the error, when I run it. This is the directory configuration: - programview.mxml - test\Program.as Am I missing any configuration?

Re: [flexcoders] Measure multiline text

2006-05-06 Thread Graham Weldon
Hi Sergio, If you are after resizing to the size of the text within the field, that can be achieved. I have created a ScriptEditor ActionScript component that is essentially 2 side-by-side text areas. The leftmost area contains the line numbers, and the right area contains the script being

[flexcoders] Re: Flickr App in Beta 2?

2006-05-06 Thread flexnadobe
In the thumbnail.mxml take a look at where the code is pointing to the images. You need to change dataObject to data and that should work. --- In flexcoders@yahoogroups.com, Faisal Abid <[EMAIL PROTECTED]> wrote: > > I have sucessfully got the webservice running and it is displaying but i >

Re: [flexcoders] Flickr App in Beta 2?

2006-05-06 Thread Dominick Accattato
I think Mike is correct.  Just set a breakpoint and start in debugmode to list all those objects your not familiar with.On 5/6/06, Mike Chambers < [EMAIL PROTECTED]> wrote:Not looking at the code, you may need to change: {dataObject} to {data}within Thumbnail.mxml.mike chambers[EMAIL PROTECTED]F

[flexcoders] FLEX 2 wishlist request

2006-05-06 Thread Dominick Accattato
I know were coming close to beta 3, but here is a whishlist request from me.Its obvious that the security dialog needs to be the same for all Flash applications for consistancy.  However, I would like it to just get a facelift to make it better looking.  As well, a light blur should be added to

[flexcoders] Flex 2.0 b2: XML

2006-05-06 Thread tyombria
Hi. How can I remove child from XML object? There is no method 'removeChild'... Although I can 'appendChild', 'insertBefore...', 'setChildren'... -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.c

Re: [flexcoders] Measure multiline text

2006-05-06 Thread Muzak
Assuming you're talking about Flash and not Flex, you can get the textHeight from the inner textfield of a TextArea component instance. The inner textfield is called 'label'. The only downside is that changes to the TextArea instance can not be retrieved immediatly from the inner textfield, yo