Search found 473 matches

by plouf
Tue Feb 06, 2024 7:11 pm
Forum: Hollywood bugs
Topic: Alpha not working on Vector graphics
Replies: 5
Views: 507

Re: Alpha not working on Vector graphics

i think (not 100% sure) that alpha works with layers only i.e. dither alpha based on previous layer EnableLayers() StartPath(1) AddArcToPath(1, 100, 100, 50, 50, 120, 220) DrawPath(1, 0, 0, ARGB(10, #RED)) DrawPath(1, 100, 100, ARGB(90, #RED)) DrawPath(1, 200, 200, ARGB(190, #RED)) WaitLeftMouse()
by plouf
Thu Feb 01, 2024 11:22 am
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2551

Re: Updating listviews...

CheckEvents() do not block
While WaitEvent() block
by plouf
Wed Jan 31, 2024 4:48 pm
Forum: Windows IDE
Topic: Minor Bug: Copy-Paste Paste failing on Windows 10 and 11
Replies: 6
Views: 1216

Re: Minor Bug: Copy-Paste Paste failing on Windows 10 and 11

you mean use mouse and make a selection, that turn selected letteres to blue , then right click on top of blue and select copy ?

because this works here
hw 64bit win11
by plouf
Tue Jan 30, 2024 1:48 pm
Forum: Newbie questions
Topic: How do I draw a curve?
Replies: 3
Views: 660

Re: How do I draw a curve?

hm Arc() design also the pie, my mistake
guess only option is VectorLibrary ...

example

Code: Select all

StartPath(1)
CurveTo(1,0,0,100,100,10,100)
DrawPath(1,100,100,#BLUE)


Repeat
	WaitEvent()
Forever
by plouf
Tue Jan 30, 2024 12:13 pm
Forum: Newbie questions
Topic: How do I draw a curve?
Replies: 3
Views: 660

Re: How do I draw a curve?

Arc()

also Vectorlibrary may help you has a lot
by plouf
Fri Jan 26, 2024 2:43 pm
Forum: RapaGUI
Topic: Treeview and XML
Replies: 18
Views: 2050

Re: Treeview and XML

XML plugin is there to help you read XML files and save them back, has nothing to do with treeview or any RapaGUI, data you import from XML are there for your code to do it manually Yes, but how to edit data in a treeview please? its editable , not editable nodes it's "editable" for colum...
by plouf
Fri Jan 26, 2024 2:00 pm
Forum: RapaGUI
Topic: Treeview and XML
Replies: 18
Views: 2050

Re: Treeview and XML

i read documentation of XML plugin but unfortunnaly i understand how to edit a value in a treeview... XML plugin is there to help you read XML files and save them back, has nothing to do with treeview or any RapaGUI, data you import from XML are there for your code to do it manually My colums are e...
by plouf
Thu Jan 25, 2024 9:37 am
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2551

Re: Updating listviews...

Thats the point of comenting out
With commented out wait is the video

I see with or without wait filling
by plouf
Wed Jan 24, 2024 8:56 pm
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2551

Re: Updating listviews...

When you push [GO] the callback function will add several lines to the Listview but they are displayed only at the end of the loop, I've added the "redraw" method to try to force a refresh but without success... I'd like to use a listview as a log box (like in the official demo), but this...
by plouf
Wed Jan 24, 2024 12:23 pm
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2551

Re: Updating listviews...

Have a CheckEvent() in your loop ?

Examples would help