Rename Max console?

billyanok's icon

Is there any way to rename the max console to "my app console" for a standalone app?
Thx,
Bill

Torsten's icon
Source Audio's icon

Max Console is in the executable code .
Rename it but keep number of letters.
For menu item Max Console, edit maxinterface.json.
Similar in windows version

billyanok's icon

Hello Source Audio,
"Max Console is in the executable code . Rename it but keep number of letters."
In the .mxf file?
Thx, B

Source Audio's icon

Executable file on mac is in app/Contents/MacOS

On windows it is in the Max.exe file

billyanok's icon

Source Audio,
Got it, thx!
B

Torsten's icon

works on both platforms, thanks Source!

Dan Nigrin's icon

Just stumbled on this old thread, valuable info that I never knew, thanks @Source Audio!

Source Audio's icon

You are welcome !
I guess you want to customise own apps as much as possible...
I allways decouple location of Settings file on Windows, because they usually land in
/user/appData/Roaming/Cycling '74/my-app
One can replace Cycling '74 (11 chars) using own "company" id
from version to version replacement is located differently, but searching for
hex
43 00 79 00 63 00 6C 00 69 00 6E 00 67 00 20 00 27 00 37 00 34

will get one to right location (one with P.r.e.f.e.r.e.n.c.e.s) (or S.e.t.t.i.n.g.s in Max 8)

here Max 7.3.5

Name of the preferences folder itself should be left as is, that's job of standalone inspector

Keep same number of chars.

I mod the apps using mac, but any editor like HxD would work too on windows
One reason to do so ... I often prepare settings for my apps and
extract them to my location, if cycling one were used, my installer could overwrite
settings of other apps, like max itself.

Dan Nigrin's icon

Very useful info, thanks again!

billyanok's icon

Source Audio,
Doesn't appear to work in 8..x executable files?

Max Console doesn't seem to show up in search field?
I'm sure I'm missing something, maybe the Universal Binary?
Thx,
B

Source Audio's icon

I don't use higher max 8 vesions

billyanok's icon

Source Audio,
I used -
https://hexed.it/
It did the trick.
Thx,
B

itcoil's icon

I find 20 instances of Max Console when I search for it in my executable file on Mac, but which one of those should I change to rename the Max Console window in my app? I generated my executable with Max 8.3.2.

I've tried changing a few one by one and always use the same number of letters but the title bar of the console window still says Max Console. Changing certain other ones causes my standalone to not launch at all.

For the menu item Max Console I had no problem editing maxinterface.json successfully.

Source Audio's icon

replace them all.

on max 8.3.3 there are exactly 20 of them

itcoil's icon

I made the same standalone as yours (just a bang and a print) and tried renaming all 20 instances of Max Console in the executable to Sys-Console but the standalone crashes on launch. I then only renamed them one by one starting with the first instance and it ran successfully (but still showing Max Console in the console titlebar) until I got to the 11th instance and then the standalone crashes on launch. What I found out is that renaming any instance in the second set of 10 instances is what causes the crash.

The executable was generated by Max 8.3.2 (7b221ccb34e)(arm64 mac)

Source Audio's icon

I don't have any arm64 Mac , maybe that is what makes the difference ?

On Intel - no problems.

In fact one can strip arm or intel code code from all parts of standalone if it needs to

run only on specific platform which reduces the size of all binaries to almost half.

your first 10 instances of "Max Console" are intel parts, 11 - 20 in arm64 code.

itcoil's icon

Yes it sounds like an arm64 Mac related issue. I will just stick with having a renamed menu item and settle for the console titlebar still saying Max Console. Thank you for your insight on this.

Felipe Tovar-Henao's icon

For those with arm64 architectures, I was able to successfully change name of the Max console in the Unix executable. In essence, the missing step is code-signing the binary after the replacement.
The following python script does the job:

import os
import subprocess

input_file = "./input_bin"
output_file = "./output_bin"
target_string = "Max Console"
replacement_string = "New Console"

# Ensure the replacement string is not longer than the target string
if len(replacement_string) > len(target_string):
    raise ValueError(
        "Replacement string must not be longer than the target string.")

# Convert strings to bytes for binary operations
target_bytes = target_string.encode('utf-8')
replacement_bytes = replacement_string.encode('utf-8')

# Check if the input file exists
if not os.path.isfile(input_file):
    raise FileNotFoundError(f"The file '{input_file}' does not exist.")

# Read the binary data from the input file
with open(input_file, 'rb') as file:
    data = file.read()

# Replace all occurrences of the target string with the replacement string
if target_bytes not in data:
    raise ValueError(
        f"The string '{target_string}' was not found in the file.")
data = data.replace(target_bytes, replacement_bytes.ljust(
    len(target_bytes), b'\x00'))

# Write the modified data to the output file
with open(output_file, 'wb') as file:
    file.write(data)

# Copy the permissions from the input file to the output file
input_permissions = os.stat(input_file).st_mode
os.chmod(output_file, input_permissions)

print(f"Replaced '{target_string}' with '{replacement_string}' in the file '{
      input_file}' and saved as '{output_file}'.")

# Re-sign the binary
try:
    subprocess.run(["codesign", "--force", "--sign",
                   "-", output_file], check=True)
    print(f"Successfully re-signed the file '{output_file}'.")
except subprocess.CalledProcessError as e:
    print(f"Error during code signing: {e}")

print("Replacement and re-signing complete. Test the file on the target architecture.")

For the record, when trying to use the same binary in a different arm64 MacOS machine, I had to use the following command, simply because Apple adds some quarantine attributes to apps downloaded from untrusted sources.

xattr -c <path_to_app.app>


This may or may not be required depending on how the file is downloaded. Additionally, I'm not able to check if the app also runs in Intel architectures.

billyanok's icon

FELIPE TOVAR-HENAO, worked perfect.

Thank you,

B