Search found 120 matches

by bitRocky
Tue Apr 02, 2019 2:21 pm
Forum: General programming
Topic: Peek, Poke and Big / Little endians.
Replies: 5
Views: 4246

Re: Peek, Poke and Big / Little endians.

You used TRUE/FALSE as the "endian" argument, you should use the constants #BIGENDIAN, #NATIVEENDIAN or #LITTLEENDIAN.

Code: Select all

DebugPrint(HexStr(Peek(1, 0, #SHORT, #BIGENDIAN)))
DebugPrint(HexStr(Peek(1, 0, #SHORT, #LITTLEENDIAN)))
by bitRocky
Mon Mar 18, 2019 3:11 pm
Forum: APK Compiler
Topic: How to include XML files on the Android device or into the APK compiler.
Replies: 7
Views: 7703

Re: How to include XML files on the Android device or into the APK compiler.

You have to do it this way: moai.CreateDialog([[<?xml version="1.0" encoding="iso-8859-1"?> <dialog id="dlg" title="Ajouter un Article" width="300"> <vgroup> <colgroup columns="2"> <label># Item</label> <textentry id="item"/> <lab...
by bitRocky
Mon Mar 11, 2019 2:19 pm
Forum: Hollywood bugs
Topic: SendRexxCommand(): Issues with quotes in the command
Replies: 4
Views: 4091

Re: SendRexxCommand(): Issues with quotes in the command

I think it's ARexx itself that gets confused. Try putting the whole string inside other kinds of quotes (if you use " in the string, put it in ', or vice versa). Try adding this before your debugprint line: str$="'" .. str$ .. "'" That did it! Strange, its not neccessary if...
by bitRocky
Sun Mar 10, 2019 7:44 pm
Forum: Hollywood bugs
Topic: SendRexxCommand(): Issues with quotes in the command
Replies: 4
Views: 4091

SendRexxCommand(): Issues with quotes in the command

Hi, I can't use quotes in SendRexxCommand(), it seems so that they get removed before the command is send to the rexx port!? Function p_MOSToast(text$, t) Local str$ str$ = "BUBBLE \""..text$.."\"" If HaveItem(t, "x") Then str$ = str$.." X "..t.x If ...
by bitRocky
Fri Mar 08, 2019 3:51 pm
Forum: Amiga IDE questions
Topic: FlowStudio
Replies: 16
Views: 25580

Re: FlowStudio

Hi tolkien, here http://igracki.square7.ch/dl.php?file=FlowStudio-Hollywood-Scripts.lha is the archive. I included also some external shell commands I use in the scripts, please copy all the files from the "Hollywood" directory to Hollywood: and the files from "sys" to sys: manua...
by bitRocky
Sun Mar 03, 2019 3:21 pm
Forum: Tutorials
Topic: How to properly release something out to the wild
Replies: 9
Views: 10934

Re: How to properly release something out to the wild

I personally don't want the plugins to be installed globally, because then they get loaded by all Hollywood programs even though they won't need the plugins. It's just waste to get them loaded by programs that don't actually need them for anything. Ok, I didn't knew that, I thought they are loaded ...
by bitRocky
Sun Mar 03, 2019 2:51 pm
Forum: Amiga IDE questions
Topic: FlowStudio
Replies: 16
Views: 25580

Re: FlowStudio

For anyone who uses FlowStudio for coding in Hollywood, I have some usefull scripts: A lua script (Help.lua) to open a AmigaGuide window the node for the currently word under the cursor. It supports the Hollywood.guide, MUIRoyale.guide and the RapaGUI.guide, no index files required. The other script...
by bitRocky
Sun Mar 03, 2019 1:51 pm
Forum: Tutorials
Topic: How to properly release something out to the wild
Replies: 9
Views: 10934

Re: How to properly release something out to the wild

How about if Hollywood would let the user choose to install a missing plugin? What I mean is, if a Hollywood compiled executable (or an applet) is started but a required plugin isn't available, a requester could pop up asking the user to download and install the missing plugin? So not each developer...
by bitRocky
Wed Feb 20, 2019 4:07 pm
Forum: MUI Royale
Topic: Poplist AutoVisible
Replies: 9
Views: 7674

Re: Poplist AutoVisible

You could make it look like a mui poplist object.
The user won't see any difference.
by bitRocky
Wed Feb 20, 2019 2:58 pm
Forum: MUI Royale
Topic: Poplist AutoVisible
Replies: 9
Views: 7674

Re: Poplist AutoVisible

Then you could use a borderless window with an listview. This should be possible, or not?