Search found 2111 matches

by JHPJHP
Fri Mar 24, 2023 2:29 am
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 49474

Re: Chromium WebGadget

Updated: - improved full-screen effect for videos - minor improvments to DevTools_Player.pb Full-Screen Included ResizeWindowEx for a smoother transition. DevTools Player One of these improvements was adding a cyan colored dot to display a tooltip when the mouse pointer moves over it. Because the ex...
by JHPJHP
Thu Mar 23, 2023 3:19 pm
Forum: Announcement
Topic: YouTube Player & Downloader
Replies: 42
Views: 29259

Re: YouTube Player & Downloader

Updated:
- improved SlideThumbnail Procedure

Slide Thumbnail (F8)
ResizeWindow was used in a loop to animate the window, it's been replaced with ResizeWindowEx.
by JHPJHP
Thu Mar 23, 2023 3:18 pm
Forum: Announcement
Topic: MP4 Player & Downloader
Replies: 18
Views: 22466

Re: MP4 Player & Downloader

Updated:
- improved SlideThumbnail Procedure

Slide Thumbnail (F8)
ResizeWindow was used in a loop to animate the window, it's been replaced with ResizeWindowEx.

NB*: Free executables (x86/x64) were updated and can be downloaded from My PureBasic Stuff; see FREE STUFF.
by JHPJHP
Wed Mar 22, 2023 4:18 pm
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 49474

Re: Chromium WebGadget

Hi ricardo, Caronte3D, Thank you! At one time or another every programmer has experienced programming fatigue, and I'm no exception. But your kind words, acknowledgement, and interest in some of the things I've written has gone a long way to "stemming the tide"; it's what keeps me coming b...
by JHPJHP
Tue Mar 21, 2023 5:00 am
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 656204

Re: PureBasic Interface to OpenCV

Hi skinkairewalker, Is it possible to detect events from the person's face? looking up, down, left side and etc, approaching the screen moving away and etc? While the newer (C++) versions of OpenCV support most if not all of the features you asked about, PureBasic Interface to OpenCV does not native...
by JHPJHP
Tue Mar 21, 2023 4:21 am
Forum: Coding Questions
Topic: Video capture issues
Replies: 33
Views: 2022

Re: Video capture issues

Hi fcb, I haven't used ESCAPI before, but after reading the documentation, nowhere does it say that the DLL needs to be registered. To confirm this, I downloaded escapi21.zip and escapi3.zip from https://solhsa.com/escapi/index.html . Copied the PureBasic example folder from escapi21 into escapi3 , ...
by JHPJHP
Sun Mar 19, 2023 8:04 pm
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 656204

Re: PureBasic Interface to OpenCV

Hi Caronte3D, Thank you for looking at the examples, it was a pleasure communicating with you. --------------------------------- Updated : - added FREE binaries - improved cv_video_scene_detection.pb FREE Binaries Includes 32 and 64 bit standalone demo examples. - OpenCV Sepia.exe - OpenCV Webcam.ex...
by JHPJHP
Fri Mar 17, 2023 10:04 pm
Forum: Announcement
Topic: Geolocation: Google Maps
Replies: 74
Views: 59808

Re: Geolocation: Google Maps

Updated : - modified User Agent for better compatibility Weird Behavior For the previous few weeks, I tested Geolocation: Google Maps , but they were not working, I assumed it had to do with Microsoft permanently disabling Internet Explorer 11 on February 14, 2023 . I tried again today and "lo...
by JHPJHP
Thu Mar 16, 2023 12:53 am
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 49474

Re: Chromium WebGadget

Updated:
- added Dark Mode to CrWG Builder (default)
-- various CSS and JavaScript tricks to emulate an app and not a webpage
- numerous minor improvements to all examples
- updated Bootstrap to v5.3 Alpha 1
by JHPJHP
Fri Mar 10, 2023 5:42 am
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 49474

Re: Chromium WebGadget

Updated : - improved splash window (all examples) - improved Bootstrap Modern UI examples - restructured Bootstrap Modern UI folders - updated Bootstrap to 5.1 Splash Window now supports transparency which will be needed later for CrWG Builder. CrWG Builder is much further along and should already ...
by JHPJHP
Wed Mar 08, 2023 2:29 pm
Forum: Announcement
Topic: GIF Toolkit
Replies: 69
Views: 52887

Re: GIF Toolkit

Hi jamirokwai, Please see the following post: https://www.purebasic.fr/english/viewtopic.php?p=521941#p521941 netmaestro not only completed the encoder but also included the NeuQuant algorithm ported by wilbert . Because of the additional optimizing algorithms a GIF encoder requires to be relevant, ...
by JHPJHP
Tue Mar 07, 2023 3:18 am
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 49474

Re: Chromium WebGadget

Hi skinkairewalker, Thank you, that's great to hear, happy coding. ---------------------------------------------- Updated the FREE binaries to include CrWG Builder , currently a work in progress. If you're interested in a PureBasic application with a modern user interface, please take the time to do...
by JHPJHP
Mon Mar 06, 2023 12:07 pm
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 49474

Re: Chromium WebGadget

Updated: - improved Procedure Cr_WebGadget_Update - some minor improvements to the framework and examples Cr_WebGadget_Update now returns a Boolean (#True) if successful; previously a String was returned. This Procedure should mostly be used when the IAccessible Interface is enabled, but there are a...
by JHPJHP
Sun Mar 05, 2023 9:38 am
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 49474

Re: Chromium WebGadget

Hi skinkairewalker, Sorry, the documentation for Cr_WebGadget_Update is spotty. Your example won't work as the function requires the IAccessible Interface, and you're mixing code with the DevTools protocol. When CrWG Builder is finished, the program should assist with using the framework, but until ...
by JHPJHP
Thu Mar 02, 2023 6:02 pm
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 49474

Re: Chromium WebGadget

Hi skinkairewalker, Yes, executing JavaScript from PureBasic is a simple process when using the DevTools Protocol. SendData\EventID = 23200 SendData\Method = "Runtime.evaluate" SendData\Params = "expression":"document.getElementById('button').click();" Cr_WebSocket_Send...