Search found 347 matches
- Mon May 22, 2023 12:30 am
- Forum: General programming
- Topic: UseAlpha is removed !!
- Replies: 4
- Views: 4780
Re: UseAlpha is removed !!
Thank you
- Thu Oct 27, 2022 4:01 pm
- Forum: Newbie questions
- Topic: Multi Display
- Replies: 2
- Views: 4686
Re: Multi Display
Great, thank you ! I had forgotten
- Thu Oct 27, 2022 2:45 pm
- Forum: Newbie questions
- Topic: Multi Display
- Replies: 2
- Views: 4686
Multi Display
Hello, I don't understand why nothing happens when I select window or if I close a window, the whole program closes ?! Thanks in advance ! @DISPLAY 1, {X=50,Y=150, Width=100, Height=100,color=#WHITE} Win1=CreateDisplay(NIL, {X=50,Width=200, Height=200,color=$FF0000}) OpenDisplay(Win1) Win2=CreateDis...
- Wed Oct 26, 2022 2:08 pm
- Forum: Hollywood bugs
- Topic: @Display and brush (of CreateBrush) not work
- Replies: 2
- Views: 3967
Re: @Display and brush (of CreateBrush) not work
@JPV
Thanks for the explanation
Thanks for the explanation
- Wed Oct 26, 2022 11:35 am
- Forum: Hollywood bugs
- Topic: @Display and brush (of CreateBrush) not work
- Replies: 2
- Views: 3967
@Display and brush (of CreateBrush) not work
Hello, Is it a bug ?? CreateBrush(2,10,10,#BLUE) SelectBrush(2) BOX(0,0,10,10,#GREEN) EndSelect @DISPLAY 1, {fillstyle=#FILLTEXTURE,TextureBrush=2} ; => Not work SetDisplayAttributes({fillstyle=#FILLTEXTURE,TextureBrush=2}) ; => Good Work I have this problem with @Display (Brush, TextureBrush, BGPic...
- Tue Feb 22, 2022 9:08 am
- Forum: RapaGUI
- Topic: OnWheelDown and OnWheelUp no work !
- Replies: 4
- Views: 3650
Re: OnWheelDown and OnWheelUp no work !
Yes sorry ! /* Nouveau projet Hollywood */ @REQUIRE "RapaGUI", {Link = True} Function p_EventFunc(msg) Switch msg.action Case "RapaGUI": Switch msg.attribute Case "CloseRequest": End EndSwitch Case "OnWheelUp": moai.set("id_statusbar","text"...
- Wed Feb 16, 2022 10:35 am
- Forum: RapaGUI
- Topic: OnWheelDown and OnWheelUp no work !
- Replies: 4
- Views: 3650
OnWheelDown and OnWheelUp no work !
Hello,
OnWheelDown and OnWheelUp no work with RapaGui on Windows 7 (Work on OS4 and WinUAE OS3.9)
OnWheelDown and OnWheelUp no work with RapaGui on Windows 7 (Work on OS4 and WinUAE OS3.9)
- Tue Jan 18, 2022 8:20 am
- Forum: General programming
- Topic: 2 transparency picture in 2 bgpic
- Replies: 4
- Views: 3514
Re: 2 transparency picture in 2 bgpic
Yes !
Code: Select all
@DISPLAY 1,...
@DISPLAY 2,...
Pict1=BrushToBGPic(1,NIL)
DisplayBGpic(Pict1,{X=50,Y=50})
SelectDisplay(2)
Pict1=BrushToBGPic(1,NIL)
DisplayBGpic(Pict1,{X=250,Y=50})
...
- Mon Jan 17, 2022 5:14 pm
- Forum: General programming
- Topic: 2 transparency picture in 2 bgpic
- Replies: 4
- Views: 3514
- Mon Jan 17, 2022 2:40 pm
- Forum: General programming
- Topic: 2 transparency picture in 2 bgpic
- Replies: 4
- Views: 3514
2 transparency picture in 2 bgpic
Hello, I can't see two transparent images in two bgpics bgpic 2 is a black square @BGPIC 1, "appleimg.png", {LoadAlpha = True} @BGPIC 2, "appleimg.png", {LoadAlpha = True} @DISPLAY 1, {Borderless = True, DragRegion = {{X = 0, Y = 0, Width = 528, Height = 535}}} @DISPLAY 2, {Borde...