作者KTiC (IV)
站内EzHotKey
标题Re: [AHK-] 编辑变数名称(撷取部分)
时间Fri Jul 20 14:21:32 2012
学会表达式赋值,等号赋值请当作不存在。
====
now := A_now
eatapple := 20110718174120 这边想问eatapple後面的20110718174120是代表
20110718174120是一个变数吗?
然後eatapple等於20110718174120变数里面的资料?
如果不是的话要怎麽判断 := 右边是数值、变数或是字
串(用""包起来?)呢?
: eatbus := 20130718174120
: Happle := 999
: Hbus := 888
: function(x,y)
: {
: StringTrimLeft, a, x, 3 ;(这里是想说去掉eat为首的变数名称)
: if (%x% - y <= 0)
: {
: means:="OK!"
: return means
: }
: else
: {
: x := "H" . a
: x := %x%
: return x
: }
: }
: MsgBox,% function("eatapple", now)
: MsgBox,% function("eatbus", now)
----------------------------------------------------------------------------
这里想再请教两点
1.
我想在IniWrite指令里面的参数用变数名称
像是这样
now:=A_Now
function(xR,yR)
{
.
.
.
IniWrite,%xR%,test.ini,
xR,ready ;(这里如果用xR打进去的话,会直
接储存成xR,该怎麽做才能让他存
成变数名称(像eatapple)呢?)
.
.
.
return xR
}
msgbox,% function(eatapple,now)
------------------------------------------------------------------------------
2.
这边我想要更改Gui介面 Text的 Style
可否能直接把%st%去掉直接放入function呢?
Gui, Add, Text,
% "x11 y14 w430 h70" . function(eatapple,now) , abcdefghijklmno
pqrstuvwxyz
st:=""
now:=A_Now
eatapple := 20110718174120
function(x,y)
{
if (x-y<=0)
{
means:="0x1000"
return means
}
else
{
means:=""
return means
}
}
st:=function(eatapple,now)
Gui, Add, Text, x11 y14 w430 h70
%st% , abcdefghijklmnopqrstuvwxyz
Gui, Show, xcenter ycenter autosize, test window
Return
GuiClose:
ExitApp
------------------------------------------------------------------------
抱歉问题有点多
先谢谢了
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 114.43.18.125