Info Text Functions

Aus EEP Handbuch
Version vom 10. September 2018, 04:25 Uhr von Marc Horstmann (Diskussion | Beiträge)

(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Wechseln zu: Navigation, Suche
EEPShowInfoTextTop() EEPShowInfoTextTop(R,G,B,Sz,T,J,"Text")
type: function
    r    = 1    -- red 
    g    = 1    -- green
    b    = 1    -- blue 
    sz   = 1    -- size 
    t    = 10   -- time 
    j    = 1    -- alignment
    Text = "white top centred 10 seconds"

    EEPShowInfoTextTop( r , g , b , sz   , t , j , Text ) 
                
caller: script
defined in: EEP
parameters: seven
returns: one
requires: EEP 13 plug-In 1
purpose: Displays the specified text in the upper region of the 3D window.
notes:
  • R, G and B define the percentage strength of each base colour. A value of 1 stands for maximum strength. The values 1,1,1 result in a white text.
  • Sz is for the print size. A value of 1 is standard size. The maximum is 2 (for double size), the minimum is 0.5 (for half size).
  • T defines the time the text is displayed for (in seconds). Minimum time is 5 seconds.
  • J defines the horizontal position of your text. A value of:
    • 0 is for justified text
    • 1 for centred text
    • 2 for left aligned text
    • 3 for right aligned text
  • Return value is true if the function was executed successfully, else false.


EEPShowInfoTextBottom() EEPShowInfoTextBottom(R,G,B,Sz,T,J,"Text")
type: function
    r    = 1    -- red 
    g    = 1    -- green
    b    = 0    -- blue
    sz   = 1    -- size
    t    = 10   -- time
    j    = 1    -- alignment
    Text = "yellow bottom left 10 seconds"

    EEPShowInfoTextBottom(r , g , b , sz   , t , j , Text ) 
                
caller: script
defined in: EEP
parameters: seven
returns: one
requires: EEP 13 plug-In 1
purpose: Displays the specified text in the lower region of the 3D window.
notes:
  • R, G and B define the percentage strength of each base colour. A value of 1 stands for maximum strength. The values 1,1,1 result in a white text.
  • Sz is for the print size. A value of 1 is standard size. The maximum is 2 (for double size), the minimum is 0.5 (for half size).
  • T defines the time the text is displayed for (in seconds). Minimum time is 5 seconds.
  • J defines the horizontal position of your text. A value of:
    • 0 is for justified text
    • 1 for centred text
    • 2 for left aligned text
    • 3 for right aligned text
  • Return value is true if the function was executed successfully, else false.


EEPShowScrollInfoTextTop() EEPShowScrollInfoTextTop(R,G,B,Sz,T,J,Sz,"Text")
type: function
    r    = 0    -- red 
    g    = 1    -- green 
    b    = 0.7  -- blue
    sz   = 1    -- size
    t    = 20   -- time 
    j    = 0    -- alignment
    sp   = 0.2  -- velocity
    Text = "turkish blue crawl text for 20 Secs."

    EEPShowScrollInfoTextTop(r,g,b,sz,t,j,sp,Text) 
                
caller: script
defined in: EEP
parameters: eight
returns: one
requires: EEP 13 plug-In 1
purpose: Displays a text crawl in the upper region of the 3D window.
notes:
  • R, G and B define the percentage strength of each base colour. A value of 1 stands for maximum strength. The values 1,1,1 result in a white text.
  • Sz is for the print size. A value of 1 is standard size. The maximum is 2 (for double size), the minimum is 0.5 (for half size).
  • T defines the time the text is displayed for (in seconds). Minimum time is 5 seconds.
  • J (for justification) serves no purpose in this context. But it’s required nevertheless. Please enter a 0.
  • Sp is for the crawl speed. A value of 0.2 is a good start (i.e. easy to read).
  • Return value is true if the function was executed successfully, else false.


EEPShowScrollInfoTextBottom() EEPShowScrollInfoTextBottom(R,G,B,Sz,T,J,Sz,"Text")
type: function
    r    = 0    -- red 
    g    = 1    -- green 
    b    = 0.7  -- blue
    sz   = 1    -- size
    t    = 20   -- time 
    j    = 0    -- alignment
    sp   = 0.2  -- velocity
    Text = "turkish blue crawl text for 20 Secs."

    EEPShowScrollInfoTextBottom(r,g,b,sz,t,j,sp,Text) 
                
caller: script
defined in: EEP
parameters: eight
returns: one
requires: EEP 13 plug-In 1
purpose: Displays a text crawl in the lower region of the 3D window.
notes:
  • R, G and B define the percentage strength of each base colour. A value of 1 stands for maximum strength. The values 1,1,1 result in a white text.
  • Sz is for the print size. A value of 1 is standard size. The maximum is 2 (for double size), the minimum is 0.5 (for half size).
  • T defines the time the text is displayed for (in seconds). Minimum time is 5 seconds.
  • J (for justification) serves no purpose in this context. But it’s required nevertheless. Please enter a 0.
  • Sp is for the crawl speed. A value of 0.2 is a good start (i.e. easy to read).
  • Return value is true if the function was executed successfully, else false.


EEPHideInfoTextTop() EEPHideInfoTextTop()
type: function
    EEPHideInfoTextTop()
                
caller: script
defined in: EEP
parameters: none
returns: one
requires: EEP 13 plug-In 1
purpose: Turns the info text in the upper region of the 3D window off.
notes:
  • No arguments required.
  • Return value is true if the function was executed successfully, else false.


EEPHideInfoTextBottom() EEPHideInfoTextBottom()
type: function
    EEPHideInfoTextBottom()
                
caller: script
defined in: EEP
parameters: none
returns: one
requires: EEP 13 plug-In 1
purpose: Turns the info text in the lower region of the 3D window off.
notes:
  • No arguments required.
  • Return value is true if the function was executed successfully, else false.