Search found 1975 matches

by J. Baker
Fri Dec 22, 2023 8:02 pm
Forum: Coding Questions
Topic: Solved PB 6.10 B1 X64 - WebViewGadget()
Replies: 2
Views: 482

Re: PB 6.10 B1 X64 - WebViewGadget()

Oh, I did not realize. Thanks!
by J. Baker
Fri Dec 22, 2023 7:06 pm
Forum: Coding Questions
Topic: Solved PB 6.10 B1 X64 - WebViewGadget()
Replies: 2
Views: 482

Solved PB 6.10 B1 X64 - WebViewGadget()

Shouldn't the WebViewGadget() display HTML5 game? If OpenWindow(0, 0, 0, 1280, 720, "WebViewGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) WebViewGadget(0, 0, 0, 1280, 720) SetGadgetText(0, "https://www.posemotion.com/game/index.html") Repeat Until WaitWindowEvent() ...
by J. Baker
Fri Dec 22, 2023 6:47 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 293
Views: 36624

Re: PureBasic 6.10 beta 1 - Xmas Release - is out !

Thanks and Merry Christmas! :D
by J. Baker
Sun Nov 26, 2023 2:45 pm
Forum: Tricks 'n' Tips
Topic: animate desktop background windows 8+
Replies: 30
Views: 1997

Re: animate desktop background windows 8+

Does nobody here run their PCs with limited user rights like me? Nope. Along with Windows 10, I also still use Windows 7 and XP. I just don't go to any strange websites nor download anything unless I feel like I trust it. I feel like the whole your system is outdated is such a scam. Never have any ...
by J. Baker
Sun Nov 26, 2023 4:56 am
Forum: Tricks 'n' Tips
Topic: animate desktop background windows 8+
Replies: 30
Views: 1997

Re: animate desktop background windows 8+

The Win 10 updates didn't help, and "animdesk.exe" just shows a dark screen with "This video is unavailable" on it. I can't win. Don't worry about it. Maybe try downloading this demo and initializing the animated wallpaper and see if that works. I'm just curious if your system i...
by J. Baker
Sat Nov 25, 2023 6:17 am
Forum: Tricks 'n' Tips
Topic: animate desktop background windows 8+
Replies: 30
Views: 1997

Re: animate desktop background windows 8+

Runs just fine here on Windows 10.
by J. Baker
Fri Nov 24, 2023 2:58 pm
Forum: Applications - Feedback and Discussion
Topic: [Library] DSKT Library - Get access to a window behind the Icons [Win x64]
Replies: 14
Views: 8539

Re: [Library] DSKT Library - Get access to a window behind the Icons [Win x64]

Very nice! Thanks for the update.

Are you able to make a 32 bit version?
by J. Baker
Fri Nov 24, 2023 5:57 am
Forum: Applications - Feedback and Discussion
Topic: [Library] DSKT Library - Get access to a window behind the Icons [Win x64]
Replies: 14
Views: 8539

Re: [Library] DSKT Library - Get access to a window behind the Icons [Win x64]

Screen code with tray icon. :D I disabled, EnableExplicit. Not a fan. XIncludeFile "dskt.pbi" ;Structure DSKT *dskt.DSKT ;EndStructure *dskt = dsktInterface() hdc = GetDC_(*dskt\Handle()) If *dskt If hdc InitSprite() OpenWindow(0, 100, 200, 195, 260, "Tray Icon Window", #PB_Windo...
by J. Baker
Thu Nov 23, 2023 4:20 pm
Forum: Applications - Feedback and Discussion
Topic: [Library] DSKT Library - Get access to a window behind the Icons [Win x64]
Replies: 14
Views: 8539

Re: [Library] Aki Desktop - Get access to a window behind the Icons [Win x64]

Pretty cool but it would be nice if your download included all source for the example.

No 32 bit? Use a bit less resources for something like this.

Non-Commercial use? Are you selling your lib for commercial use?
by J. Baker
Fri Nov 17, 2023 8:06 pm
Forum: 3D Programming
Topic: 3D Scenes
Replies: 1
Views: 562

3D Scenes

Since PB doesn't support *.scene files, what are you using or how are you laying out your 3D scenes?
by J. Baker
Thu Oct 26, 2023 5:14 pm
Forum: 3D Programming
Topic: Move Entity Help
Replies: 14
Views: 1073

Re: Move Entity Help

Ok, thanks for the heads up.
by J. Baker
Thu Oct 26, 2023 2:32 pm
Forum: 3D Programming
Topic: Move Entity Help
Replies: 14
Views: 1073

Re: Move Entity Help

I found another issue I was having and it may be a PB bug. If you RotateEntity() before MoveEntity(), the entity will not move. As long as I move first before rotating, all is fine. ; Bug fix MoveEntity(#SphereEntity, 0, 0, -0.75, #PB_Local); Prevent RotateEntity() bug. Move first than all is fine. ...
by J. Baker
Tue Oct 24, 2023 12:45 am
Forum: 3D Programming
Topic: Move Entity Help
Replies: 14
Views: 1073

Re: Move Entity Help

miso wrote: Tue Oct 24, 2023 12:03 am (workaround: position your camera relative to the object, and then use the attach command. It will keep those values as offset.)
I was not aware of that. Thanks!
by J. Baker
Mon Oct 23, 2023 10:46 pm
Forum: 3D Programming
Topic: Move Entity Help
Replies: 14
Views: 1073

Re: Move Entity Help

This is interesting. Most of the time the MoveEntity works just fine but sometimes it doesn't. So I recompile and then it works again. Also, offset values for AttachEntityObject seem to do nothing. I tried extreme values and no difference. I've been using PB for quite some time and have been happy w...