Created
July 24, 2020 12:49
-
-
Save theboreddev/3d889b126a5da267da9b36b6d4c4e8d8 to your computer and use it in GitHub Desktop.
text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final String text = "{\"widget\": {\n" + | |
" \"debug\": \"on\",\n" + | |
" \"window\": {\n" + | |
" \"title\": \"Sample Konfabulator Widget\",\n" + | |
" \"name\": \"main_window\",\n" + | |
" \"width\": 500,\n" + | |
" \"height\": 500\n" + | |
" },\n" + | |
" \"image\": { \n" + | |
" \"src\": \"Images/Sun.png\",\n" + | |
" \"name\": \"sun1\",\n" + | |
" \"hOffset\": 250,\n" + | |
" \"vOffset\": 250,\n" + | |
" \"alignment\": \"center\"\n" + | |
" },\n" + | |
" \"text\": {\n" + | |
" \"data\": \"Click Here\",\n" + | |
" \"size\": 36,\n" + | |
" \"style\": \"bold\",\n" + | |
" \"name\": \"text1\",\n" + | |
" \"hOffset\": 250,\n" + | |
" \"vOffset\": 100,\n" + | |
" \"alignment\": \"center\",\n" + | |
" \"onMouseUp\": \"sun1.opacity = (sun1.opacity / 100) * 90;\"\n" + | |
" }\n" + | |
"}} "; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment