AAUTO个人学习贴
aauto吧
全部回复
仅看楼主
level 10
默天丶 楼主
AAUTO个人学习贴
希望能激励自己能够坚持学下来,以前有点易语言的基础,所以学习教程用了王军的那个版本参考学习,希望大家能够支持。
2013年11月04日 03点11分 1
level 10
默天丶 楼主
import win.ui;
/*DSG{{*/
var winform = ..win.form( bottom=399;parent=...;right=599;text="AAuto Form" )
winform.add(
button={ bottom=88;right=360;left=288;top=56;z=2;text="button";cls="button" };
static={ bottom=104;right=248;left=48;top=56;z=1;transparent=1;text="static";cls="static" }
)
/*}}*/
winform.button.oncommand = function(id,event){
winform.static.text="我爱aatuo";
}
winform.show()
win.loopMessage();I
2013年11月04日 03点11分 3
坚持哦
2013年11月09日 07点11分
你有两天没来坚持了哦
2013年11月09日 07点11分
level 10
默天丶 楼主

import win.ui;
/*DSG{{*/
var winform = ..win.form( bottom=399;parent=...;right=599;text="AAuto Form" )
winform.add(
button={ bottom=152;right=208;left=128;top=128;z=2;text="计算1+2=?";cls="button" };
edit={ text="edit";bottom=96;right=288;left=88;multiline=1;top=72;z=1;edge=1;cls="edit" }
)
/*}}*/
winform.button.oncommand = function(id,event){
var a=1
var b=2
var c=a+b
winform.edit.text=c
}
winform.show()
win.loopMessage();
I
2013年11月04日 03点11分 4
level 10
默天丶 楼主
2013年11月04日 04点11分 5
level 10
默天丶 楼主
2013年11月04日 05点11分 6
level 10
默天丶 楼主
2013年11月04日 05点11分 7
level 10
默天丶 楼主
2013年11月04日 05点11分 8
level 10
默天丶 楼主
2013年11月04日 08点11分 9
level 10
默天丶 楼主
整个教程涉及的10章内容难点已经用AAUTO做了一遍。希望能继续坚持下去。
2013年11月05日 08点11分 12
level 8
顶顶,我也是易语言出身,加个Q 吧995759337一起学
2013年11月05日 14点11分 13
不喜欢用qq啊,不好意思吧,有什么可以私信交流,一起学习吧,个人感觉用快手更容易理解什么是编程。
2013年11月07日 13点11分
level 3
支持你哈 要坚持哦!
2013年11月06日 16点11分 14
恩,谢谢支持。
2013年11月07日 13点11分
level 10
默天丶 楼主
看了半小时数据结构,毫无头绪,暂时放一下吧。有吧友能推荐下什么通俗易懂的教程参考下。
2013年11月11日 03点11分 21
快手官方论坛无法访问 了.
2013年11月11日 03点11分
回复@tinrtui :已经好了
2013年11月11日 08点11分
level 10
默天丶 楼主
上班抽空弄的,任务二,论坛灌水小工具,花了两天时间,过程真不容易。希望继续坚持下去。
2013年11月12日 08点11分 22
哪里能看到是什么啊
2013年11月13日 00点11分
是有点花啊,呵呵,一个论坛防灌水的小工具,原理是找出论坛帖子内容,然后举报的功能。
2013年11月13日 03点11分
level 5
能发点资料或者视频我吗[冷][乖][乖][乖]
2013年11月28日 17点11分 23
资料的话看看范例刘就好,我觉得要自己有想法了就去做,慢慢的就熟悉了,虽然看上去简单,没两星期还是不懂的,多做是王道。
2013年12月14日 03点12分
level 10
默天丶 楼主
题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?
import win.ui;
/*DSG{{*/
var winform = ..win.form(text="AAuto Form";right=599;bottom=399;parent=...)
winform.add()
/*}}*/
io.open()
for(i=1;100000){
x=math.sqrt(i+100); /*x为加上100后开方后的结果*/
y=math.sqrt(i+268); /*y为再加上168后开方后的结果*/
if(x*x==i+100&&y*y==i+268){
io.print(i);
} /*如果一个数的平方根的平方等于该数,这说明此数是完全平方数*/
}
winform.show()
win.loopMessage();
2013年12月13日 08点12分 24
level 10
默天丶 楼主
前段时间好忙哦,没时间学,今天弄了个题目,但是数学确实差啊,C语言经典100题,有些题目直接看不懂,下载了个Mysql,待弄个小软件试试看。
2013年12月13日 08点12分 25
level 8
路过
2013年12月21日 18点12分 26
level 10
默天丶 楼主
好久没更新了,呵呵,偶尔看到52破解编程区的一个作业,透明窗体AAUTO论坛有很多,就没有做了,直接复制粘贴就可以了。所以改了下,弄了个可以截图的功能,下面是效果图:
对了,有朋友能发个52破解的邀请码给我么?谢谢了,编程区有些不错的东西,另外也想和里面的朋友有一些交流,感激不尽!
代码的话截图好了,有想学习的,我想自己打代码的话能更好的理解,当然,本人能力有限,也是刚刚学习,希望大家多多提意见。
2013年12月24日 04点12分 27
level 10
默天丶 楼主
为什么我回自己的贴老出问题呢????
做了个换IP刷流量的小软件,本来打算看看是否能够刷广告的,结果还是不行,不知道什么原理,刷出来的IP没用,啧啧~~~~
有几个地方提示下,每次打开网页后需要删除信息,否则很容易倒是IP刷出来是重复的。
还有就是lst用起来很好用,有类似的格式字符串操作可以优先考虑它。
再一个,这里老没人支持啊~~~~很是伤心啊,是不是该换个地方了呢?
代码如下:
2014年01月10日 12点01分 29
level 10
默天丶 楼主
PLUS练习
import win.ui;
import sys;
import time.ole;
/*DSG{{*/
mainForm = ..win.form(text="天天定时关机";right=447;bottom=175;bgcolor=4670273;border="none";exmode="none")
mainForm.add(
button={cls="button";text="执行";left=352;top=80;right=424;bottom=112;z=2};
button2={cls="button";text="取消";left=352;top=128;right=424;bottom=160;z=10};
combobox={cls="combobox";text="combobox";left=216;top=72;right=272;bottom=96;bgcolor=0;color=15793151;edge=1;items={};mode="dropdown";vscroll=1;z=6};
combobox2={cls="combobox";text="combobox2";left=280;top=72;right=336;bottom=96;edge=1;items={};mode="dropdown";vscroll=1;z=7};
combobox3={cls="combobox";text="combobox3";left=352;top=40;right=424;bottom=60;edge=1;items={};mode="dropdown";vscroll=1;z=9};
datetimepick={cls="datetimepick";left=104;top=72;right=208;bottom=96;edge=1;z=3};
plus={cls="plus";right=448;bottom=32;background="\res\层_1.png";left=0;top=0;z=1};
plus3={cls="plus";top=8;right=80;bottom=24;background="\res\层_3.png";left=0;repeat="scale";z=13};
plusMax={cls="plus";left=416;top=8;right=432;bottom=24;background="\res\层_5.png";clipch=1;notify=1;repeat="scale";transparent=1;z=12};
plushit={cls="plus";left=392;top=8;right=407;bottom=24;background="\res\层_8.png";notify=1;repeat="scale";transparent=1;z=11};
static={cls="static";text="static";left=16;top=40;right=280;bottom=56;color=13421772;transparent=1;z=4};
static2={cls="static";text="需执行的时间:";left=16;top=80;right=104;bottom=104;color=13092807;transparent=1;z=5};
static3={cls="static";text="请先选择执行内容";left=16;top=120;right=279;bottom=160;color=12632256;transparent=1;z=8};
static4={cls="static";text="执行内容:";left=288;top=40;right=376;bottom=56;color=13421772;transparent=1;z=14}
)
/*}}*/
//最小化按钮
mainForm.plushit.oncommand = function(id,event){
mainForm.hitmin()
}
//关闭按钮
mainForm.plusMax.oncommand = function(id,event){
mainForm.close()
}
mainForm.plushit.skin(
background = {
hover = "/res/层_7.png";
active = "/res/层_6.png";
default="/res/层_8.png";
}
)
mainForm.plusMax.skin(
background = {
hover = "/res/层_4.png";
active = "/res/层_2.png";
default="/res/层_5.png";
}
)
for(i=1;24;1){//给小时赋值
if(i<10){
i="0"++tostring(i);
}
mainForm.combobox.add(tostring(i));
}
for(i=1;60;1){//给分钟赋值
if(i<10){
i="0"++tostring(i);
}
mainForm.combobox2.add(tostring(i));
}
mainForm.combobox3.add("关机");
mainForm.combobox3.add("重启");
mainForm.combobox3.add("注销");
mainForm.combobox3.add("待机");
mainForm.combobox3.add("休眠");
mainForm.combobox3.add("锁定计算机");
tmid = mainForm.addtimer(//检测当前时间
1000/*毫秒*/,
function(hwnd,msg,id,tick){//定时执行代码
tm=time.ole(__,"%Y-%m-%d %H:%M:%S")
mainForm.static.text="系统当前时间:"++tostring(tm)
}
);
mainForm.button.oncommand = function(id,event){//确认执行时间
mainForm.button.disabled=true;
bd=mainForm.datetimepick.text++" "++mainForm.combobox.selText++":"++mainForm.combobox2.selText++":"++"00"
mainForm.static3.text="执行操作时间:"++bd
tmid1 = mainForm.addtimer(
1000/*毫秒*/,
function(hwnd,msg,id,tick){//定时执行代码
if(tostring(tm)=bd){
select(mainForm.combobox3.selText) {
case "关机" {
sys.shutdown()//关机
}
case "重启"{
sys.restart()//重启
}
case "注销"{
sys.logoff()//注销
}
case "待机"{
sys.standby()//待机
}
case "休眠"{
sys.sleep()//休眠
}
case "锁定计算机"{
sys.lock()//锁定计算机
}
}
}
}
);
}
mainForm.button2.oncommand = function(id,event){
//mainForm.msgbox( mainForm.button2.text );
bd=0;
mainForm.static3.text="已取消操作!"
mainForm.button.disabled=false;
}
/***
import config;
mainForm.bindConfig( config.mainForm,{
edit = "text"; //绑定edit控件的text属性值到配置文件
radiobutton = "checked";
checkbox = "checked";
combobox = "selIndex";
} );
***/
mainForm.wndproc = {
[ 0x201/*_WM_LBUTTONDOWN*/ ] = function(hwnd,message,wParam,lParam){
mainForm.hitCaption();
}
}
//创建圆角窗体
import win.region.round;
win.region.round(mainForm)
mainForm.show()
win.loopMessage();
2014年01月29日 01点01分 30
1 2 尾页