Re: [flexcoders] How can I call a function from a class?

2009-04-06 Thread - -
Thanks everyone for the great help! I got it working :) -David From: Paul Andrews p...@ipauland.com To: flexcoders@yahoogroups.com Sent: Monday, April 6, 2009 1:52:17 PM Subject: Re: [flexcoders] How can I call a function from a class? Declare a class

[flexcoders] How can I call a function from a class?

2009-04-06 Thread sailorsea21
Hi everyone, How can I call a function from a class? // MAIN FILE import test.layout; private function callClassFunction():void { test.layout_QT.traceTest(); } // CLASS FILE layout.as package test { public class layout { public function

Re: [flexcoders] How can I call a function from a class?

2009-04-06 Thread Paul Andrews
: sailorsea21 sailorse...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, April 06, 2009 6:36 PM Subject: [flexcoders] How can I call a function from a class? Hi everyone, How can I call a function from a class? // MAIN FILE import test.layout; private function callClassFunction():void

Re: [flexcoders] How can I call a function from a class?

2009-04-06 Thread Paul Andrews
LOL Tim got there first! - Original Message - From: Paul Andrews p...@ipauland.com To: flexcoders@yahoogroups.com Sent: Monday, April 06, 2009 6:52 PM Subject: Re: [flexcoders] How can I call a function from a class? Declare a class instance, or make the function static. It's