Category: Miscellaneous
Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Gello's Portal Bug Reports Feature Requests
Author:
Version:
1.6
Date:
12-03-2008 11:26 AM
Size:
14.92 Kb
Downloads:
16,124
Favorites:
343
MD5:
Pictures
Click to enlarge
Click to enlarge
TinyPad   Popular! (More than 5000 hits)
TinyPad is a notepad mod.

__ New in 1.6 __
- Link support (for items, quests, spells and tradeskills)

To summon: /tinypad or /pad or set a key binding
To resize: drag the resize grip in the lower right corner of the window.

The mod should be self explanatory how to use. Mouseover buttons to see what they do.

__ Notes on link support __
  • To add links to pages: Bring up a TinyPad page and put the blinking cursor where you want to insert a link, then shift+click an item, spell or quest as you ordinarily would to chat.
  • To view links: Click them.
  • To send links: Shift+click to chat as you would normally.
  • Links can't be copy-pasted unfortunately (addons can't play with the clipboard), but you can link it to yourself and insert a link elsewhere in the text via chat.
  • Links may display only a handful of characters, but they have many hidden control characters (especially tradeskills). The EditBox is not intended to handle massive amounts of text, so keep that in mind if trying to cram the entire contents of AtlasLoot into one page.

__ Notes __
  • Searches are case insensitive.
  • You can bind a key to search.
  • Pages aren't "saved" until you leave the page, so expect Search to not find new stuff on your current page.
  • While locked, the window won't go away with ESC, but you can still toggle it with /pad or a key binding.
  • You can also run pages with /script TinyPad.Run(page)
  Optional Files - TinyPad
File Name
Version
Size
Author
Date
Type
For version 1.6
5kB
02-18-2009 02:01 PM
Patch
  Comments - TinyPad
Post A Reply Comment Options
Old 10-19-2009, 12:21 PM  
xtoq
A Fallenroot Satyr
 
xtoq's Avatar
Interface Author - Click to view interfaces

Forum posts: 24
File comments: 494
Uploads: 1
Re: 3.1 Update available

Quote:
Originally posted by Mita
Is there an update for the new content patch? Even if its a TOC update it will stop listing as old.
Just update the toc yourself, few authors find the need to push an update just for a toc edit.
__________________
There is absolutely no evidence to support the theory that life is serious.
xtoq is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-23-2009, 10:15 AM  
Mita
A Fallenroot Satyr
Interface Author - Click to view interfaces

Forum posts: 21
File comments: 23
Uploads: 1
3.1 Update available

Is there an update for the new content patch? Even if its a TOC update it will stop listing as old.
Mita is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-30-2009, 05:58 AM  
Manaman
A Deviate Faerie Dragon

Forum posts: 19
File comments: 72
Uploads: 0
I can't seem to add links. I have shift-clicked from links in chat, atlasloot, bags, etc... and nothing works. Do I need enable the feature somehow? Thanks.
Manaman is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-19-2009, 04:54 AM  
Sparanoid
A Defias Bandit

Forum posts: 3
File comments: 57
Uploads: 0
link support doesn't works with oApplication

http://www.wowinterface.com/download...plication.html
Sparanoid is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 02-28-2009, 08:45 PM  
bossmansmith
A Defias Bandit

Forum posts: 3
File comments: 19
Uploads: 0
anyway to copy text via script

is there a script function that can be used to copy an entire page into raid chat (example instructions for a boss in naxx that is over the normal copy and paste character limit)?
bossmansmith is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 02-18-2009, 02:05 PM  
contegiova
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 2
Uploads: 1
Optional File! ^^

Uploaded an ITALIAN translation for this fantastic addon ^^
Have fun!
contegiova is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 02-01-2009, 12:09 PM  
UAF_Omega
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Aesthetics

I have a request, was wondering if you could add another box to the side of Tinypad that links to each page you have created by listing the page names in a certain order.

Basically, I want a quick way to look through all the pages of information. Kinda like a collapse and expand system thats in windows.

I third the minimap button also!
UAF_Omega is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-20-2008, 07:48 AM  
dimebagdrl
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I wanna second the minimap button. I'm used to going to a minimap radial to open most of my add-ons. having that ability with tinypad would make it perfect.
dimebagdrl is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-04-2008, 01:15 PM  
Ratso Steamwheedle
A Kobold Labourer
 
Ratso Steamwheedle's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 5
Uploads: 3
Hi just wanted to say I really like this mod.

Would really like to have a minimap button for it.
Ratso Steamwheedle is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-03-2008, 08:36 PM  
Gello
A Scalebane Royal Guard
Interface Author - Click to view interfaces

Forum posts: 407
File comments: 136
Uploads: 65
To be honest i didn't think the fix would be that simple. That's a great fix thanks gix! I'll have it in next update.

Quote:
Originally posted by gix
Seems like the scrolling bug I've been experiencing since forever is still in TinyPad. (Is that only me or does noone else notice that?)

I replaced this
Code:
	if ( max > 0 and (self.max ~= max) ) then
		self.max = max
		scrollBar:SetValue(max)
	end
with some snippet I use for textareas:
Code:
	if self.max and max > self.max
			and abs(self.max - floor(scrollbar:GetValue())) < 0.001 then
		scrollbar:SetValue(max)
		self.max = max
	end
Now inserting new lines does not scroll to the bottom all the time.
Gello is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-03-2008, 05:56 PM  
gix
A Deviate Faerie Dragon
 
gix's Avatar

Forum posts: 13
File comments: 3
Uploads: 0
Seems like the scrolling bug I've been experiencing since forever is still in TinyPad. (Is that only me or does noone else notice that?)

I replaced this
Code:
	if ( max > 0 and (self.max ~= max) ) then
		self.max = max
		scrollBar:SetValue(max)
	end
with some snippet I use for textareas:
Code:
	if self.max and max > self.max
			and abs(self.max - floor(scrollbar:GetValue())) < 0.001 then
		scrollbar:SetValue(max)
		self.max = max
	end
Now inserting new lines does not scroll to the bottom all the time.
gix is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-03-2008, 12:14 PM  
juhakosk
A Kobold Labourer

Forum posts: 1
File comments: 21
Uploads: 0
Link support? YES! The best notepad addon just got even better
Thank you.
juhakosk is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-03-2008, 11:32 AM  
Gello
A Scalebane Royal Guard
Interface Author - Click to view interfaces

Forum posts: 407
File comments: 136
Uploads: 65
Re: Copied from the beta comments

On the title thing, it's something I've been thinking about a lot lately, as I have over 400 pages now and I'm often going back to specific pages.

What I may do is add bookmarks or "star" pages on a sidebar that can pull out or collapse in, with the first non-whitespace line as its tooltip. But no guarantees. I tried to attach some bookmark-looking banner icons to the bottom of the window and it looked awful.

btw fun tip with the tradeskill links in the version posted today: tradeskill links seem to persist even if their creator has logged off. So you can collect the tradeskills of various guildmates and then refer to it anytime to see what they can make.
Gello is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-14-2008, 09:57 AM  
JMHammer
A Defias Bandit
Interface Author - Click to view interfaces

Forum posts: 3
File comments: 331
Uploads: 1
Copied from the beta comments

Excellent notepad. I've been using Notepad from the Cosmos package for years, and have been looking for a SIMPLE replacement for a while now. Since Notepad is broken in the 3.02 PTR, it was nice to try TinyPad there and see that it worked.

Might it be possible to add a field next to the page number for a user-defined title for the page? And perhaps a sidebar which would simply list the page numbers and their titles, so that a user could click on a page number or title and jump directly to that page.
JMHammer is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-14-2008, 09:16 AM  
wilz
A Defias Bandit

Forum posts: 2
File comments: 18
Uploads: 0
You have just... saved my life...
wilz is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.