THE CUSTOMISER
The Customiser incorporates all of the features of Magic Mouse. It also allows you to quickly and permanently customise the interface of any application. All changes can be saved permanently and readily undone.
The Customiser allows you to set the position and size of any window, button or other control and set the text of these controls. These changes can be permanently saved for any application and readily undone when desired. You can also set The Customiser to automatically press those annoying extra buttons you have to press when you go through a certain procedure, like OK buttons that you always press and wish you could automate.
Fed up with windows that are too small to be useful. e.g. The Select directory window that appears in many applications or windows in MS Query. Enlarge this and other windows permanently. Have them appear exactly where you want.
Buttons disabled or hidden for security reasons? Have them automatically enabled whenever they appear or alternatively disable or hide other buttons for security reasons. The hidden version of The Customiser is great here.
Companies demonstrating their software can customise their interface for each potential client. Use your client�s name in the title. Change the text, size or position of any button to more accurately reflect how that client will use the interface.
Use The Customiser to change the text that appears in any application to another language that is available on your machine. This provides an easy way to give an International edge to your software. Remember you can save all changes permanently.
Any Windows API message can be sent to any window automatically.
For the home user, imagine the fun of renaming your programmes - use your name or any text that better helps you understand its function. Think of the convenience of moving the buttons and windows you use most frequently to the place that's perfect for the way you use your computer programmes.
Download your free demonstration copy now.
A hidden version of The Customiser is available for un-limited distribution. Contact Wanga International.
Embed The Customiser as a DLL in your own application. Contact Wanga International.
THE CUSTOMISER的更多相关文章
- iphone5s越狱之后必装
一.iphone5s完美越狱之后必装插件一览表 由于iPhone5s配置了强大的64位的A7处理器,所以在iOS7完美越狱后,不少iPhone5s用户发现之前安装的大部分人们插件在越狱后难以兼容.但是 ...
随机推荐
- java基础17 模板模式
1.模版模式 解决某类事物的步骤有些是固定的,有些会发生改变的,那么这个时候我们可以为这一类事物提供一个模版代码,从而提高效率. 2.模版模式的步骤 1.先写出解决该类事物的其中一种解决方案; ...
- UFLDL(五)自编码算法与稀疏性
新教程内容太繁复,有空再看看,这节看的还是老教程: http://ufldl.stanford.edu/wiki/index.php/%E8%87%AA%E7%BC%96%E7%A0%81%E7%AE ...
- wpf 查找 子元素
RightContainer.ApplyTemplate();//如果找不到,就执行该句试一试 var xxx=UIHelper.FindChild<ScrollViewer>(Right ...
- POJ 3286 How many 0's(数位DP模板)
题目链接:http://poj.org/problem?id=3286 题目大意: 输入n,m,求[n,m]的所有数字中,0出现的总数是多少,前导零不算. 解题思路: 模板题,设dp[pos][num ...
- web文件<async-supported>错误分析
<async-supported>true</async-supported> 出现 cvc-complex-type.2.4.a: Invalid content was f ...
- MySQL学习笔记:exists和in的区别
一.exists函数 表示存在,常常与子查询配合使用. 用于检查子查询是否至少会返回一行数据,该子查询实际上并不返回任何数据,而是返回值True或False. 当子查询返回为真时,则外层查询语句将进行 ...
- MIT6.006Lec01:Python实现
MIT6.006是Algo Intro这门课,据说语言使用python Lec01是讲peak finding,也就是峰值点 具体为: 一维情况下一个数组中a[i]>a[i-1]且a[i]> ...
- 【记录】url 中出现特殊字符该怎么办
url中出现特殊字符+ URL 中+号表示空格 %2B 空格 URL中的空格可以用+号或者编码 %20/ 分隔目录和子目录 %2F ? 分隔实际的URL和参数 %3F % 指定特殊字符 %25 # 表 ...
- HTTP/FTP压力测试工具siege
HTTP/FTP压力测试工具siege 压力测试可以检测服务器的承载能力.针对HTTP和FTP服务,Kali Linux提供专项工具siege.该工具可以模拟多个用户同时访问同一个网站的多个网页, ...
- type与instance区别
class Foo(object): pass class Bar(Foo): pass obj = Bar() # isinstance用于判断,对象是否是指定类或其派生类的实例 print(isi ...