inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Sept 16, 2013 12:58:53 GMT -8
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,022
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Sept 16, 2013 13:10:41 GMT -8
Thank the lord for that. I wasn't looking forward to a ro-sham-boing (mainly because I didn't know exactly what it involved and the mind was working overtime and each scenario was getting worse!). I can now sleep easy tonight. Make sure the ro-sham-bo is settled/canceled before going to sleep or you might wake up to a painful surprise
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Sept 16, 2013 13:15:47 GMT -8
Noooooooo! How about a game of rock-paper-scissors-lizard-spock to see who goes first! (None of the scenarios I'd thought of were quite as 'painful' as what it actually was. Maybe I wont sleep tonight after all! )
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 20, 2013 0:50:31 GMT -8
hey Tim CamaraI have been trying to get this forum key to work, and I must be overlooking something. if I do a .get() on it, it returns an empty object {} how do I set data to it? I tried pushing an array to it with .set(array) and it didnt take. I also tried adding a new item into the empty object and push my data to that item, then set the key and it still didnt take. is there something I am missing?
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Oct 21, 2013 9:41:36 GMT -8
It would be helpful if I could see the code you're using. It should be just as simple as this:
pb.plugin.key('YOUR_SUPER_KEY_NAME').set({ value: 'testing' });
pb.plugin.key('YOUR_SUPER_KEY_NAME').get(); The only thing I can think of that might be a gotcha is that the super key works with the new syntax. The old proboards.plugin syntax is still there for backwards compatibility, but all the new features are run through the new syntax.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 21, 2013 18:20:59 GMT -8
I was using
proboards.plugin.key('wormo_status_tracking').set(status_currStorage);
where status_currStorage was an array of objects.
then I tried
pb.plugin.key('wormo_status_tracking').set(status_currStorage);
then I tried
pb.plugin.key('wormo_status_tracking').set({value:status_currStorage});
and we have a winner. so it might be important to know that the "insert" button in the editor still uses the old syntax.
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Oct 22, 2013 7:57:28 GMT -8
Hm, good catch, I'll see if I can't get that fixed quickly.
|
|