is there something wrong in this code that i am just not seeing?
cuz it aint working.
it works on a “small scale” but not on a “large scale”
this is small scale:
www.newfangledworld.com/flvTest2.html
this is large scale:
www.newfangledworld.com/flvTest3.html
(buttons are in film strip at the bottom)
var netConn:NetConnection = new NetConnection();
// create a local streaming connction
netConn.connect(null);
//create NetStream object and define an onStatus() function
var mynetStream:NetStream = new NetStream(netConn);
BJnameThNbutton.onRelease = function(){
myVideo.attachVideo(mynetStream);
mynetStream.play(“BJ_name_FLV.flv”);}
//bj button for email charm
BJ_emailcharmThNbutton.onRelease = function(){
myVideo.attachVideo(mynetStream);
mynetStream.play(“BJ_emailcharm_FLV.flv”);}
BJ_companionThNButton.onRelease = function(){
myVideo.attachVideo(mynetStream);
mynetStream.play(“BJ_companion_FLV.flv”);}
BJ_idtheft_button.onRelease = function(){
myVideo.attachVideo(mynetStream);
mynetStream.play(“BJ_identitytheft_FLV.flv”);}
BJ_lifechangeThNbutton.onRelease = function(){
myVideo.attachVideo(mynetStream);
mynetStream.play(“BJ_lifechanging_FLV.flv”);}
BJ_refreshThNbutton.onRelease = function(){
myVideo.attachVideo(mynetStream);
mynetStream.play(“BJ_refresh_FLV.flv”);}
BJ_confidenceThNbutton.onRelease = function(){
myVideo.attachVideo(mynetStream);
mynetStream.play(“BJ_refresh_FLV.flv”);}
why would the same exact scripts work on the small scale version but not the bigger project ?