Search found 527 matches

by jedeen
Thu Sep 19, 2019 6:39 pm
Forum: Under development and finished work
Topic: PFD and ND for B738-800 ZIBOmod
Replies: 224
Views: 106317

Re: PFD and ND for B738-800 ZIBOmod

:D :D :D :D
Glad you sorted things out Malun
Happy flying
Have fun
Jedeen
by jedeen
Wed Sep 18, 2019 12:36 pm
Forum: Under development and finished work
Topic: PFD and ND for B738-800 ZIBOmod
Replies: 224
Views: 106317

Re: PFD and ND for B738-800 ZIBOmod

Malun, this answer is bij mobile phone. I can recreate your problem only by deleting a lot of code. Here is some advise for what you can do else. Be sure you have the latest plugin for am3.6 Delete your present version of the ND with the delete knop of AM Download again th ND from the g-drive. Be su...
by jedeen
Thu Sep 12, 2019 4:43 pm
Forum: Under development and finished work
Topic: PFD and ND for B738-800 ZIBOmod
Replies: 224
Views: 106317

Re: PFD and ND for B738-800 ZIBOmod

Hello Malun, I did some tests with the ND version that's currently online and with AM 3.6 and the newest ZiboMod and the newest X-Plane. The results you see below....everything is working fine. I have attached also my setting for the EFB and the setting for the fix page of the FMC. Of course I have ...
by jedeen
Thu Sep 12, 2019 9:23 am
Forum: Under development and finished work
Topic: PFD and ND for B738-800 ZIBOmod
Replies: 224
Views: 106317

Re: PFD and ND for B738-800 ZIBOmod

Hey Malun, At the moment I am in hospital an will be there for quite some time. I have my laptop with me but no secure wifi net. The way you discribe the bugs lets me think that zibo has changed some datarefs. I will see what I can do from here. What do you mean with direction arc....can you send a ...
by jedeen
Fri Jul 05, 2019 7:41 pm
Forum: Lua and API Scripting Help
Topic: Dashed Lines
Replies: 18
Views: 5703

Re: Dashed Lines

Corjan, It now has a system where it will repeat a pattern, you can get rid of that if you don't need that. Already done that, as you can see in that picture. Gilles: Don't worry, I figure that out by myself. Jaques: My own experiments used math.fmod....after all I already know the length of a dash ...
by jedeen
Fri Jul 05, 2019 5:09 pm
Forum: Lua and API Scripting Help
Topic: Dashed Lines
Replies: 18
Views: 5703

Re: Dashed Lines

Hi Corjan,
at first test it looks what I wanted.
I probably don't need Pytagoras, because all the line lengths are known.
Just have to figure out, how to fill the array at the end......but that should be no problem :)
See the result in picture below.
Have fun
Derk
DashedLineNew.jpg
DashedLineNew.jpg (5.94 KiB) Viewed 2670 times
by jedeen
Fri Jul 05, 2019 4:42 pm
Forum: Lua and API Scripting Help
Topic: Dashed Lines
Replies: 18
Views: 5703

Re: Dashed Lines

Thanks Corjan,
I'll give it a try.
Do not expect an answer very soon, but I'll do my best to answer you ASAP :D
Have fun
Derk
by jedeen
Fri Jul 05, 2019 3:34 pm
Forum: Lua and API Scripting Help
Topic: Dashed Lines
Replies: 18
Views: 5703

Re: Dashed Lines

Gilles, you are right...that's the problem I encountered, glad you found the same. See my remark below from my first post. The instruction _line_to(x,y) only needs 2 coordinates and there is no way to say in what direction the line should go. IMHO we are missing something in the instruction _line_to...
by jedeen
Fri Jul 05, 2019 3:08 pm
Forum: Lua and API Scripting Help
Topic: Dashed Lines
Replies: 18
Views: 5703

Re: Dashed Lines

Hi Gilles,
--DASHED LINES---------------
_move_to(x+5, y-5)
_line_to(xb+15, yb-15)
_stroke("#2ba5f2", 4)
They are the same
5 = the space between 2 dashes
15 = the length of the dash
15 + 5 == dash_len == 20
That's why at the end of the while loop x = x + dash_len

Have fun
Derk
by jedeen
Fri Jul 05, 2019 1:24 pm
Forum: Lua and API Scripting Help
Topic: Dashed Lines
Replies: 18
Views: 5703

Dashed Lines

Hello, I have the following problem..... I want to draw some dashed lines between 2 points, like the way it is done with solid lines in the attached picture. All I get when I un-comment the part of the DASHED LINE and comment the part of the SOLID LINES is to see in picture 2 It is logical to see th...