Search found 236 matches

by Tetrachromat
Mon Jan 29, 2024 11:21 am
Forum: Air Manager Help
Topic: FPS loss with AM cut in half
Replies: 6
Views: 617

Re: FPS loss with AM cut in half

I had the same issues with loosing about 50% fps (going from 55 to about 28) with some other panels (FBW A320 from yves). The issue resolved when I replaced the AirManager plugin (4.2 BETA) with the stable release plugin (4.1). Now I loose only about 10% fps (going down from 55 to about 50). What pl...
by Tetrachromat
Sat Jan 27, 2024 10:52 pm
Forum: Air Manager Help
Topic: AirManager plugin - BETA or standard release ?
Replies: 3
Views: 346

Re: AirManager plugin - BETA or standard release ?

Maybe my question should have been: What am I loosing if I revert to the stable version of the plugin? I am asking beacuse the BETA version is flooding the SimConnect log with that much log entries (250 entries per second) that I connot trace/tail my own log entries. the log size grows at a pace not...
by Tetrachromat
Sat Jan 27, 2024 10:30 pm
Forum: Air Manager Help
Topic: AirManager plugin - BETA or standard release ?
Replies: 3
Views: 346

AirManager plugin - BETA or standard release ?

What is the benefit of using the plugin BETA release?

Currently, I am on Air Manager 4.2.4. I enjoy it very much.

But why should I use the BETA plugin instead of the stable version?
by Tetrachromat
Tue Feb 14, 2023 8:09 am
Forum: Lua and API Scripting Help
Topic: Persisting an entire table
Replies: 8
Views: 862

Re: Persisting an entire table

This is not a correct application of persistence. You might need to read the WIKI first. Check out the examples there.
by Tetrachromat
Sun Feb 05, 2023 5:38 pm
Forum: Under development and finished work
Topic: "Easy Gauges" - No Coding - Full Functionality for Simple Gauges and More
Replies: 30
Views: 4691

Re: "Easy Gauges" - No Coding - Full Functionality for Simple Gauges and More

Ok, now I got it. This is a barometer card behind the altimeter faceplate. That card would be used as indicator image for a separate barometer gauge. This is the way how it is done in AirManager. It requires that the barometer scale is a part of the image itself not a canvas on top of that image, be...
by Tetrachromat
Sat Feb 04, 2023 11:46 pm
Forum: Under development and finished work
Topic: "Easy Gauges" - No Coding - Full Functionality for Simple Gauges and More
Replies: 30
Views: 4691

Re: "Easy Gauges" - No Coding - Full Functionality for Simple Gauges and More

... How would I get i.e. (L:ENGINE CYLINDER1 TEMPERATURE:index, Celcius) displayed? Actually this should work out of the box in AM using fs2020_variable_subscribe("L:ENGINE CYLINDER1 TEMPERATURE:1", "Celcius", callback) in the easygauge JSON specify: "variable" : [ &qu...
by Tetrachromat
Fri Feb 03, 2023 1:32 pm
Forum: Under development and finished work
Topic: "Easy Gauges" - No Coding - Full Functionality for Simple Gauges and More
Replies: 30
Views: 4691

Re: "Easy Gauges" - No Coding - Full Functionality for Simple Gauges and More

There is a solution to curved text, inspired from works by @Sling (see community library): Unfortunately, for proportionally spaced fonts it does not produce nice text curved text.png For non-proportional (monospaced) fonts it should work. However there are no default monospaced fonts in AirManager....
by Tetrachromat
Fri Feb 03, 2023 11:24 am
Forum: Under development and finished work
Topic: "Easy Gauges" - No Coding - Full Functionality for Simple Gauges and More
Replies: 30
Views: 4691

Re: "Easy Gauges" - No Coding - Full Functionality for Simple Gauges and More

Hi Pieter,

PM sent with the answers. Actually my Inbox is quite empty. When you send a PM it will stay in your Outbox until I read the message. This is not an indication that my Inbox is full.

The next release will at least support a separate color for the minor marks.

Paul
by Tetrachromat
Wed Jan 18, 2023 8:25 pm
Forum: Air Manager Bug Reports
Topic: Small Feature Errors
Replies: 49
Views: 3872

Re: Small Feature Errors

I have not used the _fill primitive , so I'm surprised that it uses a different geometry as _stroke primitive. with _stroke only: Canvas = canvas_add(1,1,5,5) canvas_draw(Canvas, function() _rect(1,1,3,3) _stroke("blue",1) end) gives: stroke.png with _fill only: Canvas = canvas_add(1,1,5,5...