welcome
you can not attach the file until you have so many posts
you can put it on a download site and ref the address minus www etc
you can post code though ... which i highly recommend with all postings
the main problem with going from 6 to 8 is normally stricter number declarations
in 6 you could declare a num without giving it a value and it would default to 0; however in 8 you would have to give all numbers a value at start
eg
var num:Number
num++
works in 6 but not in 8
in 8 it would like
var num:Number=0
num++
Last edited by neilmmm; 05-03-2012 at 07:47 PM.
|