Search found 169 matches

by emeck
Sun Mar 10, 2024 11:07 am
Forum: Hollywood bugs
Topic: Bug with tint instruction
Replies: 4
Views: 115

Re: Bug with tint instruction

I see. The problem here is that "image" is a variable that holds a value, in this case 1, so that is the brush used when you use the variable "image" in the brush functions. You'll need something like this as a buffer or wilcard: bufferBrush = CreateBrush(Nil, 320, 320) Then you ...
by emeck
Sat Mar 09, 2024 8:04 pm
Forum: Hollywood bugs
Topic: Bug with tint instruction
Replies: 4
Views: 115

Re: Bug with tint instruction

@Juan Carlos Hello. You are applying the tint effect to BRUSH 2 and then you are copying the modified BRUSH 2 to image, which is BRUSH 1: ;Now the picture 2 is tint to blue. TintBrush(2, #BLUE, 64) ;Now copy the picture 2 (tinted) to Image. CopyBrush(2, Image) If you want the original without the ef...
by emeck
Mon Feb 05, 2024 6:41 pm
Forum: RapaGUI
Topic: Treeview and XML
Replies: 18
Views: 1882

Re: Treeview and XML

I think this is the same as reported here .
by emeck
Mon Jan 22, 2024 7:18 pm
Forum: Showcase
Topic: RNOEffects
Replies: 9
Views: 8806

Re: RNOEffects

@jPV
Thank you for the new version. That's quite a list!
by emeck
Thu Jan 11, 2024 8:40 pm
Forum: Hollywood bugs
Topic: Hurl2.0 - Error initializing cURL!
Replies: 12
Views: 1706

Re: Hurl2.0 - Error initializing cURL!

I'm also getting this error when running IvoRSS (HollywoodPlayer window) in my recently installed MOS 3.18 Mac Mini. It works in my PowerBook. And it doesn't matter if it is online (I'm writing this on the Mac Mini).

Forgot to mention, HW 10 and hURL 2.0
by emeck
Wed Nov 15, 2023 7:48 pm
Forum: Wishlist
Topic: Add more Undo/Redo levels
Replies: 6
Views: 6663

Re: Add more Undo/Redo levels

Nice to see enhancements to Designer. Thanks!
by emeck
Tue Oct 03, 2023 6:03 pm
Forum: Wishlist
Topic: Image and font changing
Replies: 4
Views: 11717

Re: Image and font changing

@airsoftsoftwair

Thanks for the improvements 8-)
by emeck
Tue Jul 25, 2023 11:47 pm
Forum: Newbie questions
Topic: Get error message to don't have output window
Replies: 7
Views: 1799

Re: Get error message to don't have output window

Hi.
You can send the output to a temp file, like:

Code: Select all

Execute("version filename > T:version.out")
And then open and read the file's content.

Or you can use the RunOutput option with InstallEventHandler()
by emeck
Thu Jul 20, 2023 4:26 pm
Forum: Hollywood bugs
Topic: CreateTextObject using Align
Replies: 17
Views: 6259

Re: CreateTextObject using Align

Hi Templario, I think you don't understand how alignment for TextObject works. As I understand, it "aligns inside" the TextObject. So if your text object is just one line, it doesn't really matters because the size of the "page" for that TextObject is the size of the text. So cen...
by emeck
Sat May 27, 2023 2:53 pm
Forum: General programming
Topic: safe to removeitem from emptytable?
Replies: 2
Views: 1478

Re: safe to removeitem from emptytable?

@Bugala

Why don't you check with IsTableEmpty() before removing?