[flexcoders] loading xml with AS3

2006-08-12 Thread aaron smith
I'm having troubles figuring out where the functionality to load xml went. What classes do i use to load xml?thanks __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Re: WebService - What's wrong with this code?

2006-08-12 Thread sinatosk
your code is correct because I do that myself and works fine ... with a little difference the wsdl I use is always the same so I set it inside the property wsdl :p instead of passing it through the method loadWSDL. I know it's not much of a help but heres what I do as a debug testprivate

[flexcoders] Re: adding and removing event listeners madness (flex1_5

2006-08-12 Thread ilya Devers
He Wayne, I just noticed you replied. I am afraid this doesn't solve my problem. In your code both inputs have snap-intervalls, and both set the value to eachother. The problem arises when you have a normal text-input, not a numeric stepper. We don't want a stepper, because we wan't the user to

[flexcoders] How to get Panel headerHeight and what is its default value?

2006-08-12 Thread Sergey Kovalyov
Hi All! I use myPanelInstance.getStyle(headerHeight) and it returns undefined until you set any value manually using myPanelInstance.setStyle(headerHeight, newValue). But actually header exists, so it should have some height. Usually it was 28, not undefined. What is wrong? Regards, Sergey. --

[flexcoders] Re: loading xml with AS3

2006-08-12 Thread Geoffrey Williams
URLLoader, HTTPService c http://livedocs.macromedia.com/flex/2/docs/1920.html --- In flexcoders@yahoogroups.com, aaron smith [EMAIL PROTECTED] wrote: I'm having troubles figuring out where the functionality to load xml went. What classes do i use to load xml? thanks --

[flexcoders] Image class instance source nature detection

2006-08-12 Thread Sergey Kovalyov
Hi All! What is the most proper way to detect either Image use embeded content to display or load the content in runtime? Sergey. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Best way to reference items in a parent MXML component?

2006-08-12 Thread Franck de Bruijn
Hi Ben, I personally do not like circular dependencies. In your case the ViewStack would know about its children and the children also know about the ViewStack. If you later decide to hang your children in a different container you will probably have to rewrite some code in the

[flexcoders] Flex Starter

2006-08-12 Thread saikiranmadhavan
hi, I am working with Flash and now looking for working with Adobe Flex 2.0, with Flex builder. I want to work with Flex and Java, so can anyone suggest me , how to start with going , any useful links for tutorials , sample codes for Java and Flex integration and so. thanks in advance

[flexcoders] Is FDS the right choice for me?

2006-08-12 Thread Jay Gibb
Assume the following high level requirements... 1. Any numbers of clients can be connected simultaneously. 2. The server must be able to push data to any connected client. 3. Developers must have complete control over interface style and behavior. 4. The client must be able to load interface

Re: [flexcoders] How to get Panel headerHeight and what is its default value?

2006-08-12 Thread Gunther Konig
I use myPanelInstance.getStyle(headerHeight) and it returns undefined until you set any value manually using myPanelInstance.setStyle(headerHeight, newValue). But actually header exists, so it should have some height. Usually it was 28, not undefined. What is wrong? Isn't this the 3rd (or

[flexcoders] itemRenderer question, scoping?

2006-08-12 Thread Leo Wieland
Scoping problem? In my project directory (mainApp) I made a subdirectory myComponents (mainApp/myComponents) In this subdir I put my mxml component artart.mxml In artart.mxml I create a TileList with a itemRenderer as follow: mx:TileList x=36 y=20 width=160 height=280

[flexcoders] Draw Label Border

2006-08-12 Thread Kumar
Hi All, I am finding it difficult to draw border of label. I am trying to use flash API for drawing rectangle in place of border. Can some one help me out? Thanks Kumar __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Re: embed flash 8 swf into flex2

2006-08-12 Thread Dan Rossi
Hi it looks like, our designer is able to build the interface as a set of symbols which can be embedded into flex and used, after its exported from flash9 preview. What is the exactly syntax for instance to be able to reference a set of buttons inside a movieclip instance, set listeners to a

Re: [flexcoders] How to get Panel headerHeight and what is its default value?

2006-08-12 Thread Sergey Kovalyov
On 8/12/06, Gunther Konig [EMAIL PROTECTED] wrote: Isn't this the 3rd (or 4th) time you're asking this? Isn't it obvious? It returns undefined because it's not defined :D Yes, but there was no answer. :) Open flex install dir\frameworks\source\mx\containers\Panel.as and see the methods

RE: [flexcoders] Flex Starter

2006-08-12 Thread David Mendels
Hi, I'd suggest to anyone that they start with the QuickStarts on the Flex Developer Center. -David -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of saikiranmadhavan Sent: Saturday, August 12, 2006 3:01 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Draw Label Border

2006-08-12 Thread Sergey Kovalyov
Put label into the Box: mx:HBox borderStyle=solid mx:Label text=Label / /mx:HBox On 8/12/06, Kumar [EMAIL PROTECTED] wrote: Hi All, I am finding it difficult to draw border of label. I am trying to use flash API for drawing rectangle in place of border. Can some one help me out?

Re: [flexcoders] Best way to reference items in a parent MXML component?

2006-08-12 Thread Sergey Kovalyov
Events must be used here. Your child elements should dispatch custom events and container that holds them should listen to that events. Event listener will handle the child via target property of event object. On 8/12/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: I have a ViewStack whose child

[flexcoders] MXML Reference

2006-08-12 Thread Weldon MacDonald
I haved an application to impliment and it begs for Flex 2, but I don't know much about MXML. I've found some getting started stuff, but have totally failed to find an MXML tag reference. I did find one in the Actionscript2 language reference, but nada after that. Is the old reference still up to

[flexcoders] Re: AS3 Question

2006-08-12 Thread astgtciv
This is actually a very interesting discussion to me, because psychologically I've been going through the same uncomfortability learning curve with MXML. I am coming from a pure AS2 background (and Java before that), where I prefered to contain as much code as possible to my classes. One

Re: [flexcoders] MXML Reference

2006-08-12 Thread Sergey Kovalyov
http://www.adobe.com/support/documentation/en/flex/ On 8/12/06, Weldon MacDonald [EMAIL PROTECTED] wrote: I haved an application to impliment and it begs for Flex 2, but I don't know much about MXML. I've found some getting started stuff, but have totally failed to find an MXML tag reference.

Re: [flexcoders] itemRenderer question, scoping?

2006-08-12 Thread Jeremy Lu
you need to declare the namespace in the application tag for your components, add this to the tag: xmlns:mycomp=myComponents.* then in your main application, use this: mycomp:artart / mycomp:Colornail / hth, Jeremy. On 8/12/06, Leo Wieland [EMAIL PROTECTED] wrote:

[flexcoders] Flash Player 9 OS X for Intel

2006-08-12 Thread Shannon Hicks
Adobe release the Intel version of Flash Player 9 on Thursday with such fanfare, that hardly anyone noticed until today. http://www.adobe.com/go/getflashplayer/ Shan __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] Re: AS3 Question

2006-08-12 Thread Michael Schmalle
Tim, good to see you back from the component exclusive world. Well, it was more of a 'had to answer most of questions world'.I don't know, you are out in lala land creating and using things that are new, it gets lonley sometimes.-) Really, I have been working on components, I had to turn the

Re: [flexcoders] Re: loading xml with AS3

2006-08-12 Thread aaron smith
how do I load local XML data. I'm trying this:private function loadXML():void { myXML = new XML(); myXMLURL = new URLRequest( menu.xml ); myLoader = new URLLoader(myXMLURL); myLoader.addEventListener(complete, xmlLoaded); }private function xmlLoaded():void { myXML =

Re: [flexcoders] Re: Caringorm - Visual Flowchart Poster!

2006-08-12 Thread Daniel Cascais
Is the FrontController tilting for a specific reason? -- 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 * To visit your group on the web, go to:

Re: [flexcoders] Is FDS the right choice for me?

2006-08-12 Thread Igor Costa
All you need you had listed.On 8/12/06, Jay Gibb [EMAIL PROTECTED] wrote: Assume the following high level requirements... 1. Any numbers of clients can be connected simultaneously. 2. The server must be able to push data to any connected client. 3. Developers

[flexcoders] FDS and Coldfusion

2006-08-12 Thread Alexander Tsoukias
Hi all, I would like to setup my environment to be able to work with FDS and Coldfusion. I'm sort of a starter myself (on the flex part) and advanced on the CF part. How would I go about to set this up? Any samples? I own 4 unlimited FDS and I want to make use of them.. Please help!! Thanks,

[flexcoders] Re: Best way to reference items in a parent MXML component?

2006-08-12 Thread ben.clinkinbeard
How would a child call a function in the parent though? Events don't seem (semantically) like the right thing because I basically just want to use a utility function defined in the parent. Like I have a function that I am using to format the dataTips of my charts in the child components, but

RE: [flexcoders] FDS and Coldfusion

2006-08-12 Thread David Mendels
Hello, http://www.mikenimer.com/index.cfm/2006/7/28/Code-is-worth-a-thousand-wo rds--FlexCF-FDS-vs-FR-Application http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d http://www.adobe.com/devnet/flex/flex_cf.html HTH, David -Original Message- From:

[flexcoders] Help regarding WebServices (FLEX) in Actionscript

2006-08-12 Thread Samuel Colak
var tsWS:WebService = new WebService(); tsWS.wsdl = http://www.ifeel3.com/webservices/service.asmx?WSDL;; tsWS.loadWSDL(); var op:AbstractOperation = tsWS[createUser]; tsWS.addEventListener(result, doResults); tsWS.addEventListener(fault, doFailed);

[flexcoders] MyPrintPreview,,,,,how to print images?

2006-08-12 Thread tonyx_788
this print example is from the Flex help it just prints the textwhat i want is to print the image on my swfLoader or mx:image componentany one know how to do it i already try the live docs UICOMPONENT class but don't know which one is itimport mx.printing.FlexPrintJob;import MyPrintView;

[flexcoders] Re: window and firering functions

2006-08-12 Thread arnold_charming
Hi! i've made it work :) I think the problem was in the way how I changed views in viewstack. Now I change the view and make the component invisible. Because of that, now every time I make my component visible, a visible event is fired. And in that visible event I can change my views. Thanks for

[flexcoders] loading xml

2006-08-12 Thread aaron smith
how do I load local XML? I was doing this:private function loadXML():void { myXML = new XML(); myXMLURL = new URLRequest(XML_URL); myLoader = new URLLoader( menu.xml); myLoader.addEventListener(complete, xmlLoaded); }private function xmlLoaded():void { myXML =