You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mozilla-la...@googlegroups.com
Hello, sorry for my english.
I want to created a widget with a label. Label is "setting.html". In this file I have an input text. My question is how to save it and use it in main.js ?
Can you give me a simple exemple because the exemple in the "Developer Guide" is difficult for me.
Thanks.
35niavlys
unread,
Nov 4, 2011, 8:49:44 PM11/4/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mozilla-la...@googlegroups.com
I have find a other exemple. Now, my problem is how to send 2 parameters with "postMessage" because "postMessage(arg1, arg2)" don't work for me.
KWierso
unread,
Nov 4, 2011, 10:13:23 PM11/4/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mozilla-la...@googlegroups.com
This should work:
postMessage([arg1,arg2]);
Then wherever you're receiving the message it would do something like onMessage:function(arr) { var arg1=arr[0]; var arg2=arr[1]; }
35niavlys
unread,
Nov 5, 2011, 6:03:37 AM11/5/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message