|
Post by AnkuLua on Dec 15, 2015 2:27:45 GMT
If you meets some problem on developing scripts, we are willing to help. To provide better service, more information is better. It's better that you can email a zip file including the script and all images. Please also email us the screenshots with problem. At least, one screenshot with AnkuLua error message and the other after clicking all AnkuLua message. It's also better to email us the file /sdcard/AnkuLua/captured_images/findException.png if findException happen. For example, The screenshot with AnkuLua error message The screenshot after clicking all AnkuLua message And the findException.png (Yes. It's not colored) email to: ankulua@gmail.com
|
|
kase
New Member
Posts: 5
|
Post by kase on Dec 15, 2015 20:07:08 GMT
Sounds good, thank you!
|
|
glory
New Member
Posts: 3
|
Post by glory on Dec 20, 2015 16:20:43 GMT
Hi ankulua. I have a qustion. I want to make the 'zigzag' motion.(Just one touch) But I cant..... I need more touch method (like touchdown, touchmove, touchup) I need your help. Thanks
|
|
|
Post by AnkuLua on Dec 21, 2015 0:20:53 GMT
Hi ankulua. I have a qustion. I want to make the 'zigzag' motion.(Just one touch) But I cant..... I need more touch method (like touchdown, touchmove, touchup) I need your help. Thanks Use dragDrop, and you needs more than one dragDrop. It's current solution. ankulua.boards.net/thread/6/basic-objects-methods-introduction
|
|
glory
New Member
Posts: 3
|
Post by glory on Dec 21, 2015 16:15:41 GMT
Ankulua Thx for answer. but I didnt understand. I mean, it can do via multiple places dragDrop can have two location. (start point, end point) (ex. touchdown(200,200) -> moveLocation(300,300) -> moveLocation(400,400) -> moveLocation(500,500) -> touchup) Is it a possible ? like this autotouch.me/server/doc/en.html#touchmoveid-x-y
|
|
|
Post by AnkuLua on Dec 21, 2015 23:47:29 GMT
Ankulua Thx for answer. but I didnt understand. I mean, it can do via multiple places dragDrop can have two location. (start point, end point) (ex. touchdown(200,200) -> moveLocation(300,300) -> moveLocation(400,400) -> moveLocation(500,500) -> touchup) Is it a possible ? like this autotouch.me/server/doc/en.html#touchmoveid-x-yThe answer is no for now. Will support in the near future.
|
|
glory
New Member
Posts: 3
|
Post by glory on Dec 22, 2015 14:19:38 GMT
Ok, Thanks Ankulua. I'll waiting for next version.
|
|
|
Post by doza on Jan 13, 2016 19:43:25 GMT
insert code here Hey ! I am having a problem "Root and daemon check" Daemon not installed. I tried that install path, but something doesnt work... what am i doing wrong? =)
|
|
|
Post by AnkuLua on Jan 14, 2016 0:40:44 GMT
insert code here Hey ! I am having a problem "Root and daemon check" Daemon not installed. I tried that install path, but something doesnt work... what am i doing wrong? =) What's the problem? Please provide more information.
|
|
|
Post by doza on Jan 14, 2016 10:26:22 GMT
insert code here Hey ! I am having a problem "Root and daemon check" Daemon not installed. I tried that install path, but something doesnt work... what am i doing wrong? =) What's the problem? Please provide more information. I fixed it... just needed to restart the phone when i have done everything =)
|
|
|
Post by zioncore on Feb 2, 2016 8:50:30 GMT
I'm unable to run this is game. I get the same error the other guy was getting with the script for Seven knights.
Runtime error: com.appautomatic.ankulua.f: Can't find charx.png Stack traceback: [C]: in function 'find' /sdcard/AnkuLua/adventure:lua:5: in function 'keyNum' /sdcard/AnkuLua/adventure.lua:52: in main chunk
|
|
|
Post by Phenomenal on Feb 5, 2016 2:48:00 GMT
Is there a zoom out object or would we use 2 drag and drops?
|
|
|
Post by AnkuLua on Feb 5, 2016 2:54:19 GMT
Is there a zoom out object or would we use 2 drag and drops? There is zoom function for zoom in or zoom out zoom(pt1StartX, pt1StartY, pt1EndX, pt1EndY, pt2StartX, pt2StartY, pt2EndX, pt2EndY, step)It means one finger moving from (pt1StartX, pt1StartY) to (pt1EndX, pt1EndY) while the other from (pt2StartX, pt2StartY) to (pt2EndX, pt2EndY) in specified steps. For example, the following code will zoom out the screen -- ========== Settings ================ Settings:setCompareDimension(true, 1280) Settings:setScriptDimension(true, 1280) -- ========== main program ===========
zoom(50, 350, 330, 350, 1200, 350, 350, 350, 300)
|
|
|
Post by Phenomenal on Feb 5, 2016 2:55:55 GMT
Also my width res is 1080, not a multiple of 320 will this be an issue for sharing scripts to this phone
|
|
|
Post by AnkuLua on Feb 5, 2016 2:57:41 GMT
Also my width res is 1080, not a multiple of 320 will this be an issue for sharing scripts to this phone It depends. Normally, it should not be an issue.
|
|