toolbar 2.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1270
Ask.com Toolbar 2.0
Ask.com Toolbar is an extension to search better with Ask.com whereever you go with your Firefox browser. more>>
Ask.com Toolbar is an extension to search better with Ask.com whereever you go with your Firefox browser. Get direct access to the new AskCity and a convenient drop-down box for Maps with your favorite locations.
Save images and Web pages for sharing in MyStuff, get your fill of the blogosphere with Ask-powered blog and feed search, and read news headlines right in the toolbar. Customize your toolbar with any of these and many other options including weather, stocks, shopping, translations and more.
<<lessSave images and Web pages for sharing in MyStuff, get your fill of the blogosphere with Ask-powered blog and feed search, and read news headlines right in the toolbar. Customize your toolbar with any of these and many other options including weather, stocks, shopping, translations and more.
Download (0.063MB)
Added: 2007-05-03 License: Other/Proprietary License Price:
907 downloads
Webdesign-Forum.de Toolbar 2.0
Webdesign-Forum.de Toolbar is a Firefox extension that offers you a Webdesign-Forum.de toolbar. more>> <<less
Download (0.005MB)
Added: 2007-05-08 License: MPL (Mozilla Public License) Price:
916 downloads
IMVU Toolbar 2.1
IMVU Toolbar is a Firefox extension that allows you to navigate quickly and conveniently through the IMVU website. more>>
Move into the next dimension of web technology with IMVU, the worlds greatest 3D instant messenger! IMVU Toolbar is a Firefox extension that allows you to navigate quickly and conveniently through the IMVU website.
Be a part of the next trend in web social interaction with this extremely functional toolbar. It allows you quicker access to all the things you want from IMVU, all the time!
Imagine how easy it will be to jump in to check your IMVU homepage for messages, see whos online in your buddylist, look through random profiles, surf for products in the catalog, and more with just a simple mouse click.
<<lessBe a part of the next trend in web social interaction with this extremely functional toolbar. It allows you quicker access to all the things you want from IMVU, all the time!
Imagine how easy it will be to jump in to check your IMVU homepage for messages, see whos online in your buddylist, look through random profiles, surf for products in the catalog, and more with just a simple mouse click.
Download (0.029MB)
Added: 2007-06-07 License: MPL (Mozilla Public License) Price:
846 downloads
Tk::ToolBar 0.09
Tk::ToolBar is a toolbar widget for Perl/Tk. more>>
Tk::ToolBar is a toolbar widget for Perl/Tk.
SYNOPSIS
use Tk;
use Tk::ToolBar;
my $mw = new MainWindow;
my $tb = $mw->ToolBar(qw/-movable 1 -side top
-indicatorcolor blue/);
$tb->ToolButton (-text => Button,
-tip => tool tip,
-command => sub { print "hin" });
$tb->ToolLabel (-text => A Label);
$tb->Label (-text => Another Label);
$tb->ToolLabEntry(-label => A LabEntry,
-labelPack => [-side => "left",
-anchor => "w"]);
my $tb2 = $mw->ToolBar;
$tb2->ToolButton(-image => navback22,
-tip => back,
-command => &back);
$tb2->ToolButton(-image => navforward22,
-tip => forward,
-command => &forward);
$tb2->separator;
$tb2->ToolButton(-image => navhome22,
-tip => home,
-command => &home);
$tb2->ToolButton(-image => actreload22,
-tip => reload,
-command => &reload);
MainLoop;
This module implements a dockable toolbar. It is in the same spirit as the "short-cut" toolbars found in most major applications, such as most web browsers and text editors (where you find the "back" or "save" and other shortcut buttons).
Buttons of any type (regular, menu, check, radio) can be created inside this widget. You can also create Label, Entry and LabEntry widgets. Moreover, the ToolBar itself can be made dockable, such that it can be dragged to any edge of your window. Dragging is done in "real-time" so that you can see the contents of your ToolBar as you are dragging it. Furthermore, if you are close to a stickable edge, a visual indicator will show up along that edge to guide you.
ToolBars can be made "floatable" such that if they are dragged beyond their associated window, they will detach and float on the desktop. Also, multiple ToolBars are embeddable inside each other.
If you drag a ToolBar to within 15 pixels of an edge, it will stick to that edge. If the ToolBar is further than 15 pixels away from an edge and still inside the window, but you release it over another ToolBar widget, then it will be embedded inside the second ToolBar. You can "un-embed" an embedded ToolBar simply by dragging it out. You can change the 15 pixel limit using the -close option.
Various icons are built into the Tk::ToolBar widget. Those icons can be used as images for ToolButtons (see "SYNOPSIS"). A demo program is bundled with the module that should be available under the User Contributed Demonstrations when you run the widget program. Run it to see a list of the available images.
Tk::ToolBar attempts to use Tk::CursorControl if its already installed on the system. You can further control this using the -cursorcontrol option. See "PREREQUISITES".
The ToolBar is supposed to be created as a child of a Toplevel (MainWindow is a Toplevel widget) or a Frame. You are free to experiment otherwise, but expect the unexpected.
<<lessSYNOPSIS
use Tk;
use Tk::ToolBar;
my $mw = new MainWindow;
my $tb = $mw->ToolBar(qw/-movable 1 -side top
-indicatorcolor blue/);
$tb->ToolButton (-text => Button,
-tip => tool tip,
-command => sub { print "hin" });
$tb->ToolLabel (-text => A Label);
$tb->Label (-text => Another Label);
$tb->ToolLabEntry(-label => A LabEntry,
-labelPack => [-side => "left",
-anchor => "w"]);
my $tb2 = $mw->ToolBar;
$tb2->ToolButton(-image => navback22,
-tip => back,
-command => &back);
$tb2->ToolButton(-image => navforward22,
-tip => forward,
-command => &forward);
$tb2->separator;
$tb2->ToolButton(-image => navhome22,
-tip => home,
-command => &home);
$tb2->ToolButton(-image => actreload22,
-tip => reload,
-command => &reload);
MainLoop;
This module implements a dockable toolbar. It is in the same spirit as the "short-cut" toolbars found in most major applications, such as most web browsers and text editors (where you find the "back" or "save" and other shortcut buttons).
Buttons of any type (regular, menu, check, radio) can be created inside this widget. You can also create Label, Entry and LabEntry widgets. Moreover, the ToolBar itself can be made dockable, such that it can be dragged to any edge of your window. Dragging is done in "real-time" so that you can see the contents of your ToolBar as you are dragging it. Furthermore, if you are close to a stickable edge, a visual indicator will show up along that edge to guide you.
ToolBars can be made "floatable" such that if they are dragged beyond their associated window, they will detach and float on the desktop. Also, multiple ToolBars are embeddable inside each other.
If you drag a ToolBar to within 15 pixels of an edge, it will stick to that edge. If the ToolBar is further than 15 pixels away from an edge and still inside the window, but you release it over another ToolBar widget, then it will be embedded inside the second ToolBar. You can "un-embed" an embedded ToolBar simply by dragging it out. You can change the 15 pixel limit using the -close option.
Various icons are built into the Tk::ToolBar widget. Those icons can be used as images for ToolButtons (see "SYNOPSIS"). A demo program is bundled with the module that should be available under the User Contributed Demonstrations when you run the widget program. Run it to see a list of the available images.
Tk::ToolBar attempts to use Tk::CursorControl if its already installed on the system. You can further control this using the -cursorcontrol option. See "PREREQUISITES".
The ToolBar is supposed to be created as a child of a Toplevel (MainWindow is a Toplevel widget) or a Frame. You are free to experiment otherwise, but expect the unexpected.
Download (0.055MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1232 downloads
ChaCha Toolbar 1.0
By searching with a Guide your query is sent to a real person who is skilled at finding information on the internet and knowledgable on the subject at... more>> <<less
Download (776KB)
Added: 2009-04-19 License: Freeware Price: Free
220 downloads
Added: 2009-06-27 License: GPL Price: FREE
12 downloads
AsiVan Toolbar 1.0.2
AsiVan Toolbar is a Firefox extension to display Live Scores for world soccer fanatics. more>>
AsiVan Toolbar is a Firefox extension to display Live Scores for world soccer fanatics.
The toolbar displays World Cup, Libertadores Cup and Mexican Soccer Real Time Scores.
<<lessThe toolbar displays World Cup, Libertadores Cup and Mexican Soccer Real Time Scores.
Download (0.003MB)
Added: 2007-05-03 License: MPL (Mozilla Public License) Price:
905 downloads
AthensToolbar 1.2c
AthensToolbar provides a toolbar designed to assist existing Athens users manage their accounts. more>>
AthensToolbar provides a toolbar designed to assist existing Athens users manage their accounts.
This toolbar is designed to assist existing Athens users manage their accounts and navigate between resources. Note that it does not grant access to Athens protected resources to non-Athens users.
<<lessThis toolbar is designed to assist existing Athens users manage their accounts and navigate between resources. Note that it does not grant access to Athens protected resources to non-Athens users.
Download (0.035MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
932 downloads
Monalo Toolbar 0.93
Monalo Toolbar is a Firefox extension that shows RSS feed headlines directly in the toolbar and more... more>>
Monalo Toolbar Firefox extension lets you:
1) Show RSS feed headlines directly in the toolbar with a slick fade-in effect. You can also select from a list of topics (i.e. Technology, Video Gaming, Star Wars) to get headlines from feeds relating to the chosen topic.
2) Be notified when there are updates to RSS feeds you wish to monitor.
3) Share links with friends/family/the world.
There are many other features, such as the ability to create your own topic-based "channel" (with RSS) from a mashup of related RSS feeds. So, for example, you could create an "IT Podcasts" channel which would display all the latest (and most popular) IT podcasts from around the web.
The rest is left for you to discover.
<<less1) Show RSS feed headlines directly in the toolbar with a slick fade-in effect. You can also select from a list of topics (i.e. Technology, Video Gaming, Star Wars) to get headlines from feeds relating to the chosen topic.
2) Be notified when there are updates to RSS feeds you wish to monitor.
3) Share links with friends/family/the world.
There are many other features, such as the ability to create your own topic-based "channel" (with RSS) from a mashup of related RSS feeds. So, for example, you could create an "IT Podcasts" channel which would display all the latest (and most popular) IT podcasts from around the web.
The rest is left for you to discover.
Download (0.033MB)
Added: 2007-05-28 License: MPL (Mozilla Public License) Price:
882 downloads

Netcraft Toolbar 1.2.1
Netcraft Toolbar offers users a brilliant tool which can protect your savings from Phishing attacks and help defend the Internet community from fraudsters more>> <<less
Added: 2009-07-23 License: MPL Price: FREE
1321 downloads
The Formula 1 Toolbar 2.2.0.9
The Formula 1 Toolbar is a firefox extension allowing you to easily access to F1 news worldwide (international news). more>> <<less
Added: 2009-07-26 License: MPL Price: FREE
1 downloads
Bibirmer Toolbar 1.0.1.29
Bibirmer Toolbar will improve your browsers capability greatly. It is designed as a Firefox addon that allows you to read reviews, compare products features & prices. more>>
Bibirmer Toolbar 1.0.1.29 will improve your browser's capability greatly. It is designed as a Firefox addon that allows you to read reviews, compare products' features & prices.
Major Features:
- Search box for all the major search engines (Google, Yahoo, MSN, Ask.com, Dmoz.org) + Price Comparison Engine. Find lowest prices and availability from online stores.
- Get notified when you receive new e-mails to your POP3, Yahoo!, Gmail, or Hotmail accounts.
- Includes Popup blocker, cookie cleaner, history cleaner, and cache cleaner.
- Online Dictionary,Wikipedia search (free encyclopedia), Images Search, Job Search, News, Quotes, Weather, Blog Search, Maps, find domain name and more in next versions.
- Music Search, Movies Search, Books Search,Software Search.
- Auctions Search, Search Customer Reviews, Answer your question, Amazon Search, Shopping.com Search, Chitika eMiniMalls Search.
- ToolBox Includes:
- WhoIs (Lists contact info for a domain/IP),
- DNS Report (See if there are problems with your DNS hosting),
- Geolocation (find the city and country of an IP),
- Traceroute (Traces the route packets take to this host),
- Ping (Shows how long it takes for packets to reach a host.),
- Keyword Selector Tool (How many times that term was searched on last month),
- Google cash tool (Google indexed pages by different datacenters)
- Domain History (view archived versions of Web sites)
- E-mail Test
- My IP Address tool
Requirements:
- Mozilla Firefox
Added: 2008-05-26 License: MPL Price: FREE
59 downloads
Firevine Toolbar 0.3.1
Firevine Toolbar is a toolbar for Mozilla Firefox webbrowser, that helps to improve the user experience at newsvine.com. more>>
Firevine Toolbar is a toolbar for Mozilla Firefox web browser, that helps to improve the user experience at newsvine.com.
Multiple site functions have been included in this toolbar, including a quick link to both your column and the frontpage as well as a site search, automatically updating watchlist and seed status checker.
<<lessMultiple site functions have been included in this toolbar, including a quick link to both your column and the frontpage as well as a site search, automatically updating watchlist and seed status checker.
Download (0.025MB)
Added: 2007-06-27 License: MPL (Mozilla Public License) Price:
855 downloads
Digg This Toolbar 0.1b
Digg This Toolbar provides a simple toolbar buttons and a menu to allow you to quickly digg articles. more>>
Digg This Toolbar provides a simple toolbar buttons and a menu to allow you to quickly digg articles.
The Digg This! toolbar adds two buttons to your main Firefox toolbar and one
menu. With the toolbar buttons you can quickly goto to Digg or Digg the page
you are viewing.
The menu allows you to goto your Digg profile or any of the
top Digg categories.
<<lessThe Digg This! toolbar adds two buttons to your main Firefox toolbar and one
menu. With the toolbar buttons you can quickly goto to Digg or Digg the page
you are viewing.
The menu allows you to goto your Digg profile or any of the
top Digg categories.
Download (0.028MB)
Added: 2007-04-13 License: MPL (Mozilla Public License) Price:
925 downloads
BanglaCricket Toolbar 1.2.1
BanglaCricket Toolbar provides a Firefox toolbar for BanglaCricket. more>>
BanglaCricket Toolbar provides a Firefox toolbar for BanglaCricket.
BanglaCricket is a fan site for Bangladesh Cricket.
This tool bar allows you to navigate the site and forums.
<<lessBanglaCricket is a fan site for Bangladesh Cricket.
This tool bar allows you to navigate the site and forums.
Download (0.036MB)
Added: 2007-04-07 License: MPL (Mozilla Public License) Price:
931 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above toolbar 2.0 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed