There is no explicit function for doing this, but it is easily accomplished by redefining some plugin methods. Just go to your SketchUp plugins folder and create a file named
maxwell.mod.rb. Open the file in Notepad and paste in the following Ruby code:
Code:
require 'maxwell'
module MX
def MX.is_network_node_running?
return true
end
def MX.is_network_manager_running?
return true
end
end
This file will be loaded after the main
maxwell.rb file -- what it does is to fool the plugin into thinking that the node and manager are already running.