Results 1 to 2 of 2

Thread: Flash Input

  1. #1
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default Flash Input

    There's an input field on frame 1 the value is suppose to be pass threw 7 frames but its not working the value only goes to frame 2. The value comes up as undefined from frames 3-7.
    Any ideas? I'll 3 frames code below.
    1.:
    Code:
    stop();
    submit.onRelease = function() {
    	if ((bp.text == "y") or (bp.text == "Y")) {
    		if (total.text == "1") {
    			var sphoto:String = '****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****';
    			gotoAndStop(2);
    		MC.textField2 = sphoto; 
    		}
    	}
    };
    what.onRelease = function() {
    	gotoAndStop(7);
    };
    ^Deleted a bunch of the other options that are the same code basically so this could be read and posted Disregard if theres one of these "}" short or extra this is the frame that works and the next displays it right but the forwarding to the third doesn't.
    2.:
    Code:
    video.onRelease = function() {
    	/*START VIDEO*/
    	var svideo:String = '****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****';
    	/*END VIDEO*/
    	gotoAndStop(3);
    	MC.textField2 = svideo;
    };
    3.:
    Code:
    text2.onRelease = function() {
    	/*START TEXT*/
    	var stexts:String = '****XML CODE****';
    	/*END TEXT*/
    	gotoAndStop(4);
    	MC.textField2 = stexts;
    };
    photo.onRelease = function() {
    	/*START PHOTO*/
    	var sphoto:String = '****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****'+inputData.text+'****XML CODE****';
    	/*END PHOTO*/
    	gotoAndStop(2);
    	MC.textField2 = sphoto;
    };
    The fla is avalible here http://www.bluewalrus.net/output5.fla.
    Thanks for any help you have.

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    no ideas? you can try it here http://www.bluewalrus.net/output5.swf

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •