Arrows and Icons #1532
Unanswered
Kayoz1984
asked this question in
Creating games with Quest
Replies: 1 comment 2 replies
-
Hello =) You used When you select that block in the editor, you should see the Delete button appear above it. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm looking at the documentation and found this
**Changing the Arrows
The arrows in the compass rose and the triangles to the left of the panes are icons that are defined in JQuery. To change their color, you need to replace the image file (they are all in one file).
You can get an image file with the right colours, from here: http://download.jqueryui.com/themeroller/images/ui-icons_800080_256x240.png
You can change the number 800080 to the RGB colour what you want (I guess the file server creates the images on the fly, and will accept any value, but that may not be the case), this is a dark purple I was trying. Save the file in your game folder.
Then you just need to do this to get the new icons in your game (again, modifying the number for your downloaded file):
JS.setCss (".ui-icon", "background-image', 'url(" + GetFileURL("ui-icons_800080_256x240.png") + ");")
Once you have the file, you could edit it to change the shape of the arrows too, or make them multicoloured (using the web editor, you will need to use the “Show picture” script element to upload the image; once uploaded, delete the “Show picture”).**
I followed the instruction up to "delete the Show picture". I'm not sure what this means?
Beta Was this translation helpful? Give feedback.
All reactions