Gimp python-fu 如何更改菜单文本(标签)
Gimp python-fu how to change menu text (label)
我得到了这个代码:
from gimpfu import *
def goOn(url) :
# change text
return
register("won","auto go","include image","D.X","D.X","2020","Launch server...",
"",[(PF_STRING, "string", "URL", 'http://localhost:3000')],
[],goOn,menu="<Image>/Edit")
main()
这将创建一个菜单项,当您单击它时可以启动 goOn 功能,
单击后如何更改文本“启动服务器...”?
您不能动态地将菜单文本更改为其他内容。更改它的唯一方法需要 1) 更改您的代码和 2) 重新启动 Gimp。
我得到了这个代码:
from gimpfu import *
def goOn(url) :
# change text
return
register("won","auto go","include image","D.X","D.X","2020","Launch server...",
"",[(PF_STRING, "string", "URL", 'http://localhost:3000')],
[],goOn,menu="<Image>/Edit")
main()
这将创建一个菜单项,当您单击它时可以启动 goOn 功能, 单击后如何更改文本“启动服务器...”?
您不能动态地将菜单文本更改为其他内容。更改它的唯一方法需要 1) 更改您的代码和 2) 重新启动 Gimp。