Search found 60 matches

by Realizimo
Tue Jul 29, 2025 4:29 pm
Forum: Coding Questions
Topic: window With no Title And With no taskbar icon?
Replies: 11
Views: 407

Re: window With no Title And With no taskbar icon?

Here's the context, I chose the pure purebasic version.
EnableExplicit
LoadFont(1, "Courier", 12)
LoadFont(2, "Courier", 12, #PB_Font_Bold )

Global f_col=0
Global b_col=$9BD6F7

OpenWindow(1, -300, 0, 0, 0, "Not Needed", #PB_Window_Invisible)
OpenWindow(0, 1, 1, 115, 70, "xx", #PB_Window ...
by Realizimo
Tue Jul 29, 2025 1:54 pm
Forum: Coding Questions
Topic: window With no Title And With no taskbar icon?
Replies: 11
Views: 407

Re: window With no Title And With no taskbar icon?

Now I understand, thanks everyone
by Realizimo
Tue Jul 29, 2025 10:56 am
Forum: Coding Questions
Topic: window With no Title And With no taskbar icon?
Replies: 11
Views: 407

Re: window With no Title And With no taskbar icon?

Thank you very much, but it's hard to understand what you did.
by Realizimo
Tue Jul 29, 2025 9:47 am
Forum: Coding Questions
Topic: window With no Title And With no taskbar icon?
Replies: 11
Views: 407

window With no Title And With no taskbar icon?

Can i get a window With no Title And With no taskbar icon?


; a window with Title and with no taskbar icon
OpenWindow(0, 1, 1, 115, 70, "xx",#PB_Window_ScreenCentered|#PB_Window_BorderLess|#PB_Window_Tool)
Delay(1000)
; a window with no Title and with taskbar icon
OpenWindow(0, 1, 1, 115, 70, "xx ...
by Realizimo
Sat Jun 21, 2025 6:57 pm
Forum: 3D Programming
Topic: AttachEntityObject with CameraID
Replies: 4
Views: 219

Re: AttachEntityObject with CameraID

Thanks, and I've never worked with "bones"
by Realizimo
Sat Jun 21, 2025 5:43 pm
Forum: 3D Programming
Topic: AttachEntityObject with CameraID
Replies: 4
Views: 219

AttachEntityObject with CameraID

"AttachEntityObject" with "CameraID" does not work with newer versions (620,621), is it a bug?
612 works fine.

InitEngine3D()
InitSprite()
InitKeyboard()
OpenWindow(0, 0, 0, 640, 480, "Cube example", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
OpenWindowedScreen(WindowID(0), 0, 0, 640, 480 ...
by Realizimo
Sat Dec 14, 2024 7:45 pm
Forum: Feature Requests and Wishlists
Topic: Request: ClearSprite()
Replies: 3
Views: 4362

Re: Request: ClearSprite()

certainly useful as well as "clearscreen"
by Realizimo
Tue Oct 24, 2023 5:36 pm
Forum: 3D Programming
Topic: 3D challenge for a special rotation
Replies: 16
Views: 8390

Re: 3D challenge for a special rotation

my contribution
EnableExplicit
#Camara = 3
#Entity = 3
#node= 3
#Light = 3
#Texture = 3
#Material = 3
#Mesh = 3

If ExamineDesktops()=0 : End : EndIf
Global bitplanes.a=DesktopDepth(0)
Global FRX.u=DesktopWidth(0)*0.9
Global FRY.u=DesktopHeight(0)*0.9

If InitEngine3D(#PB_Engine3D_NoLog,#PB ...
by Realizimo
Sun Sep 24, 2023 10:44 am
Forum: Feature Requests and Wishlists
Topic: recall the result from ProcedureReturn
Replies: 11
Views: 1610

Re: recall the result from ProcedureReturn

the.weavster
Better than my way :D
by Realizimo
Mon Sep 11, 2023 6:15 pm
Forum: Feature Requests and Wishlists
Topic: recall the result from ProcedureReturn
Replies: 11
Views: 1610

Re: recall the result from ProcedureReturn

Quin
yes it what I want, but , I think nicer/shorter code, but I understand that I am just lazy. sorry
by Realizimo
Sat Sep 09, 2023 4:01 pm
Forum: Feature Requests and Wishlists
Topic: recall the result from ProcedureReturn
Replies: 11
Views: 1610

Re: recall the result from ProcedureReturn

of course i know that, Caronte3D, this is not a good idea or?
by Realizimo
Sat Sep 09, 2023 3:24 pm
Forum: Feature Requests and Wishlists
Topic: recall the result from ProcedureReturn
Replies: 11
Views: 1610

recall the result from ProcedureReturn

is this a god idea

Code: Select all

Procedure test()
  ProcedureReturn 1  
EndProcedure
If test(): a=getp(): Debug a: EndIf ; getp()=recall the result from ProcedureReturn
by Realizimo
Tue Jun 21, 2022 3:54 pm
Forum: Coding Questions
Topic: mouse lag
Replies: 2
Views: 512

Re: mouse lag

:oops: thanks :oops:
by Realizimo
Mon Jun 20, 2022 6:57 pm
Forum: Coding Questions
Topic: mouse lag
Replies: 2
Views: 512

mouse lag

both "asm" and "c backend" has the lag.
beta 6 and before is ok.
beta 7,8 I do not know.
beta 9,10 has lag.
in line 38; if replace "15" with a lower digit , the lag disappear.
the #speed2 constant is used in line 187.
I felt I should tell.

Procedure do_beep_sound()
InitSound()
Protected.i a,b ...