Miniwood

Report any Hollywood bugs here
Post Reply
User avatar
root
Posts: 30
Joined: Sun Feb 14, 2010 12:24 pm

Miniwood

Post by root »

When I try to compile with miniwood, an error appears:
Constant #KEEPASPRAT not found!
When compiling without Miniwood, there are no errors.

Code: Select all

ScaleBrush(217,"50%",#KEEPASPRAT) 
I couldn't find anything about Miniwood in the manual at short notice.

Edit:
okay, other constants don't work either like #CLIPBOARD_TEXT or #BLUE
plouf
Posts: 675
Joined: Sun Feb 04, 2018 11:51 pm
Location: Athens,Greece

Re: Miniwood

Post by plouf »

thats because using miniwood you HAVE to use @USING one by one to every component you are about to use

@USING "graphics"
@USING "brush"
is the absolute minimun based in your code, however every other "missing constant" is another one component need to linked

hollywood 11 manual isnt online yet, but check manual ->miniwood"-> library dependencies to see what else your program needs

provide full working if more problems exist so we can check
Christos
User avatar
root
Posts: 30
Joined: Sun Feb 14, 2010 12:24 pm

Re: Miniwood

Post by root »

Buhahah!
Today I figured out why I couldn't find anything in the documentation. It was from 2016.


But I'm having trouble loading the serializer library.

Code: Select all

@USING	"serializer"
Library "serializer.hwl" cannot be loaded!
User avatar
jPV
Posts: 739
Joined: Sat Mar 26, 2016 10:44 am
Location: RNO
Contact:

Re: Miniwood

Post by jPV »

root wrote: Wed Jan 14, 2026 6:30 pm But I'm having trouble loading the serializer library.
It's "serialize", not ...r. Maybe documentation should be corrected to this... or you could use my script to list correct libs ;) Or check the libs dir on Hollywood for lib names (Hollywood:Libs/ on Amiga).
User avatar
root
Posts: 30
Joined: Sun Feb 14, 2010 12:24 pm

Re: Miniwood

Post by root »

ok, thx!
Post Reply