Hello
Im working on an informationchannel and i have got some questions..
This is what i have done so far : First i made some pictures in photogenics - it is actually the same picture, but with slightly different colors.
These pictures i want to use as background-Brushes in hollywood. On top of this i have added some text onscreen as a sprite. This way im able to crossfade between the different background, while at the same time show the text. It looks very nice!
My questions are : is it possible to add several lines of text as once ? Also, is it possible to remove the text using a crossfade ?
I hope you understand what im trying to do.. kind of hard to explain
best regards Torgeir -aka- FuskoSCN
Code :
Code: Select all
EscapeQuit(True)
; loading a backgroundpicture
@BGpic 1, "dh2:infokanal/1bakgrunn1.jpg"
wait(30)
;loading a fullscreen brush
@Brush 1, "dh2:infokanal/bakgrunn.jpg"
wait(10)
DisplayBrushFX(1, #center, #center, #CROSSFADE, 10)
; adding some text to be shown as
SetfontColor(#black)
SetFont("abaddon.font", 100)
SetFontstyle(#antialias)
CreateTextObject(1, "Mari TEST")
DisplayTextObjectFX(1, #CENTER, #CENTER, #CROSSFADE, 1)
CreateSprite(1, #textobject, 1)
Displaysprite(1, #center, #center)
; crossfading into a new brush/background
@Brush 2, "dh2:infokanal/bakgrunngul.jpg"
wait(10)
DisplayBrushFX(2, #center, #center, #CROSSFADE, 10)
; crossfading into a new brush/background
@Brush 3, "dh2:infokanal/bakgrunnrød.jpg"
wait(10)
DisplayBrushFX(3, #center, #center, #CROSSFADE, 10)
; Crossfading into a new brush/background
@Brush 4, "dh2:infokanal/bakgrunnturkis.jpg"
wait(10)
DisplayBrushFX(4, #center, #center, #CROSSFADE, 10)
WaitLeftMouse()
end