You could call the second function from the first (and have a paramater so it only runs the second function if you send the paramater).
function funct1(runNext){ //do something if(runNext){ funct2(); } } function funct2(){ //do whatever } to call only the first function: funct1(); to call both: funct1(true); On 8/9/06, Matt Comstock <[EMAIL PROTECTED]> wrote:
Thank you. What would I have to change to make is AS2 compatible? On 8/9/06, eric dolecki <[EMAIL PROTECTED]> wrote: > > this is AS3: > > http://www.senocular.com/flash/actionscript.php?file=ActionScript_3.0/com/senocular/events/Sequence.as > > > On 8/9/06, Matt Comstock <[EMAIL PROTECTED]> wrote: > > > > I am a newbie to flash and I did search flashcoders prior to asking this > > question. My issue is that I have two function that I am trying to call > > when a user selects a cell in a datagrid. One function loads a flv file > > and > > the other loads an associated XML file. These functions work perfectly > if > > I > > create two separate buttons to execute the function in the UI. I would > > like > > to be able to have the user select a value in a datagrid and after they > > select/cellpress the value execute function one, then after function one > > complete execute function two. > > > > Any help is greatly appreciated. > > > > Matt > > _______________________________________________ > > Flashcoders@chattyfig.figleaf.com > > To change your subscription options or search the archive: > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > > > Brought to you by Fig Leaf Software > > Premier Authorized Adobe Consulting and Training > > http://www.figleaf.com > > http://training.figleaf.com > > > _______________________________________________ > Flashcoders@chattyfig.figleaf.com > To change your subscription options or search the archive: > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > Brought to you by Fig Leaf Software > Premier Authorized Adobe Consulting and Training > http://www.figleaf.com > http://training.figleaf.com > _______________________________________________ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
_______________________________________________ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com