[flexcoders] Re: Silly question? : Why do I have to create objects inside class functions?

2007-02-14 Thread helihobby
ageService = PageService.getInstance(); } --- In flexcoders@yahoogroups.com, "rumpleminzeflickr" <[EMAIL PROTECTED]> wrote: > > They are declared in the format > > public var pageService:PageService; > > > --- In flexcoders@yahoogroups.com, "helihobby&q

[flexcoders] Re: Silly question? : Why do I have to create objects inside class functions?

2007-02-14 Thread helihobby
I think you forgot to add var unless you define a private var at the top. --- In flexcoders@yahoogroups.com, "rumpleminzeflickr" <[EMAIL PROTECTED]> wrote: > > Hi, > > This maybe a really dumb question, but why I can't I create new > objects or even assign a null object a value in the class it

[flexcoders] (unknown)

2007-02-13 Thread helihobby
You can use event.target to get back to the calling instance, or use custom event. Read about custom events. Regards, Sean.

[flexcoders] Re: Any tips on how to do enable only vertical Sprite Drag and Drop ?

2007-02-12 Thread helihobby
width="10" height="20" > x="{ dragRule.x-dragger.width/2 }" y="62" > mouseDown="{ > dragger.startDrag( false, >new Rectangle( dragRule.x-dragger.width/2, dragRule.y, > dragRule.width, dragRu

[flexcoders] Any tips on how to do enable only vertical Sprite Drag and Drop ?

2007-02-10 Thread helihobby
Hello, Can anyone post a top on how to to enable only vertical Sprite Drag and Drop ? In other words, when the user drags a sprite, he can only drag it vertically accross the stage and not in any other direction ... !!! Thanks for the help, Sean.

[flexcoders] Re: Is it possble to drag and drop a line chart ?

2007-02-09 Thread helihobby
Or maybe another solution to the problem ? Regards, Sean. --- In flexcoders@yahoogroups.com, "helihobby" <[EMAIL PROTECTED]> wrote: > > Hello all, > > Can anyone shed some light on how ( if possible ) to drag a line chart > bar. > > Basically, I wish

[flexcoders] Is it possble to drag and drop a line chart ?

2007-02-08 Thread helihobby
Hello all, Can anyone shed some light on how ( if possible ) to drag a line chart bar. Basically, I wish to modify the underline data provider using a line chart with a drag and drop mouse click so when I drag a bar it will modify the underline data structure... Thank you for all the help, S

[flexcoders] Re: When Inheriting from Application Class Flex ignores the line: xmlns:mx="http....

2007-02-05 Thread helihobby
Never mind ... got it... http://www.adobe.com/2006/mxml"; implements="ABC"> --- In flexcoders@yahoogroups.com, "helihobby" <[EMAIL PROTECTED]> wrote: > > Hello, > > I have an ActionScript 3.0 Class which is: > > AppSSL: > -

[flexcoders] Is it possible to extends an Interface to an MXML Component ?

2007-02-05 Thread helihobby
Of course you can extends an custom interface to an Action Script Class. But is it possible to extend an Interface to an MXML Components ? If so, what's the syntax ? Regards, Sean.

[flexcoders] When Inheriting from Application Class Flex ignores the line: xmlns:mx="http....

2007-02-05 Thread helihobby
Hello, I have an ActionScript 3.0 Class which is: AppSSL: --- package dynaLib.common.classes { import mx.core.Application; public class AppSSL extends Application {} ... I also have an MXML AppMain Application which Inherits from AppSSL: AppMain: -

[flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-03 Thread helihobby
lection = new XMLListCollection(xmlList); > var b:XMLListCollection = new XMLListCollection(a.source); > > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of helihobby > Sent: Friday, February 02, 2007 10:46 AM > To: fle

[flexcoders] What is the best Flex Message Board ( Other than this group Yahoo ) ?

2007-02-02 Thread helihobby
What is the best Flex Message Board ( Other than this group Yahoo ) ? Thanks for the help, Sean.

[flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread helihobby
I see the traces for but nothing for :( --- In flexcoders@yahoogroups.com, "Brian Dunphy" <[EMAIL PROTECTED]> wrote: > > import mx.utils.ObjectUtil; > > var newList:Object = ObjectUtil.copy(oldList); > > Cheers, > &g

[flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread helihobby
rt mx.utils.ObjectUtil; > > var newList:Object = ObjectUtil.copy(oldList); > > Cheers, > > Brian > > On 2/1/07, helihobby <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > > > > Can anyone please post sample code of how to

[flexcoders] How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-01 Thread helihobby
Can anyone please post sample code of how to make a copy of a XMLListCollection. Not a copy of the instance object but a new XMLListCollection object. Thank you for all the help, Sean.

[flexcoders] Possible to update an XML List collection while keeping a Tree Control open ?

2007-01-31 Thread helihobby
Hello, I have an XMLListCollection which is used as a data source for a Tree control. The problem is that when I get a new update from an HTTP Service, the Binding updates the complete Tree thus closing all current Leafs. Is it possible to keep the folders / leafs keep their state while after

[flexcoders] Re: Is it possible to Inheirt from an MX Application inside of an MX Application ?

2007-01-30 Thread helihobby
is definitely an oversight where the UI team missed a valid > architecture. > > > > Or maybe someone here will have a workaround. > > > > Tracy > > > > ____ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PR

[flexcoders] Re: Is it possible to Inheirt from an MX Application inside of an MX Application ?

2007-01-30 Thread helihobby
rly and it was fixed in the 1.5 FB > release. Many people are using "code behind". suggesting this is only > an FB issue. Not that that makes it any better for you if you use design > mode regularly! > > > > Tracy > > > > _

[flexcoders] Re: Is it possible to Inheirt from an MX Application inside of an MX Application ?

2007-01-29 Thread helihobby
___ > > Andrew Trice > > Cynergy Systems, Inc. > > http://www.cynergysystems.com > > > > Blog: http://www.cynergysystems.com/blogs/page/andrewtrice > > Email: [EMAIL PROTECTED] > > Office: 866-CYNERGY > > >

[flexcoders] Re: Is it possible to Inheirt from an MX Application inside of an MX Application ?

2007-01-29 Thread helihobby
dobe.com/2006/mxml"; > Flex Builder will not allow you to go to Design Mode complaining "Error in line 2" Any idea ... :( Regards, Sean. --- In flexcoders@yahoogroups.com, "helihobby" <[EMAIL PROTECTED]> wrote

[flexcoders] Is it possible to Inheirt from an MX Application inside of an MX Application ?

2007-01-29 Thread helihobby
Is it possible to Inheirt from an MX Application inside of an MX Application ? We wish to make two MX applications. One called: ApplicationSecure ( file name is ApplicationSecure ) and One called: ApplicationMain ( file name is ApplicationMain ) ApplicationSecure header looks normal suc

[flexcoders] Re: How to convert XMLList Collection to an ArrayCollection ?

2007-01-28 Thread helihobby
ranges. > > Although XMLList looks like an array it isn't. > > Peace, Mike > > On 1/25/07, Danko Kozar <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]> > wrote: > > Have you tried: > > myDP = xmlData.partsList.catalog as ArrayCollection; >

[flexcoders] How to convert XMLList Collection to an ArrayCollection ?

2007-01-24 Thread helihobby
Hello, I have XML data which comes back from a server via a custom socket. How can I convert that the to an ArrayCollection ? If I try: myDP = new ArrayCollection(); myDP = ArrayCollection(xmlData.partsList.catalog); I get a runtime error the XML List collection can no

[flexcoders] Re: Where do you download Flex 2.0.1 ?

2007-01-12 Thread helihobby
--- In flexcoders@yahoogroups.com, "helihobby" <[EMAIL PROTECTED]> wrote: > > Where do you download the newer 2.0.1 version ? > Regards, > Sean. > Found it ... on Adobe / Flex / Support page ...

[flexcoders] Where do you download Flex 2.0.1 ?

2007-01-12 Thread helihobby
Where do you download the newer 2.0.1 version ? Regards, Sean.

[flexcoders] How do you get the color changed for a Radio Button Label for mouseOnRollOver ?

2007-01-12 Thread helihobby
How do you get the color changed for a Radio Button Label ? I changed the label color no problem using the CSS ( or Inlline Tag ) using the color: #FF no problem. But I can't seem to be able to change the color of the lable text WHEN THE MOUSE is over it. I tried a few tags and nothing wor

<    1   2