August 19, 200520 yr Hello all ,Who could tell me what's wrong with this code.Trying to increase/decrease course with left right click but it doesn't work.See the hand cursor on the gauge but there's no effectThks by advance(M:Event) 'LeftSingle' scmp 0 == if{ (>K:VOR1_OBI_DEC)} els {(M:event) 'RightSingle' scmp 0 ==if {(>K:VOR1_OBI_INC)}}
August 19, 200520 yr Author Moderator The "els" is incorrect. You really need two mouse events like this:(M:Event) 'RightSingle' scmp 0 == if{ (>K:VOR1_OBI_DEC) } (M:Event) 'LeftSingle' scmp 0 == if{ (>K:VOR1_OBI_INC) }Aside from that, you MUST be sure to put NO SPACE between the if and the "curly brace," and leave one space AFTER the brace, i.e.,if{ leave_space_at_each_end } Fr. Bill AOPA Member: 07141481 AARP Member: 3209010556 Avsim Board of Directors | Avsim Forums Moderator
Create an account or sign in to comment