Graphics

 View Only
  • 1.  Xpression Debug Monitor

    Posted 02-12-2019 02:11
    Is there a trick to making the debug monitor work in Xpression? It launches, but it doesn't seem to do anything. It would be super handy for finding runtime errors in the scripts that I write.


  • 2.  RE: Xpression Debug Monitor

    Posted 02-12-2019 08:47
    Make sure "Use Debug Monitor" or w/e is checked in Preferences -> Advanced.
    Double check your engine.debug syntax in your scripts.

    If all else fails, can always do it the dumb fashioned way (editing a textobject's text).

    #XPression


  • 3.  RE: Xpression Debug Monitor

    Posted 02-19-2019 06:34
    I've had the monitor work sometimes, but overall it just sits there and does nothing. I would expect it to mirror the performance at the bottom at the very least...
    #XPression


  • 4.  RE: Xpression Debug Monitor

    Posted 10-17-2019 21:53

    We had this problem on our Designer machine (unresponsive Debug Monitor) and I put in a ticket, a helpful Ross tech support dude TeamViewered into our machine and fixed it. Here's what he appears to have done on the command line (ie. Command Prompt app). Obviously adjust for the correct path where your xpDbgMon.exe file actually is on your system, if different, for example it may be in C:\Program Files\XPressionStudio. You may also need to have admin rights on your login to perform this, I'm not sure. As mentioned above, make sure Preferences>Advanced>Enable debug monitor for scripting is checked first.

    Hope this helps someone because not having debugMessage() available makes it really hard to debug anything. As a backup, you can use the engine.writeToLog() function, which will show up in Tools>Debug>Live Log, but there's a lot of noise in that channel, where Debug Monitor just gives you what you send to it.

    cd C:\Program Files\XPressionDesigner
    xpDbgMon.exe /regserver

    Debug Monitor now works, and continued to work through a system restart.


    #XPression