Accessing The Resource Module (a.k.a. Rez)

Former Member
Former Member
Hi Connectors,

How can I gain access to the compiler-generated resource module (file)? I always want to learn as much as possible about the environment I am in.

Thanks,
Jeff
  • Why? What are you hoping to see?
  • If you build from the command line, the -g flag cause the compiler to send some output to stderr. You can capture this, and then view the results in a text editor.

    C:\Development\Projects\Test> monkeyc -g -w -m manifest.xml -o bin\Strings.prg -z resources\bitmaps.xml;resources\resources.xml;resources\strings.xml source\Strings.mc 2> out


    I don't see that it is incredibly useful, but you might.

    Travis
  • Former Member
    Former Member over 9 years ago
    Hi Travis,

    Oh, nothin' much...or everything at once. I wont know until I see. I just like to know what is happening behind the scenes - especially when I am learning something new. Didn't you ever disassemble your toys as a kid to see what made them tick :D:confused: ?

    At any rate, thanks for the tip!