Re: [Qgis-user] How can I call pluginA from pluginB?

2016-04-19 Thread 荻原
Hi John Hi Luigi Thank you very much for good answers I finally got it before sending mail, I tried that: [in pluginA source code] testPluginB = pluginB(iface) testPluginB.run() but window is not opened... I was stuck in reference to your answers, I tried that: [in pluginA source code] test

Re: [Qgis-user] How can I call pluginA from pluginB?

2016-04-19 Thread John Layt
On 19 April 2016 at 11:47, 荻原 wrote: > Hi! > I would like to ask a question how to call different plugin from a plugin. > > I made two plugin using plugin builder . > > when I want to use plugin, I click plugin Icon in toolbar or menu,and > the main window open. > (That plugin is dockwidget plugi

Re: [Qgis-user] How can I call pluginA from pluginB?

2016-04-19 Thread Luigi Pirelli
hi Ryo remember that python plugins simply are python modules => import your plugin PluginB and instantiate or get it's instance from qgis.utils.plugins dictionary regards Luigi Pirelli ** * Boundless

[Qgis-user] How can I call pluginA from pluginB?

2016-04-19 Thread 荻原
Hi! I would like to ask a question how to call different plugin from a plugin. I made two plugin using plugin builder . when I want to use plugin, I click plugin Icon in toolbar or menu,and the main window open. (That plugin is dockwidget plugin) I would like to do that from plugin. when I clic