Go to Page... |
Updated: | 02-19-12 02:18 PM |
Created: | 02-19-12 02:22 AM |
Downloads: | 496 |
Favorites: | 3 |
MD5: |
Comment Options |
06-29-12, 02:39 AM | |
Forum posts: 0
File comments: 2
Uploads: 0
|
list of saved notes
is it possible to have slash command to list all saved notes?
|
|
D-BorG |
View Public Profile |
Send a private message to D-BorG |
Send email to D-BorG |
Visit D-BorG's homepage! |
Find More Posts by D-BorG |
Add D-BorG to Your Buddy List |
02-19-12, 02:51 PM | |
|
Perfect - thanks - having the whole text area clickable to make it active makes it much much easier!
|
|
adelea |
View Public Profile |
Send a private message to adelea |
Send email to adelea |
Visit adelea's homepage! |
Find More Posts by adelea |
Add adelea to Your Buddy List |
TimeBomb |
View Public Profile |
Send a private message to TimeBomb |
Send email to TimeBomb |
Visit TimeBomb's homepage! |
Find More Posts by TimeBomb |
Add TimeBomb to Your Buddy List |
02-19-12, 09:29 AM | |
|
Very useful thank you!
One request - is it possible to make the text area a bit darker - sometimes seems a bit hit and miss as to whether I click in it to make it active. And a note you may not be aware of (bearing in mind your commnet on the riftforums) =) When you do a UI.CreateFrame(..., context) You can pass in a frame as the context, which then parents the old frame to the new one. You can then hide/show everything by toggling the display of the parent frame. Code:
gui.frame = UI.CreateFrame("SimpleWindow", "", Notepad.context) gui.textArea = UI.CreateFrame("SimpleTextArea", "textarea", gui.frame) gui.textField = UI.CreateFrame("RiftTextfield", "Textfield", gui.frame) Code:
function Notepad.ToggleVisibility() if not Notepad.visible then Notepad.interface.frame:SetVisible(true) else Notepad_Config.y = Notepad.interface.frame:GetTop() Notepad_Config.x = Notepad.interface.frame:GetLeft() Notepad.interface.frame:SetVisible(false) end Notepad.visible = not Notepad.visible end |
|
adelea |
View Public Profile |
Send a private message to adelea |
Send email to adelea |
Visit adelea's homepage! |
Find More Posts by adelea |
Add adelea to Your Buddy List |