Search found 1178 matches

by Bugala
Wed Feb 07, 2024 9:47 am
Forum: General programming
Topic: Couple of Hollywood Innerworkings questions
Replies: 5
Views: 368

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: 493

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: 493

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: 368

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: 368

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: 493

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: 1198

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: 1198

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.
by Bugala
Wed Jan 31, 2024 12:21 pm
Forum: Windows IDE
Topic: Minor Bug: Copy-Paste Paste failing on Windows 10 and 11
Replies: 6
Views: 1198

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

When I paint some part, right mouse click to COPY, and then right mouse click to PASTE, nothing happens. If I however use Ctrl-C after having used right mouse click to COPY, it does PASTE the stuff I copied, so problem is only with right mouse PASTE. I dont remember if I have reported this possibly ...
by Bugala
Tue Jan 30, 2024 12:55 pm
Forum: Newbie questions
Topic: How do I draw a curve?
Replies: 3
Views: 648

Re: How do I draw a curve?

So how do I get it to draw me a curve? For to me it was just drawing this pac-man figure?