RE: [flexcoders] Dynamically generating tabs:: using the createTab() Method

2006-02-17 Thread ashish



ok, i didn't worked on flex2, createchild is available in 1.5-ashish On Fri, Feb 17, 2006 at 6:44 AM, Gordon Smith wrote:createChild() was from Flex 1.X. In Flex 2.0 you would do var vbox:VBox = new VBox(); vbox.label = ...; tabs.addChild(vbox); - Gordon ___From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Daniel Nelson Sent: Thursday, February 16, 2006 2:36 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Dynamically generating tabs:: using the createTab() Method ashish, I can't seem to find createChild in the flex api? Where are you getting this method from? I only see addChild(). -Dan On 2/15/06, ashish  [EMAIL PROTECTED] wrote: function addtab(){ tabs.createChild(mx.containers.VBox , undefined, {label:'newBtn',id:'secondOne', mouseDown:'doSomething()'}); //tabs is tabnavigator name and this addtab button has to call on some event } regards, Ashish Grover On Wed, Feb 15, 2006 at 11:33 PM, augie wrote:  Hello,  Does anyone have an example of Dynamically generating tabs and its  content in a Tab Navigator say by clicking a button for example.   Thanks in advance for all your help,  -Augie Marcello III   --  Flexcoders Mailing List  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:  http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups  Links   -- Sent using Laszlo Mail. Try it yourself. http://www.laszlomail.com http://www.laszlomail.com/ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKS Web site design development http://groups.yahoo.com/gads?t=msamp;k=Web+site+design+developmentamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=L-4QTvxB_quFDtMyhrQaHQ Computer software development http://groups.yahoo.com/gads?t=msamp;k=Computer+software+developmentamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=lvQjSRfQDfWudJSe1lLjHw Software design and development http://groups.yahoo.com/gads?t=msamp;k=Software+design+and+developmentamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=1pMBCdo3DsJbuU9AEmO1oQ Macromedia flex http://groups.yahoo.com/gads?t=msamp;k=Macromedia+flexamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=OO6nPIrz7_EpZI36cYzBjw Software development best practice http://groups.yahoo.com/gads?t=msamp;k=Software+development+best+practiceamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=f89quyyulIDsnABLD6IXIw ___YAHOO! GROUPS LINKS  • Visit your group  flexcoders http://groups.yahoo.com/group/flexcoders  on the web.  • To unsubscribe from this group, send an email to: [EMAIL PROTECTED] • Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service http://docs.yahoo.com/info/terms/ . ___-- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKS Web site design development http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ Computer software development http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw Software design and development http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ Macromedia flex http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw Software development best practice http://groups.yahoo.com/gads?t=msk=Software+development+best

Re: [flexcoders] Dynamically generating tabs:: using the createTab() Method

2006-02-17 Thread ashish



Hi,I have tried it its available, you can createchild of any container in flex.-ashish grover On Fri, Feb 17, 2006 at 4:06 AM, Daniel Nelson wrote:ashish, I can't seem to find createChild in the flex api? Where are you getting this method from? I only see addChild(). -Dan On 2/15/06, ashish  [EMAIL PROTECTED] wrote: function addtab(){ tabs.createChild(mx.containers.VBox , undefined, {label:'newBtn',id:'secondOne', mouseDown:'doSomething()'}); //tabs is tabnavigator name and this addtab button has to call on some event } regards, Ashish Grover On Wed, Feb 15, 2006 at 11:33 PM, augie wrote:  Hello,  Does anyone have an example of Dynamically generating tabs and its  content in a Tab Navigator say by clicking a button for example.   Thanks in advance for all your help,  -Augie Marcello III   --  Flexcoders Mailing List  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:  http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups  Links   -- Sent using Laszlo Mail. Try it yourself. http://www.laszlomail.com http://www.laszlomail.com/ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKS Web site design development http://groups.yahoo.com/gads?t=msamp;k=Web+site+design+developmentamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=L-4QTvxB_quFDtMyhrQaHQ Computer software development http://groups.yahoo.com/gads?t=msamp;k=Computer+software+developmentamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=lvQjSRfQDfWudJSe1lLjHw Software design and development http://groups.yahoo.com/gads?t=msamp;k=Software+design+and+developmentamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=1pMBCdo3DsJbuU9AEmO1oQ Macromedia flex http://groups.yahoo.com/gads?t=msamp;k=Macromedia+flexamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=OO6nPIrz7_EpZI36cYzBjw Software development best practice http://groups.yahoo.com/gads?t=msamp;k=Software+development+best+practiceamp;w1=Web+site+design+developmentamp;w2=Computer+software+developmentamp;w3=Software+design+and+developmentamp;w4=Macromedia+flexamp;w5=Software+development+best+practiceamp;c=5amp;s=166amp;.sig=f89quyyulIDsnABLD6IXIw ___YAHOO! GROUPS LINKS  • Visit your group  flexcoders http://groups.yahoo.com/group/flexcoders  on the web.  • To unsubscribe from this group, send an email to: [EMAIL PROTECTED] • Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service http://docs.yahoo.com/info/terms/ . ___-- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKS Web site design development http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ Computer software development http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw Software design and development http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ Macromedia flex http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw Software development best practice http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw ___YAHOO! GROUPS LINKS  • Visit your group  flexcoders http://groups.yahoo.com/group/flexcoders  on the web.  • To unsubscribe from this group, send an email to: [EMAIL PROTECTED] • 

RE: [flexcoders] Dynamically generating tabs:: using the createTab() Method

2006-02-16 Thread ashish
function addtab(){
tabs.createChild(mx.containers.VBox , undefined, 
{label:'newBtn',id:'secondOne', mouseDown:'doSomething()'});
//tabs is tabnavigator name and this addtab button has to call on some 
event
}

regards,
Ashish Grover

On Wed, Feb 15, 2006 at 11:33 PM, augie wrote:

 Hello,
 Does anyone have an example of Dynamically generating tabs and its
 content in a Tab Navigator say by clicking a button for example.

 Thanks in advance for all your help,
 -Augie Marcello III





 --
 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








-- 
Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com



--
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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Dynamically generating tabs:: using the createTab() Method

2006-02-16 Thread Daniel Nelson



ashish,

I can't seem to find createChild in the flex api? Where are you getting this method from? I only see addChild().

-Dan
On 2/15/06, ashish [EMAIL PROTECTED] wrote:
function addtab(){tabs.createChild(mx.containers.VBox , undefined, {label:'newBtn',id:'secondOne', mouseDown:'doSomething()'});
//tabs is tabnavigator name and this addtab button has to call on some event}regards,Ashish GroverOn Wed, Feb 15, 2006 at 11:33 PM, augie wrote: Hello, Does anyone have an example of Dynamically generating tabs and its
 content in a Tab Navigator say by clicking a button for example. Thanks in advance for all your help, -Augie Marcello III -- 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-- Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com
--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
SPONSORED LINKS 




Web site design development 

Computer software development 

Software design and development 


Macromedia flex 

Software development best practice 


YAHOO! GROUPS LINKS 

Visit your group flexcoders on the web. 
To unsubscribe from this group, send an email to:
[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Dynamically generating tabs:: using the createTab() Method

2006-02-16 Thread Gordon Smith










createChild() was from Flex 1.X. In Flex
2.0 you would do



var vbox:VBox = new VBox();

vbox.label = ...;

tabs.addChild(vbox);



- Gordon











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Daniel Nelson
Sent: Thursday, February 16, 2006
2:36 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
Dynamically generating tabs:: using the createTab() Method







ashish,











I can't seem to find createChild in the flex api? Where are you
getting this method from? I only see addChild().











-Dan







On 2/15/06, ashish
[EMAIL PROTECTED]
wrote: 

function addtab(){
tabs.createChild(mx.containers.VBox , undefined, 
{label:'newBtn',id:'secondOne',
mouseDown:'doSomething()'}); 
//tabs is tabnavigator name and this addtab button
has to call on some 
event
}

regards,
Ashish Grover

On Wed, Feb 15, 2006 at 11:33 PM, augie wrote:

 Hello,
 Does anyone have an example of Dynamically generating tabs
and its 
 content in a Tab Navigator say by clicking a button for
example.

 Thanks in advance for all your help,
 -Augie Marcello III





 --
 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








-- 
Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 






SPONSORED
LINKS 




 
  
  Web site design development 
  
  
  Computer software development 
  
  
  Software design and development 
  
 
 
  
  Macromedia flex 
  
  
  Software development best practice 
  
  
  
  
 










YAHOO!
GROUPS LINKS





 Visit your group
 flexcoders
 on the web.
 
 To unsubscribe
 from this group, send an email to:
  [EMAIL PROTECTED]
 
 Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service.























--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Dynamically generating tabs:: using the createTab() Method

2006-02-15 Thread augie3333
Hello,
Does anyone have an example of Dynamically generating tabs and its
content in a Tab Navigator say by clicking a button for example.

Thanks in advance for all your help,
-Augie Marcello III





--
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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/