美文网首页
PDMS调试小工具

PDMS调试小工具

作者: 饭桶2018 | 来源:发表于2018-09-28 13:30 被阅读0次

有时候,我们想在 pdms 设计选择树中快速游走,并且获取对所选对象的一些信息或者做一些操作。
我们可以使用 PDMS 的 track 命令

track.gif

jmodebug.pmlfrm


setup form !!jmodebug DIALOG DOCKing top resize
title    |jmo debug|
TRACK '$!!cdcntrack' call |!this.track()|
toggle    .lock   'Enable/Disable Tracking current element' at x0.5   ymax callback '!this.lock()'
textpane .macro anchor top + left + bottom + right  at x0 ymax+0.1 width 45 height 10 
member .filename  is STRING
member .tracking  is BOOLEAN

exit

define method .jmodebug()
    !this.lock.val = true
    !this.tracking = true
endmethod

define method .track()
    if(!this.tracking) then
        !commands = !this.macro.val
        do !cmd values !commands
            $!cmd
            handle any
                $p $!!error.Text  $!!error.Line $!!error.command
            endhandle
        enddo
    endif
endmethod

define method .lock()
    !this.tracking  = !this.lock.val 
endmethod


$.




相关文章

  • PDMS调试小工具

    有时候,我们想在 pdms 设计选择树中快速游走,并且获取对所选对象的一些信息或者做一些操作。我们可以使用 PDM...

  • 【iOS开发】iOS10 Log调试小工具

    【iOS开发】iOS10 Log调试小工具 【iOS开发】iOS10 Log调试小工具

  • dxf 文件名转 pdms 名称

    目的 PDMS 命名中带 /Windows 文件名不能有 /所以 PDMS 输出 DXF 会修改 / 为 _ 我们...

  • iOS 开发调试工具

    一款iOS开发调试小工具,具体见 https://github.com/icofans/TTConsole 环境切...

  • 快速搭建网站本地调试环境的小工具

    网站源代码本地调试,需要搭建运行环境,有两款小工具个人觉得很好用! PHP网站本地调试环境 WAMPserver2...

  • 2020-11-09PDMS

    开始学习pdms。开始设备部分

  • JVM 基础故障处理工具

    前言 JDK 的 bin 目录下有各种不同功能的小工具,包括编译、运行、部署、签名、调试、监控、运维等等。 为了在...

  • 2020-12-16PDMS

    上午,把菏泽项目的管廊条件发出去了。 下午,把PDMS的管道建模最后一小节坡度管和PDMS的高级功能List批量,...

  • Unity3D 在Preview 中打印日志

    Preview窗口除了可以预览模型之外,我们还可以做别的操作。今天我们来写个小工具在Preview窗口中显示调试信...

  • theejs--投影工具

    能看到就是缘分,今天给大家分享一个threejs有关投影的小工具,threejs调试灯光及投影时不像unity那么...

网友评论

      本文标题:PDMS调试小工具

      本文链接:https://www.haomeiwen.com/subject/rwxpoftx.html