+ Reply to Thread
Results 1 to 2 of 2

Thread: Mac Version Tracebacks

  1. #1

    Mac Version Tracebacks

    The plugin mechanismus seems to work. But I cannot port our windows plugin yet. It seems that creating a Label on a Windows Form does not work. It is really hard to debug because I do not know where the mac version prints out the exception tracebacks.

  2. #2
    Hi,
    have you tried catching the exception (using try except):

    Python Code:
      import System
      try:
          ...
      except System.Exception, e:
         text = e.Message

    Other members of the System.Exception class are here:
    http://msdn.microsoft.com/en-us/libr...vs.100%29.aspx

    - Giulio
    ____________
    giulio@mcneel.com

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts