//variables


//on document ready
$(document).ready(function() {
	pageInit();									   


	 $(".stickerAppText").keyup(function(event) { 
		updateFlashApp();
	}); 

	$('.stickerAppColor').change(function() {
		updateFlashApp(); 
	});
	$('.stickerAppFont').change(function() {
		updateFlashApp();	
	});
	$('.stickerAppWidth').change(function() {
		updateFlashApp();					
	});
}
);

//functions
function updateFlashApp(){
	$('#stickerapp')[0].sendToActionScript($(".stickerAppText").val() + "~#~"  + $(".stickerAppColor").val() + "~#~"  + $(".stickerAppFont").val() + "~#~"  +  $(".stickerAppWidth").val());
	 
	//$('#stickerapp')[0].sendToActionScript($(".stickerAppText").val() + ", "  + $(".stickerAppColor :selected").text() + ", "  + $(".stickerAppFont :selected").text() + ", "  +  $(".stickerAppWidth :selected").text());
}

     var jsReady = false;
     function isReady() {
         return jsReady;
     }
     function pageInit() {
         jsReady = true;
     }
	 
     function sendToJavaScript(value) {
		 alert("ActionScript says: " + value);
     }

