February 15, 200620 yr I'm trying to use the left and right mouse buttons to operate the pitot heat switch. The left button will turn it on but the right one won't work. What am I doing wrong here? (I based this on what I was able to glean about the use of mouse events in the fs9gps file but I'm not a programmer and don't fully understand the complicated syntax.)(A:Pitot heat,bool)(M:Event) 'LeftSingle' scmp 0 == (>K:PITOT_HEAT_ON) 0 == and if{ 1 (K:PITOT_HEAT_OFF) (M:Event) 'RightSingle' scmp 0 == (>K:PITOT_HEAT_OFF) 0 == and if{ 1 (K:PITOT_HEAT_ON)Cheers, Bob Dell410, Core2Duo E6700, 2.66Ghz, 2GB ram, nVidia 7900GTX/512MB/195.62 driver, FSX/sp1, UTX USA, Fsgenesis
February 15, 200620 yr Hi,Try this:(M:Event) 'LeftSingle' scmp 0 == if{ (>K:PITOT_HEAT_ON) }(M:Event) 'RightSingle' scmp 0 == if{ (>K:PITOT_HEAT_OFF) }Tom
February 15, 200620 yr Author Thank you Tom - - - That works perfectly!Bob Dell410, Core2Duo E6700, 2.66Ghz, 2GB ram, nVidia 7900GTX/512MB/195.62 driver, FSX/sp1, UTX USA, Fsgenesis
Create an account or sign in to comment