Search found 742 matches

by Allanon
Mon Jun 30, 2025 8:17 am
Forum: General programming
Topic: What way do you use to remove items from list when using for n = 0 to last
Replies: 2
Views: 339

Re: What way do you use to remove items from list when using for n = 0 to last

Hello @Bugala, for the problem you are facing, with remove & add teable items in the middle of a for-next, I use your method, with a reversed for-next like you did, especially when removing items. But there are also optimized lists that could be easier to use in such cases, have you tried to hav...
by Allanon
Mon Apr 21, 2025 9:30 am
Forum: RapaGUI
Topic: Problem with Undo/Redo in TextEditor
Replies: 10
Views: 11973

Re: Problem with Undo/Redo in TextEditor

Great! Thank you! :)
by Allanon
Fri Apr 18, 2025 10:34 am
Forum: Showcase
Topic: Smartclock video
Replies: 1
Views: 275

Smartclock video

Hello all! I've resumed an old project started several years ago, it's about a configurable clock born to run on my Raspberry Pi4 but I'd like to run it on a Pi Zero and build a complete small clock. It features customizable layout, news reader, weather forecast and animations for your very own cloc...
by Allanon
Mon Apr 07, 2025 9:05 am
Forum: RapaGUI
Topic: Problem with Undo/Redo in TextEditor
Replies: 10
Views: 11973

Re: Problem with Undo/Redo in TextEditor

Oh man, sorry, I didn't get right your question! :D

rapagui.hwp size: 6.438.627 bytes
:P
by Allanon
Sat Apr 05, 2025 1:50 pm
Forum: RapaGUI
Topic: Problem with Undo/Redo in TextEditor
Replies: 10
Views: 11973

Re: Problem with Undo/Redo in TextEditor

I missed your reply sorry! I'm on Manjaro + KDE Plasma, I think it should use GTK3, looking at the package manager both GTK2 & 3 are installed. Here are my system specs: ██████████████████ ████████ ------------------ ██████████████████ ████████ OS: Manjaro Linux x86_64 ██████████████████ ███████...
by Allanon
Thu Feb 13, 2025 6:51 pm
Forum: RapaGUI
Topic: Problem with Undo/Redo in TextEditor
Replies: 10
Views: 11973

Re: Problem with Undo/Redo in TextEditor

Thank you for the test! :)
Let's see what other people and Andreas say 8-)
by Allanon
Thu Feb 13, 2025 5:09 pm
Forum: RapaGUI
Topic: Problem with Undo/Redo in TextEditor
Replies: 10
Views: 11973

Re: Problem with Undo/Redo in TextEditor

Hi @plouf :) , If you look at the code I attached I've included: notify="cursorpos;undoavailable;redoavailable;areamarked;haschanged" in my xml texteditor gadget definition. I've copied it from the example: what I wanted to say is that the TextEditor example is affected by the same problem...
by Allanon
Thu Feb 13, 2025 9:45 am
Forum: RapaGUI
Topic: Problem with Undo/Redo in TextEditor
Replies: 10
Views: 11973

Problem with Undo/Redo in TextEditor

Hello everyone, I'm writing a simple editor but I'm not able to receive UndoAvailable & RedoAvailable events. After some readings I tried the TextEditor example and I noticed that Undo button is not enabled when the text is changed so i stopped searching on my source because it could be a bug or...
by Allanon
Tue Dec 17, 2024 11:10 am
Forum: General programming
Topic: Way to make UniqueIDs?
Replies: 3
Views: 13730

Re: Way to make UniqueIDs?

Some time ago I coded a similar things because I needed temporary & unique names, it's part of my helpers library and here is the code: Function HL.GetRndName() /****************************************************************************** name = HL.GetRndName() Use this function to obtain a un...
by Allanon
Tue Nov 12, 2024 9:20 am
Forum: Showcase
Topic: ASyncEffects library
Replies: 0
Views: 36604

ASyncEffects library

Hello everyone! To take a break from the daily routine I'll started to dig on my old HollywoodMAL projects and I've found a library that could be usefull for other coders too. With this library you can handle asynchronous effects without the need to track them, the library will take care of this tas...