home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-Online 1996 June
/
PCOnline_06_1996.iso
/
mrmore
/
mrmore.dir
/
00027_Script_27
< prev
next >
Wrap
Text File
|
1996-04-11
|
714b
|
25 lines
-- Font Popup laden
on mouseDown
global gnFirstSprite
ClosePopup()
set nTextVPos = the locV of sprite the clickOn
set nTextHeight = the textheight of field the castNum of sprite the clickon
set n = (the mouseV - nTextVPos) / nTextHeight + 1
if n < 1 then exit
set sFontName = line n of the text of field the castNum of sprite the clickOn
if sFontName = "" then exit
set sFileName = "clips\font\" & MakeFontFileName(sFontName) & ".bmp"
set the puppet of sprite (gnFirstSprite + 2) = true
set the locV of sprite (gnFirstSprite + 2) = nTextVPos + nTextHeight * n - nTextHeight/2
updateStage
LoadPopup("font", sFontName, sFileName, "", 0)
end