Search found 111 matches

by peceha
Sun Oct 08, 2017 2:37 pm
Forum: Showcase
Topic: My new documentation site and about where I'm heading :)
Replies: 82
Views: 87185

Re: My new documentation site and about where I'm heading :)

Unfortunately, adding #ENCODING_UTF8 to ReadString() is not quite helping: there is no error anymore at line 351 but the same error jumps in but few lines away, at line 379 (this is also ReadString() command but #ENCODING_UTF8 parameter doesnt help here). I tried with SetDefaultEncoding(#ENCODING_UT...
by peceha
Sat Oct 07, 2017 12:44 pm
Forum: Showcase
Topic: My new documentation site and about where I'm heading :)
Replies: 82
Views: 87185

Re: My new documentation site and about where I'm heading :)

Could you explain a little bit more where to switch?

I changed:
File > IDE settings > save format
to
ISO-8859-1 and resaved both files (ID3Tag and tagReader) but it didn't change anything.
by peceha
Sat Oct 07, 2017 9:18 am
Forum: Showcase
Topic: My new documentation site and about where I'm heading :)
Replies: 82
Views: 87185

Re: My new documentation site and about where I'm heading :)

Hi Allanon, thank You for the library - have not needed until now :) so I decided to give it a try. When I start the example program and choose mp3 file I got an error: Error in line 351 (ID3Tag.hws): Invalid UTF-8 sequence encountered! and this is the highlighted line: FrameType = ReadString(nf, 4)...
by peceha
Fri Oct 06, 2017 10:18 pm
Forum: Hollywood bugs
Topic: OnMouseMove gives wrong Y on classic amiga
Replies: 2
Views: 3971

OnMouseMove gives wrong Y on classic amiga

Hi, please run that script on PC (all is working fine) and classic amiga (wb3.1 in my case - there is an offset to Y position given by OnMouseMove) To see something going on you have to start clicking inside the window - that clicking will create points under the coursor (on PC but not on amiga). Ob...
by peceha
Tue Oct 03, 2017 11:18 am
Forum: Newbie questions
Topic: Need to make the fastest "list" on classic amiga
Replies: 3
Views: 3972

Need to make the fastest "list" on classic amiga

Hi, the title doesn't say too much so let me explain. I have a window where I can display all, let's say mp3, from a choosen folder - the display is like a list, one name under another. Now if the list height is greater then window's height I need to scroll the list - here comes the question: how to...
by peceha
Sat Sep 30, 2017 7:32 am
Forum: Newbie questions
Topic: How to check what combination of keys was pressed?
Replies: 9
Views: 9082

Re: How to check what combination of keys was pressed?

Hi, I'm talking about windows classic amiga (wb3.1) the first 4 lines are not showing anything Function p_HandlerFunc(msg) Switch(msg.action) Case "OnKeyDown": If msg.key="r" And IsKeyDown("RALT") Then NPrint("ralt r") ;not working If msg.key="r" And...
by peceha
Fri Sep 29, 2017 1:44 pm
Forum: Newbie questions
Topic: How to check what combination of keys was pressed?
Replies: 9
Views: 9082

Re: How to check what combination of keys was pressed?

Sorry :) When you open Hollywood documentation on IsKeyDown() command, you will see there is something like: "control keys": ... END, UP, SPACE, INSERT, F1 ... "charactrer keys" (from the English alphabet): A,B, C... "qualifier keys": LSHIFT, LCONTROL, LALT... What I me...
by peceha
Fri Sep 29, 2017 9:08 am
Forum: Newbie questions
Topic: How to check what combination of keys was pressed?
Replies: 9
Views: 9082

Re: How to check what combination of keys was pressed?

Thanks!!
I would never think about it myself :)

Unfortunately it works only with character keys and keys called "control" in manual for isKeyDown() .
It doesn't work for "qualifier keys" :cry:
by peceha
Wed Sep 27, 2017 9:45 pm
Forum: Newbie questions
Topic: How to check what combination of keys was pressed?
Replies: 9
Views: 9082

How to check what combination of keys was pressed?

Hi, I'd like to know how to check what combination of keys was pressed. For example: CONTROL R Function p_HandlerFunc(msg) Switch(msg.action) Case "OnKeyDown": ?????????? - what should I put in here ???????????? EndSwitch EndFunction InstallEventHandler({OnKeyDown=p_HandlerFunc}) Repeat Wa...