Search found 1180 matches

by Bugala
Thu Feb 08, 2024 10:23 am
Forum: General programming
Topic: Any problem from constantly deleting and creating Buttons?
Replies: 2
Views: 224

Re: Any problem from constantly deleting and creating Buttons?

No, it is actually an editor I am making for own use. You add boxes which represent locations, and then I am planning on being able to scroll around, zoom and unzoom. Since It is, at least currently, only planned for my own use, I am simply using rectangles as graphics, and hence can use #SIMPLEBUTT...
by Bugala
Wed Feb 07, 2024 1:38 pm
Forum: General programming
Topic: Any problem from constantly deleting and creating Buttons?
Replies: 2
Views: 224

Any problem from constantly deleting and creating Buttons?

I am wondering what solution I should take to my problem. Thing is, I have these boxes that are buttons (Could use #SIMPLEBUTTON), but user can scroll around and zoom and unzoom as well, which means that the size and location of the box might change (even outside of the screen), which means that if ...
by Bugala
Wed Feb 07, 2024 9:47 am
Forum: General programming
Topic: Couple of Hollywood Innerworkings questions
Replies: 5
Views: 376

Re: Couple of Hollywood Innerworkings questions

As I said, not planning to use it, since I don't quite see any reason why to use it, but was just wondering from Hollywood syntax point of view if it is doable. As in, understanding how it works, might help understand how something else that is actually useful works.
by Bugala
Tue Feb 06, 2024 8:33 pm
Forum: Hollywood bugs
Topic: Alpha not working on Vector graphics
Replies: 5
Views: 501

Re: Alpha not working on Vector graphics

@Flinx, thanks for the workaround! Thought I couldnt get my program to do what I wanted, bu this solves the problem.
by Bugala
Tue Feb 06, 2024 8:32 pm
Forum: Hollywood bugs
Topic: Alpha not working on Vector graphics
Replies: 5
Views: 501

Re: Alpha not working on Vector graphics

@Andreas Just noticed the DrawTo example code from the manual has a small problem too: SetFillStyle(#FILLNONE) SetFormStyle(#ANTIALIAS) x=25.6 y=128.0 x1=102.4 y1=230.4 x2=153.6 y2=25.6 x3=230.4 y3=128.0 StartPath(1) MoveTo(1, x, y) CurveTo(1, x1, y1, x2, y2, x3, y3) SetLineWidth(10) DrawPath(1, 0, ...
by Bugala
Tue Feb 06, 2024 4:52 pm
Forum: General programming
Topic: Couple of Hollywood Innerworkings questions
Replies: 5
Views: 376

Re: Couple of Hollywood Innerworkings questions

Thanks for replies. I assumed there wouldnt be aproblem using these, but wanted to confirm it to be sure Im not going to suddenly encounter some random behavior when using these. One more question. Not that I plan to do this even, but just from curiosity of understanding more About Hollywood behavio...
by Bugala
Tue Feb 06, 2024 12:15 pm
Forum: General programming
Topic: Couple of Hollywood Innerworkings questions
Replies: 5
Views: 376

Couple of Hollywood Innerworkings questions

1. If I have: ForEach(Tbl1, Function(NotInUse, Content1) ForEach(Tbl2, Function(NotInUse, Content2) EndFunction) EndFunction) Is it a problem that I am using same variable "NotInUse" in both cases, when I am not using them? Naturally if I would name them both as "ID" and be using...
by Bugala
Mon Feb 05, 2024 2:12 pm
Forum: Hollywood bugs
Topic: Alpha not working on Vector graphics
Replies: 5
Views: 501

Alpha not working on Vector graphics

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() Hollywood 9.1 Windows 11 - All Arcs look exactly same colored, even to my understanding some of them should look cle...
by Bugala
Mon Feb 05, 2024 10:32 am
Forum: Windows IDE
Topic: Minor Bug: Copy-Paste Paste failing on Windows 10 and 11
Replies: 6
Views: 1210

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

Seems I said wrong there at one point. Only Affects mouse. I can use CTRL-V to paste the stuff I COPIED, just not Mouse. I accidentally in original message said CTRL-C, when I meant to say CTRL-V (PASTE). To repeat. I can first use mouse paint to COPY. But when I mouse PASTE it fails. However, if af...
by Bugala
Thu Feb 01, 2024 11:34 am
Forum: Windows IDE
Topic: Minor Bug: Copy-Paste Paste failing on Windows 10 and 11
Replies: 6
Views: 1210

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

yeah, that exactly. Some random times it doesnt work. Most of times does work. Had the problem with the old machine, and now with the new one too.