Sign in to follow this  
MasterMind

How split data inthe MSLine.swf?

Recommended Posts

I want to use the next  data as 'display' :

xmlData.Append(

"<categories>");

xmlData.Append(

"<category label='1 2004' /> ");

xmlData.Append(

"<category label='2 2004' /> ");

xmlData.Append(

"<category label='3 2005' /> ");

xmlData.Append(

"<category label='1 2005' /> ");

xmlData.Append(

"<category label='2 2006' /> ");

xmlData.Append(

"<category label='3 2006' /> ");

xmlData.Append(

"<category label='1 2007' /> ");

xmlData.Append(

"</categories>");

but using in coordinate points as

 

xmlData.Append("<categories>");

xmlData.Append("<category label='start 1 2004' /> "); // no display

....

xmlData.Append("<category label='1 2004' /> "); // display

....

xmlData.Append("<category label='stop 1 2004' /> "); // no display

xmlData.Append("<category label='start 2004' /> ");

xmlData.Append("<category label='2 2004' /> ");

xmlData.Append("<category label='sttop 2004' /> ");

...

how to make this?

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this