Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ckovoor

Members
  • Joined

  • Last visited

Everything posted by ckovoor

  1. Hi, Another way of solving this problem is to modify the LUA for use with FS2Crew: (1) Remove the call for After-Landing Flow; it is unnecessary. (2) Only precondition for computing and setting T/O Flap is that aircraft should be on Ground. Remove the condition that the engines should be running. (3) Only precondition for computing and setting Landing Flap is that aircraft should not be on Ground. So here is how to modify the LUA: Open the original LUA in Notepad or Notepad++ and search for this text: --returns 1 if on ground and engines not running, 2 if in air and 3 if on ground with engines running function GetState() local onGround = GetOnGround() local enginesRunning = 0 local eng1 = GetQ400Value(56911) local eng2 = GetQ400Value(56888) if (eng1 > 0 or eng2 > 0) then enginesRunning = 1 end if (onGround == 1) then if (enginesRunning == 1) then return 3 else return 1 end else return 2 end end and replace it entirely with this text: --returns 1 if on ground, 2 if in air function GetState() local onGround = GetOnGround() if (onGround == 1) then return 1 elseif (onGround == 0) then return 2 end end and then save the modified file as Q400VspeedsFS2C.lua in the Modules folder. You should now be able to select and assign this new LUA from your FSUIPC4 menu. Let me know if you have any problems with this mod. Chakko.
  2. Hello Mike, Thanks for your response. I am aware of Ryan Maziarz's post, and I am familiar with the whole 2-D panel discussion, but, in any case, thank you for reminding us all of the restrictions. The 2-D panels you have referenced are, unfortunately, far from adequate for my requirement, as they contain only the a part of the captain's main panel and a small part of the overhead. I would require bitmaps covering all the simulated areas. Nevertheless, thank you again for the suggestion. Regards, Chakko.
  3. Hi everyone, I am very keen on creating my own set of 2-D panels for the PMDG B777 for use on my 14-monitor touchscreen setup (6-monitor cockpit + 8-monitor visuals). It can be done using the FSUIPC offsets that Pete (Dowson) has just released for this aircraft. However, before I can proceed, I would need to find a good high resolution 2-D panel bitmap of the cockpit. Rather like the cockpit layout posters one can purchase (in paper-printed form) from Avsoft: http://www.avsoft.com/index.php?q=node/157 I would be grateful to anyone who can provide one or help me locate one. Please PM me if you have any suggestions. Thanks so much. Chakko Kovoor.
  4. Thank you for your pointers. I am in the process of writing and debugging ( ............. :o) my linked XML and LUA scripts, and so far, everything has worked well. Thank you!
  5. Hi everyone! This is with respect to the freeware Jeehell A320, which I have just discovered. As you may know, this is a cockpit-builder's software, but there are several 2-d panels and popups available. l'd like to adapt it completely for use with my touchscreen-based simulator which comprises 6 touchscreen monitors across which the 2-d panels can be distributed in their correct relative locations. To do this I am considering creating the remaining 2-d panels by (i) utilising various available 2-d panel bitmaps for the A320 (ii) creating xml gauges (mainly korry switches and knobs) to be mounted on these bitmaps (iii) linking these xml gauges to the FSUIPC offsets which Jeehell has published With respect to step (iii) I understand that an xml gauge cannot write directly to an FSUIPC offset, but I also understand that an xml gauge can store information about its state in an L:Var and that L:Var can be read/written to by FSUIPC. Since I would be creating the L:Var, identifying it would not be a problem. The sources for this information are: http://www.fsdeveloper.com/wiki/inde...toring_Strings and http://forum.avsim.net/topic/299204-...g-string-data/ Would anyone be able to comment on the correctness or otherwise of my understanding? Thank you very much for your time and trouble! Regards, Chakko.
  6. Hello Ray, I have used 3.5 mm jack splitters and successfully used two (and even three) headset-mikes on the same pc audio output with voxatc and other voice recognition-dependent programs. You might want to check if there is some hardware issue affecting your equipment. Chakko.
  7. Hello, It is possible to use ADE or AFX to edit the airport "AFCAD" to open/close individual runways for take-off/landing. I have done this at several airports and the AI follows the restrictions imposed. Regards, Chakko.
  8. Hello Johan, I have been successful in using 0.5.2 to 'cut out' portions of a panel window and display them elsewhere. I find that this is not possible anymore with version 1.0.3, with which the entire panel window must be broadcast, and not just a portion of it. Could you confirm that this is correct, and clarify whether this feature will be available on the multi-channel payware version. Thanks, Chakko.
  9. Sir, I am honoured that you should have contributed to my thread! Yes, I can see how your suggestion will work, as would increasing the touchscreen area (monitor size), and hence the panel size and gauge size (while maintaining aspect ratio). Let me see how this works with some of my payware aircraft. I am concerned about how changing gauge size would affect associated bitmaps, and positioning with respect to other gauges on the same panel. I have sent you a PM with links to photos of my setup. Regards, Chakko
  10. Hi, You could use FSXSpy; have a look at this thread: http://forum.avsim.net/topic/365861-viewing-instruments-on-remote-computer/?hl=fsxspy#entry2301659 Regards, Chakko Kovoor.
  11. Hi, I run a multi-monitor touchscreen-based setup, with FSX and FS9 (both with registered FSUIPC) on Win7 x64. I have been experiencing an annoying problem with the undocked 2-D cockpit panels on my touchscreens. Sometimes, while attempting to right-click on a button or knob I 'miss' the location, and touch an adjacent area where there is no clickspot, thus invoking instead the right-click context menu, with the options: Undock Window (ticked)/ Close Window/Hide Menu Bar, as seen in the screenshot: A second (inadvertent) click on this will untick the option "Undock Window" causing the panel window to re-dock, thus upsetting the panel layout. I don't know if others have also experienced this while operating FS. I am wondering if there is any way (lua script or xml gauge or windows registry edit or anything else) of managing the FSX Right-Click Context Menu to solve this problem. Possible strategies might include: (1) disable or toggle availability of the FSX right-click context menu, (2) edit (add an item to) the right-click context menu, so that the first item is "close the menu". I would be grateful if others could share their thoughts or ideas about this. Regards, Chakko.
  12. I have deactivated the following in Samsoft-TheVerySingaporeX/scenery:AFXWSSS.BGLairbuilding.bglCGRD.BGLCHAGIFREIGHT.BGLchangi_grd.bglCHANGIGATE.BGLCHANGITERM.BGLCHANGITREES.BGLI have no problems or conflicts so far, but would be interested in knowing what others have done.Thanks.
  13. Hi,I operate FSX on a network of 7 computers (using FSUIPC4, WideFS and WidevieW X):(1) Server PC: FSX, FSUIPC, WidevieW X Server, WideFS Server: 4 touchscreen monitors: used for Instrument panels exclusively(2) FIVE Client notebook PC's: FSX, WidevieW X Client, FSUIPC: used for Outside scenery views exclusively: driving 5 widescreen monitors across a 180 degrees f-o-v(3) Client PC: WideClient, Jeppesen Navigation Suite: 1 touchscreen monitor: used for Jeppesen Nav Tracking only.My question is about the HUD in 737 NGX. My understanding is that since the HUD is an extension of the instrument panel, it would be possible to display it only on my Server PC. However, the HUD is really a superimposition on the 0-degree (forward) external view generated by my central Client PC networked through WidevieW X. Is there any way I could get the 737 NGX HUD directed to that single client PC?Thanks,Chakko.
  14. Hi,I am having exactly the same problem with my networked FS9 installation of ASE. Could you enlighten me on what you had done wrong initially, so I could check if I am making the same error?Thanks!
  15. Hi,I have RCv4.3 installed on a networked Client PC connected via WideFS. The RC sounds are delivered on the Client PC's speaker. I am finding the (relative) volume of the Chatter too high for comfort, and wanted to reduce it vis a vis the ATC/Co-Pilot conversation. How might I achieve this?Thanks!
  16. Hi,Started using RCv4.3 with various payware add-on aircraft in FS9.1. My RCv4.3 is installed on a Client PC in a WideFS-enabled network. I found, after much experimentation, that the only keyboard assignments that would be recognised by RC are the numbers 0 to 9, and Ctrl-0 to Ctrl-9 and Shift-0 to Shift-9. I could not get any pure letters (a-z) or Sh-letters or Ctrl-letters to work. I checked and double-checked for keyboard assignment conflicts and am fairly certain the problem does not lie there. Although I have now got full functionality of RCv4.3 with the 30 keys I have found usable on my system, I would be interested to know if anyone else (with a similar or different setup) has faced the same issue. I am not certain that the problem has anything to do with WideFS or the network, actually, as I have not tested an RCv4.3 installation on my Server PC (which I use exclusively to run FS and aircraft Instrument Panels).Thanks.
  17. I am running MS FS 2004 with 4 touchscreen monitors of which 2 are the new HP L2105tm monitors (with native Win 7 drivers) and the other 2 are AOC touchscreens (wth AMS Touchkit drivers) based on the older 5-wire resistive technology. In order to enable right-click via single-touch on the touch-screens, I use a floating toolbar swap-mouse-button utility (it interchanges left- and right-clicks when you enable it). This utility works perfectly under Win 7, in that the AOC touchscreens respond to single-touch with a right-click when the mouse buttons are so swapped with the utility. The HP L2105tm touchscreens however, will not. Under single-touch they will ONLY respond with a left-click, even when the mouse buttons are swapped.To double check, I clicked within the monitor desktop area using the physical mouse, and I was able to swap button clicks normally. But touch functionality is restricted to left-click only. Has anyone else faced this problem, and is there any solution?It could be a Win 7 issue as the AOC touchscreen monitors (which have their own drivers - these are not native Win 7 drivers) respond with right-click to single-touch under these conditions. Also the physical mouse responds to the swap-button program when clicked within the HP monitor. It has something to do with the HP monitor/Win 7 touch drivers itself. Please help!Multi-touch gestures (press and tap with second finger = right-click) as supported by Win 7 do indeed work normally on the HP touchscreen, but they are not easy to use within cockpit panels, so I do not want to use that route.I should add that I did try reloading the drivers, and updating them with the latest available, and also tried installing the NextWindow touchscreen drivers as offered by HP on their driver support for their Touschmart line, but the problem remains. It is indeed peculiar, because the physical mouse working within the "display environment" of the monitor responds to the swap-button utility. It is only that the "touch environment" of the monitor is not similarly responsive
  18. Thank you so much for your prompt reply. I have downloaded the utility and will be trying it out soon. Thanks again, Jim.
  19. Any way you could lead me to the corresponding utility for VISTA? I need to increase the volume of my runway rollout/touchdown sounds. Thanks.Chakko.
  20. Hi,I plan to purchase the PMDG 747-400 for FSX shortly, by direct download., and install on my HP laptop. I have a couple of questions about the activation process:(1) Can I download to another computer, copy the files onto a CD and then install on my HP laptop, and then activate the software?(2) I plan to assemble a high-end desktop based gaming system a month from now. Will I be permitted to re-install the software on this second personal machine?Thanks.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.