Search found 394 matches
- Wed Apr 14, 2021 9:20 pm
- Forum: RapaGUI
- Topic: How to export and import a listview?
- Replies: 3
- Views: 119
Re: How to export and import a listview?
The procedure for dumping the entries in a listview to a table involves looping through Listview.Entries times. You retrieve all the columns as return codes from Listview.GetEntries and assign them to fields in the inner tables (one table per row). And add each inner table to an outer table as an ar...
- Tue Apr 13, 2021 4:25 am
- Forum: Windows IDE
- Topic: Hollywood extension for Visual Studio Code (hw4vsc) released
- Replies: 31
- Views: 6842
Re: Hollywood extension for Visual Studio Code (hw4vsc) released
The open source versions of VS Code work well with your plugin on Linux.
- Tue Apr 13, 2021 4:23 am
- Forum: RapaGUI
- Topic: ListviewColumn Sortable="0"
- Replies: 6
- Views: 672
Re: ListviewColumn Sortable="0"
I didn't try yet. I kept running into various bugs in RapaGUI and have been hoping the new release version 2.0 would be out soon.
- Tue Mar 30, 2021 11:35 am
- Forum: Newbie questions
- Topic: I looking function paint bucket type (dpaint ou ppaint)
- Replies: 24
- Views: 4603
Re: I looking function paint bucket type (dpaint ou ppaint)
Alpha channel isn't available in 8 bit graphics modes.
- Mon Mar 29, 2021 4:01 pm
- Forum: Wishlist
- Topic: Indefinite Palette cycling?
- Replies: 4
- Views: 508
Re: Indefinite Palette cycling?
Good to know!
- Sat Mar 27, 2021 7:09 pm
- Forum: Wishlist
- Topic: Indefinite Palette cycling?
- Replies: 4
- Views: 508
Re: Indefinite Palette cycling?
@AirsoftSoftwair
I see now that the palette cycling demonstration code doesn't use the built-in cycling command but manipulates the palette manually. Perhaps a future asynchronous version could implement infinite cycling like AmosPro has so that fading and cycling don't conflict.
I see now that the palette cycling demonstration code doesn't use the built-in cycling command but manipulates the palette manually. Perhaps a future asynchronous version could implement infinite cycling like AmosPro has so that fading and cycling don't conflict.
- Sat Mar 27, 2021 7:03 pm
- Forum: Wishlist
- Topic: Cos, Tan, Sin, mention to manual about Degrees and Radians.
- Replies: 3
- Views: 193
Re: Cos, Tan, Sin, mention to manual about Degrees and Radians.
Code: Select all
Function p_deg(rad#)
Return(180*rad#/pi#)
EndFunction
- Tue Mar 23, 2021 5:29 pm
- Forum: Wishlist
- Topic: Indefinite Palette cycling?
- Replies: 4
- Views: 508
Indefinite Palette cycling?
I see that the default for the CyclePalette() function is 1 cycle and stop. If I enter -1 as number of cycles will it cycle indefinitely or will unsigned wraparound at least kick in and cycle to MaxInt times? I'd like -1 to signify an indefinite number of palette cycles.
- Mon Mar 22, 2021 3:26 am
- Forum: Announcements
- Topic: Hollywood 9.0: Sugarcane released!
- Replies: 34
- Views: 2678
Re: Hollywood 9.0: Sugarcane released!
Upgrade order sent!
- Wed Feb 24, 2021 11:28 pm
- Forum: General programming
- Topic: possibility to have two same installeventhandlers at same time?
- Replies: 3
- Views: 610
Re: possibility to have two same installeventhandlers at same time?
After some thought, the 2 table method is essentially a hash-set implementation. Here it is: global HandleKey={} HandleKey["functions"]={} HandleKey["set"]={} HandleKey["last"]=0 Function HandleKey:InstallHandler(func) Local current=self.last self.last=self.last+1 self.functions[current]=func self.s...