• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

FSXA flashing text

Messages
165
Country
southafrica
I want to use some text in a gauge but it need to FLASH on/off

here is my text section
Code:
<Element>
  <Position X="239" Y="201"/>
  <Text X="30" Y="11" Length="4" Font="Arial" FontSize="10" Adjust="Center" VerticalAdjust="Bottom" Multiline="No" Color="0xF0D0D0" BackgroundColor="#080808" Bright="Yes">
     <String>WARNING</String>
  </Text>
</Element>

What should be added to make this text flashing ?

any ideas.
much appreciates
 
I want to use some text in a gauge but it need to FLASH on/off

here is my text section
Code:
<Element>
  <Position X="239" Y="201"/>
  <Text X="30" Y="11" Length="4" Font="Arial" FontSize="10" Adjust="Center" VerticalAdjust="Bottom" Multiline="No" Color="0xF0D0D0" BackgroundColor="#080808" Bright="Yes">
     <String>WARNING</String>
  </Text>
</Element>

What should be added to make this text flashing ?

any ideas.
much appreciates

There are many ways to make text blink on and off from escape codes to simple timers. You might start here:

http://fsdeveloper.com/forum/showthread.php?t=196527&highlight=blinking

but also search for "blink" or "flash" and you will find a lot. This particular question has been raised many times so the search will have a lot of hits. There's also a couple of wikis in FSDeveloper Gauges section that I suggest you check out - Escape Sequences and Timer

Bob
 
Last edited:
thank you and be sure I did use the search function but must have used wrong syntax because I got 5 items at the most and of that 4 was scenery related.

Maybe age is getting to me.. LOL..!

using
<Visible>(P:Absolute time,seconds) 0.5 % 0.25 1 * > !</Visible>

working great..

now to get the timing right..!!
 
Last edited:
Back
Top