S+ hidden tray with window start

I forgot that this is supported in the code, but it requires a little editing of the config or a special sequence.

Open
S+, use the hotkey to hide the tray icon, then acExit() or
CTRL+SHIFT+ALT+WIN+End to exit S+, that will remember that the icon was
hidden.

The setting in StrokesPlus.xml is TrayIconVisible, 0 =
hidden. Clearly, this would be better as an option in the Preferences
window..I‘ll add that sometime soon.

Actually, with the addition
of sp_init() in Global Lua and the changes to acToggleTrayIcon, I don‘t
see a need to add this as a preference.

时间: 2024-07-30 22:43:29

S+ hidden tray with window start的相关文章

QT Demo 之 window(5) window.qml

在分析了main.cpp.Splash.Qt.quit()以及ScreenInfo之后,我们终于开始了正题:window.qml. window.qml的主体结构 window.qml主体是一个QtObject,其中包含了4个子元素:palette.controlWindow.testWindow和splashWindow: QtObject { property real defaultSpacing: 10 property SystemPalette palette: SystemPale

JavaWeb:网上书店的案例 之 翻页操作

流程: 首先浏览器把请求发给 JSP(index.jsp),index.jsp 实际上调用的是 BookServlet 的 getBooks() 方法.然后到了 Servlet ,这个Servlet 需要获取请求参数:maxPrice, minPrice, pageNo,把请求参数封装为 CriteriaBook 对象.如果没有传这三个参数,它们是有默认值的.然后调用 BookService 的getPage() 方法,要把 CriteriaBook 传进来,BookService 再来调 Bo

程序的入口及AppDelegate窗口显示原理

AppDelegate.m - (void)dealloc { [_window release]; [super dealloc]; } - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:CGRectMake(0, 0, 320, 4

2014阿里巴巴WEB前端实习生在线笔试题

2014年3月31日晚,我怀着略微忐忑的心情(第一次在线笔试^_^!!)进行了笔试,阿里巴巴的笔试题共有10道,几乎包含了Web前端开发的各个方面,有程序题.有叙述题,时间非常紧张,只完成了大概6道题.下面把遇到的题目跟大家分享一下! 1. <pre name="code" class="html"><!doctype html> <html> <head> <style type="text/css&

html轮播效果的实现

要实现如下图的效果 点击可以选择图片:不点击的时候自动轮播:并且点击完后再次自动轮播. 思路:如同在房子里透过窗子看路过的火车一样,窗子是不动的,但火车是陆续经过窗子的,所以透过窗子可以看到依次看完所有的火车. 1. 让将图片排成一列“火车”:ul中li(li中放着轮播图片)漂浮起来后,就排列成一溜了 2. 要有一个“窗口”,把“火车”放到“窗口”里:设置div的固定长度,使它宽度等于ul中一个li的宽度 3. 让“火车”动起来:利用margin-left样式可以选择要在“窗口”显示的图片. 代

UIView 视图

创建视图 UIView * view = [[UIView alloc]initWithFrame:CGRectMake(220, 100, 100, 100)];    view.backgroundColor = [UIColor greenColor];    [self.window addSubview:view];    [view release]; view1.center center属性获取视图的中心点.       NSStringFromCGPoint 将一个CGPoin

ASP.Net 上传进度条的实现方法

对于加载时间比较长的ASP.NET页面,我们可以在客户端浏览器中显示进度条来显示页面正在装载.下面就是具体的实现过程: 新建项目,名字为WebPortal,在项目类型中选择Visual C#项目或者Visual Basic项目都可: 在模板类型中选择ASP.NET Web应用程序: 位置里输入:http://localhost/WebPortal: 添加新项:名字为ShowProgress的Web窗体. 在您的Web窗体ShowProgress.aspx上添加任何其他的Web服务器控件. 在Sh

一个支持FMX.Win框架的托盘控件

不多说了 直接上代码........有任何问题请给我邮件.... // *************************************************************************** // // FMX.Win 平台下托盘 // // 版本: 1.0 // 作者: 堕落恶魔 // 修改日期: 2015-06-26 // QQ: 17948876 // E-mail: [email protected] // 博客: http://www.cnblogs.c

自定义监听状态栏点击

问题描述: 对于UIScrollView系统自带功能[点击状态栏返回顶部],但是这有局限性,当我们自己创建的UIScrollView过多时系统就会不知道返回哪一个的UIScrollView返回顶部,就会失效,所以这时就需要我们自己实现这个功能. 方法措施: 在状态栏覆盖一个window,我们创建一个UIWindow *topWindow;对象 摸索阶段: 我们将window的尺寸设置为状态栏的尺寸正好实现覆盖状态栏, topWindow.frame = application.statusBar