Search found 21 matches

by Tipsi
Sun Feb 10, 2019 10:28 am
Forum: Polybios
Topic: Polybios plugin embedded in executable but sometimes required
Replies: 6
Views: 7106

Re: Polybios plugin embedded in executable but sometimes required

Hollywood manual, 2.1 Overview, Plugins (PDF Page 10):

"When distributing a compiledHollywood program, plugins required
by your program must simply be put into the samedirectory as your
program."

Griessli
Tipsi
by Tipsi
Tue Nov 20, 2018 12:55 am
Forum: Hollywood bugs
Topic: Documentation problems
Replies: 44
Views: 69353

Re: Documentation problems

Hi emeck

No, Rnd(75) generates a random integer number in the range
of 0 to 75 (inclusive 75; 76 possibilities).

Griessli
Tipsi
by Tipsi
Sun Nov 18, 2018 11:43 pm
Forum: Hollywood bugs
Topic: Documentation problems
Replies: 44
Views: 69353

Re: Documentation problems

Hi emeck

History V7.1 says the following:

- Fix [Doc]: The range parameter in the Rnd() function was documented as being exclusive whereas it is inclusive in reality

Griessli
Tipsi
by Tipsi
Mon Feb 19, 2018 3:17 pm
Forum: General plugin questions
Topic: Problem with svg plugin
Replies: 5
Views: 7258

Re: Problem with svg plugin

Hi bak2017

Do you have a copy of the SVG plugin in the same directory
as your program (the executable)?

http://www.hollywood-mal.com/docs/html/ ... ation.html

Griessli
Tipsi
by Tipsi
Thu Jan 04, 2018 11:39 pm
Forum: General programming
Topic: CreateMenu
Replies: 1
Views: 3004

Re: CreateMenu

Hi sashapont You forgot the "id" and you're missing a "{ }": CreateMenu(1, { {"File", { {"New", ID = "new"}, {"Save", ID = "save"}, {"Print", ID = "print"}, {""}, {"Quit", ID = "quit&qu...
by Tipsi
Wed Nov 29, 2017 1:51 pm
Forum: General programming
Topic: Error loading @FILE preprocessor
Replies: 9
Views: 8277

Re: Error loading @FILE preprocessor

The command FileToString() works without id. The Synopsis is:

s$, len = FileToString(file$)

Write this without @FILE:

Code: Select all

moai.CreateApp(FileToString("myFile.xml"))
Griessli
Tipsi
by Tipsi
Sun Aug 27, 2017 9:46 pm
Forum: General questions
Topic: Program name
Replies: 6
Views: 11437

Re: Program name

Hi r-tea

See the function GetProgramInfo()

Griessli
Tipsi
by Tipsi
Mon Jul 31, 2017 1:52 pm
Forum: Newbie questions
Topic: @DISPLAY, field TITLE
Replies: 3
Views: 4249

Re: @DISPLAY, field TITLE

You can change the title at runtime with the function SetTitle().

Code: Select all

var=12
SetTitle(var)
----------------------------
var=564
SetTitle("Result="..var)
Griessli
Tipsi
by Tipsi
Sat Jul 15, 2017 10:59 pm
Forum: Newbie questions
Topic: Changing to full screen mode on amiga
Replies: 10
Views: 13230

Re: Changing to full screen mode on amiga

Hi peceha

COMMAND is the left or the right AMIGA key.

Griessli
Tipsi
by Tipsi
Mon Sep 26, 2016 10:05 pm
Forum: Newbie questions
Topic: Problem Table field 0 was not initialized!
Replies: 2
Views: 3719

Re: Problem Table field 0 was not initialized!

With wp_wpse = {} have you only one Dimension. But you have two. With wp_wpse[j] = {} you create a new row. Case "wp_wpse": string$ = TrimStr(TrimStr(split$[1],"(", False),")",True) value$ = SplitStr(string$,",") wp_wpse[j] = {} wp_wpse[j][0] = Val(value$[0]) ...