renderguy wrote:
>> I recently started using Fluid (1.1.7) for a small project but
>> can't seem to use 'FL_COMMAND' within my menu item shortcuts,

        Hmm, try using code to make the shortcut assignment.
        In my own code I use eg:

[..]
menu.add("Copy", FL_COMMAND + 'c');
[..]

        ..and that seems to work across platforms (without #ifdefs),
        such that on OSX it is triggered when the user hits Cloverleaf-C,
        and on win/unix, it is triggered when the user hits Ctrl-C.

        I'm not sure what fluid's automatic mechanism is, but I think
        if you use the FL_COMMAND macro instead of the hardcoded values
        that fluid seems to use, it should work as you expect.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to