if i had character variables stored in an array[], and want to print it out, how do i get rid of the “commas” in between the text’s.
eg
myArray[12] //contains “hello there” stored as seperate characters.
//where outFile is the text display box.
outFile = myArray;
//gives:-
h,e,l,l,o,t,h,e,r,e
//how do i get roung this so that it prints
hello there
//with no comma’s
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              2
              
             
            
              outFile = “”;
for(i=0; i < myArray.length; i++) outFile += myArray[**i];
trace(outfile);
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              3
              
             
            
              is it possible to change the font of certain selected characters, whilst keeping the rest as default
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              4
              
             
            
              not in the trace output
though you can edit display in text boxes for example using html
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              5
              
             
            
              no, i mean in normal output, to a textbox or something.
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              6
              
             
            
              oh i c, the array thing works great thanks
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              7
              
             
            
              Just as a notice, there’s a method that can do that for you:
myArray=["h","e","l","l","o"," ","t","h","e","r","e"];
a=myArray.join("");
trace (a);
pom 