Hello, I want to modify the tilesix script in order that it works in this way:
 
	When activated by pressing a button it should appear on the monitor a request to input a number
 
	Each number (one for each aircraft type) correspond to a specific panels positioning on the screens
 
	example if for the variable "aircraft" is assigned the number 1 that can correspond to the Learjet 45 the following are executed
 
	ext.position("Electrical", 0, 0, 40, 20,3) 
	ext.position("APU", 40, 20, 20, 15,3) 
	ext.position("Throttle quadrant", 0, 20, 40, 76,3) 
	ext.position("Trim", 65, 0, 20, 15,3) 
	ext.position("Fuel", 40, 0, 25, 20,3)
 
	on the other hand if to the variable aircraft is assigne the number 2 than can correspond to the "grumman" the following are executed
 
	ext.position("Electrical", 28, 70, 35, 21,3) 
	ext.position("Trim", 0, 70, 28, 26,3) 
	ext.position("Fuel", 0, 48, 50, 22,3) 
	ext.position("Overhead Panel", 0, 3, 68, 46,3) 
	ext.position("Radio stack", 68, 3, 26, 71,3) 
	ext.position("Landing Gear", 50, 48, 15, 22,3)
 
	 
 
	Better if the script can automatically recognize the aircraft type.
 
	Can anyone help me?
 
	Cristiano