You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doublewera edited this page Oct 28, 2010
·
1 revision
Texts are stored at Database. Each text has a string Id.
When you want to read a text send a message to text server
like this:
{
"src" : "you app here",
"dst" : "/std/text",
"action" : "read",
"strid" : "your_string_id_here"
}
To write a string you should have a unique name or right to
modify existing string. Your message will look like:
{
"src" : "you app here",
"dst" : "/std/text",
"action" : "write",
"strid" : "your_string_id_here",
"value" : "A text."
}