Search found 36 matches

by JurassicC
Fri Sep 20, 2013 9:10 pm
Forum: Newbie questions
Topic: Installing Hollywood on an A1200 with 3.9bb2 P96 & Voodoo3
Replies: 3
Views: 5188

Re: Installing Hollywood on an A1200 with 3.9bb2 P96 & Voodoo3

OK answering myself it uses datatypes I've reinstalled my PNG and BMP datatypes and I've got the 5.2 update to install. However, the 5.3 update just hangs (frozen machine) when you click Install on the installer screen for the process to begin. Is there a way to debug whats causing it or install the...
by JurassicC
Thu Sep 19, 2013 11:26 pm
Forum: Newbie questions
Topic: Installing Hollywood on an A1200 with 3.9bb2 P96 & Voodoo3
Replies: 3
Views: 5188

Installing Hollywood on an A1200 with 3.9bb2 P96 & Voodoo3

Couple of questions regarding some issues installing Hollywood on my classic. When installing Hollywood 5 on a 68060 can you use the 3.x (FPU) version ? I've installed it using both versions Non FPU and FPU but As soon as the intro demo goes to start , at the end of the installer, I get a hollywood ...
by JurassicC
Sat Feb 23, 2013 9:03 pm
Forum: General programming
Topic: Can downloadfile() do ftp mget equivalent.
Replies: 1
Views: 3179

Can downloadfile() do ftp mget equivalent.

Is there a way to do an ftp download of a complete directory using a wildcard (*) or some other way to replicate mget using downloadfile() ?
by JurassicC
Fri Nov 16, 2012 10:11 pm
Forum: Announcements
Topic: Hollywood 5.2 released - 10th Anniversary Edition
Replies: 29
Views: 72041

Re: Hollywood 5.2 released - 10th Anniversary Edition

Many Thanks updated win, android and amiga versions. All went fine without a hitch. :)
by JurassicC
Mon Oct 22, 2012 1:08 pm
Forum: Wishlist
Topic: Execute() enhancement
Replies: 4
Views: 6428

Re: Execute() enhancement

Agreed as I'm currently redirecting the output from a called program to a text file, then reading the text file back in to see what the ouput was.
by JurassicC
Mon Oct 22, 2012 1:00 pm
Forum: Newbie questions
Topic: No Programming Knowlegde
Replies: 27
Views: 29691

Re: No Programming Knowlegde

I highly recommend reading the blog djrikki does and have a look at the code snipets on OS4depot. (Hint for some more blog articles) it was reading that blog that was the deciding factor for me to purchase hollywood. I was struggling get my head around C after a huge hiatus and needed something I co...
by JurassicC
Sun Oct 21, 2012 10:00 pm
Forum: General programming
Topic: Inspecting on which platform apps are running
Replies: 6
Views: 7390

Re: Inspecting on which platform apps are running

Would it also be possible to add support for "MachineName" under AmigaOS4.1 that way you see if your script is running on an X1000 (faster) or an A1200 with a Blizzard (slower). In python its amiga.getmachine() so you can make a little script called whichamiga.py --snip-- import amiga prin...
by JurassicC
Sun Oct 21, 2012 9:31 pm
Forum: General programming
Topic: Working with ftp timeouts
Replies: 1
Views: 3175

Working with ftp timeouts

I want to introduce an error check for an ftp server. Thinking outloud here I know the default timeout is 10 seconds and can be lowered but as I'm making upto 148 downloadfile() connections one after the other I would idealy like to check if the ftpserver is reachable first rather than have to deal ...
by JurassicC
Fri Sep 14, 2012 12:00 pm
Forum: General programming
Topic: WriteLine()
Replies: 2
Views: 3990

Re: WriteLine()

Thanks I'll give it a go


--Edit--
Whoot.. thanks that works great :P
by JurassicC
Thu Sep 13, 2012 10:34 pm
Forum: General programming
Topic: WriteLine()
Replies: 2
Views: 3990

WriteLine()

Is there a way writeline() can be used to write multiple strings to a single line of a file opened as #MODE_WRITE Writeline(2, A$,B$,C$) I'm looking to output as comma delimated, so creating a simple MS Excel compatable report Idealy something like Writeline(2, A$,",",B$,",",C$) ...