With this plugin you can use Websocket communication between your Axure demo and Websocket server , e.g.:
- Communication between two Axure demo
- Communication between Axure demo and other prototype, such as Ardunio, Protopie
2.insert <script src="wsForAxure.js"></script> into the html file that you want to use websocket communication
"javascript:sendContent("Your message goes here")
Modify the messageReceived funtion in the wsForAxure for handle the message from server as you like, such as set the message as value of a Axure Global variable
function messageReceived(evt) {
//Handle your message here
var received_msg = evt;
//e.g: pass the msg to Axure global variable "AxureVariable"
$axure.setGlobalVariable("AxureVariable", received_msg);
console.log(received_msg);
}
You can use following code to pass value to variables in your Axure demo **$axure.setGlobalVariable("AxureVariableName", #ValueToSet#)