System25 / drxtract

Macromedia Director 5 DRI and DRX files data extractor
GNU General Public License v2.0
22 stars 4 forks source link

bitd2bmp not found #6

Closed gmarty closed 4 years ago

gmarty commented 4 years ago

I'm running drxtract on Mac with Python 3.7.7 and I get the following error message when I try to extract a .dxr file:

$ python3 drxtract mac ../cd/data/st.dxr ../stdxr
[...]
sh: /bitd2bmp: No such file or directory
System25 commented 4 years ago

Hi, you must run it like this: ./drxtract mac ../cd/data/st.dxr ../stdxr

The "./" is important because that path will be used as the base path to run the scripts. So, setting the "./" in "./drxtract" it will run "./bitd2bmp".

If you use a folder it will work too. And "./drxtract/drxtract" will run "./drxtract/bitd2bmp".

Best regards!

gmarty commented 4 years ago

Great! It worked and I don't have this error message now. Thank you!