Mac OS 9 Lives

Mac OS 9 Discussion => Mac OS 9, Hacks & Upgrades => Topic started by: IIO on August 26, 2023, 08:18:34 AM

Title: Application Hack
Post by: IIO on August 26, 2023, 08:18:34 AM
if anyone has too much time... i need to change the maximum video file export size for artmatic 3.0

searching for "1440" as ASCII in the resource fork and in the data fork lead to nothing (not really surprising) until now.

unfortunately the program uses the dumb "pict" format, which might actually have a 4000*4000px limit by definition, but otherwise quicktime-created formats should not have any limits, isnt it?

Title: Re: Application Hack
Post by: IIO on August 26, 2023, 09:09:35 AM
v-track, another program from the same people, which also can render artmatic files, offers 2048*1536 where artmatic has 2048*1440.

so it is highly likely that the limit is really only in the numberbox GUI.

which unfortuntely does not use any "apple" menu resources.
Title: Re: Application Hack
Post by: joevt on August 26, 2023, 11:09:22 AM
searching for "1440" as ASCII in the resource fork and in the data fork lead to nothing (not really surprising) until now.
Then the obvious thing to do next is search for 1440 in hex which is 0x05A0. You'll probably get many hits, so search for the other possible values and see which are in proximity to each other.
Title: Re: Application Hack
Post by: ssp3 on August 26, 2023, 01:21:09 PM
If you don't have a proper disassembler at hand, try to have a look at data fork with this app, maybe that helps to locate what you're looking for.
https://github.com/horsicq/DIE-engine/releases
Title: Re: Application Hack
Post by: IIO on August 28, 2023, 05:53:49 AM
hm.

Title: Re: Application Hack
Post by: IIO on August 28, 2023, 06:13:25 AM
ah, solved. thanks guys.

it works when you save from the file menu(!) instead of the fancy export icons.

i never used this in the last 20 years because until now i did not had the need to export bigger stuff.
Title: Re: Application Hack
Post by: ssp3 on August 28, 2023, 06:35:07 AM
Damn coders! :o
Title: Re: Application Hack
Post by: IIO on August 28, 2023, 06:45:29 AM
it is a bit weird that the other dialogs have limits.

but eric wenger just told me it would not have limits and then i questioned myself and had a look again.

which is suprisingly often the solution to technical problems. :P
Title: Re: Application Hack
Post by: IIO on August 28, 2023, 06:45:45 AM
...