| Go to Page... |
| Updated: | 02-19-12 01:18 PM |
| Created: | 02-19-12 01:22 AM |
| Downloads: | 139 |
| Favorites: | 6 |
| MD5: |
![]() |
Comment Options |
|
|
|
|
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 |
| Find More Posts by D-BorG |
| Add D-BorG to Your Buddy List |
|
|
|
|
|
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 |
| 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 |
| Find More Posts by TimeBomb |
| Add TimeBomb to Your Buddy List |
|
|
|
|
|
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 |
| Find More Posts by adelea |
| Add adelea to Your Buddy List |
![]() |
