Search found 32 matches

by Figgy78
Mon Dec 18, 2017 8:28 am
Forum: General programming
Topic: MacOS IDE
Replies: 19
Views: 16500

Re: MacOS IDE

airsoftsoftwair wrote:Where is this unofficial Hollywood Facebook page please? I don't know that either :-)
It's a group I started a few months back. Hope you're OK with it.
by Figgy78
Thu Dec 14, 2017 12:18 pm
Forum: General programming
Topic: MacOS IDE
Replies: 19
Views: 16500

Re: MacOS IDE

Allanon wrote:Great, let's see how many people could be interested on this topic :)

I didn't know about the unofficial Hollywood facebook page I'm goin to subscribe right now!
Do a poll somewhere, maybe?
by Figgy78
Wed Dec 13, 2017 8:59 am
Forum: General programming
Topic: MacOS IDE
Replies: 19
Views: 16500

Re: MacOS IDE

Hey! That's the spirit! Personally I use RapaGUI, but I guess HGUI will do the job too :) I will be happy to contribute with input and suggestions and maybe even some graphics for the front end if that's something you need help with. I'll sign up for Patron any day.. I will also help you promote thi...
by Figgy78
Mon Dec 11, 2017 2:45 pm
Forum: General programming
Topic: MacOS IDE
Replies: 19
Views: 16500

Re: MacOS IDE

There should be some IDEs that you can easily add support for Hollywood to Yes, there is, but so far, this hasn't really been done. You have some limited support by using the LUA syntax built into some IDEs, but context sensitive search and compiling/debuging is also something that I think most use...
by Figgy78
Fri Dec 08, 2017 5:39 pm
Forum: General programming
Topic: MacOS IDE
Replies: 19
Views: 16500

Re: MacOS IDE

It is kinda anoying that Windows is the only viable platform for coding in Hollywood right now.
We really need a port of the Hollywood IDE to all the other platforms.
by Figgy78
Fri Dec 08, 2017 5:37 pm
Forum: General programming
Topic: Error loading @FILE preprocessor
Replies: 9
Views: 8256

Re: Error loading @FILE preprocessor

That's great news.. Changing the world one step at a time ;)
by Figgy78
Mon Dec 04, 2017 9:52 am
Forum: General programming
Topic: Error loading @FILE preprocessor
Replies: 9
Views: 8256

Re: Error loading @FILE preprocessor

Just a followup. Initially I couldn't get the conversion of the xml-file to UTF-8 to work, but then I discovered that the file has a few cryptic characters at the beginning. I understand this has to do with identifying the Encoding? Anyway. I solved this by stripping out the first three characters o...
by Figgy78
Fri Dec 01, 2017 2:43 pm
Forum: General programming
Topic: Error loading @FILE preprocessor
Replies: 9
Views: 8256

Re: Error loading @FILE preprocessor

ReadString() operates in characters, FileLength() in bytes. If your file is not in UTF-8, you first need to read the raw bytes and then convert them to UTF-8 using ConvertStr(), e.g. something like this: moai.CreateApp(ConvertStr(ReadBytes(1), #ENCODING_ISO8859_1, #ENCODING_UTF8)) Thank you! Will t...
by Figgy78
Fri Dec 01, 2017 12:22 pm
Forum: General programming
Topic: Open up a Finder/Explorer window
Replies: 9
Views: 7614

Re: Open up a Finder/Explorer window

airsoftsoftwair wrote:
Krzysztof wrote:Is there a way to get the path to $HOME in Hollywood?
Check out GetSystemInfo().
Combined with GetVersion() this is a rocking combination :)

Cheers!
by Figgy78
Thu Nov 30, 2017 9:13 am
Forum: General programming
Topic: Open up a Finder/Explorer window
Replies: 9
Views: 7614

Re: Open up a Finder/Explorer window

Krzysztof wrote:...On Mac you have to add file:// prefix...
Ah.. That's right! Thanks!