Access Project Properties window fields in code as constant or ...?

Hi, is it possible to access (read only or as a constant or something) any of those fields seen in the Project Properties window? If so, how exactly?

Thx

They should be ant variables, probably they are listed in the properties file in the nbproject folder.

I’m sorry to push, but if you know how, could you elaborate and give a line of code to access the title for instance?

echo “${app.title}”

I think I misread your first post. This is an ANT script, but is this accessible from within the Java scope? Like in main(String[] args) { } for instance?

@.Ben. said: I think I misread your first post. This is an ANT script, but is this accessible from within the Java scope? Like in main(String[] args) { } for instance?

No. It’s only available in ant.

If you want it available in your app then you could embed it (duplicated) in the runtime arguments or you could create an automated solution where you write it out to a class resource and read it at runtime. I do something similar with build time.

Ah OK. Well… I mean… it’s not THAT important so… for now I’ll write it both places :stuck_out_tongue:

Thx anyways.