Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikibooksThe Free Textbook Project
Search

Rebol Programming/flash

From Wikibooks, open books for an open world
<Rebol Programming
This page may need to bereviewed for quality.

USAGE:

[edit |edit source]
FLASH val /with face /offset xy

DESCRIPTION:

[edit |edit source]

Flashes a message to the user and continues.

FLASH is a function value.

ARGUMENTS

[edit |edit source]
  • val -- (Type: any)

REFINEMENTS

[edit |edit source]
  • /with
    • face -- Center over this face (Type: any)
  • /offset
    • xy -- (Type: any)

SOURCE CODE

[edit |edit source]
flash: func [    "Flashes a message to the user and continues."     val     /with face "Center over this face"     /offset xy][    val: layout [        origin 10x10         image info.gif         origin 62x24         text bold form val 200x-1         origin 20x20    ]     val/text: "Information"     either offset [val/offset: xy] [        center-face val         if with [center-face/with val face]    ]     view/new val     val]
Retrieved from "https://en.wikibooks.org/w/index.php?title=Rebol_Programming/flash&oldid=3352766"
Category:

[8]ページ先頭

©2009-2025 Movatter.jp