예제 #1
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def fromPhotoGoBack():
    print("from photo go back.")
    point = getBack_photo(CurrentScreen)
    if point:
        tapPoint(point)
    refreshCurrentScreen()
    return point
예제 #2
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def fromDetailGoBack():
    print("from detail go back.")
    point = getBack_detail(CurrentScreen)
    if point:
        tapPoint(point)
    refreshCurrentScreen()
    return point
예제 #3
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def exePaste():
    print("exe paste:")
    location = getPasteMenu(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #4
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def callKeyboard():
    print("call keyboard:")
    location = getKeyboard_closed(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #5
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def insertEmptyLine(n):
    print("insert a empty line:")
    location = getEnter(CurrentScreen)
    if location:
        for i in range(0, n):
            tapPoint(location)
    return location
예제 #6
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def exeCopy():
    print("exe copy:")
    location = getCopyMenu(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #7
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def toWPSEdit():
    print("to wosedit:")
    location = getDocPoint(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #8
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def toList():
    print("to List:")
    location = getMyFriendsCircle(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #9
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def toDetail():
    print("to detail:")
    location = getDetail(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #10
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def toMe():
    print("to me")
    location = getMe(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #11
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def launchWPS():
    print("launch wps:")
    location = getWPS(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #12
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def launchWechat():
    print("launch wechat:")
    location = getWechat(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #13
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def toAlbum():
    print("to album")
    location = getAlbum(CurrentScreen)
    print(location)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
예제 #14
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def save():
    print("save docment:")
    location = getSave(CurrentScreen)
    if location:
        tapPoint(location)
    return location
예제 #15
0
파일: wecraw.py 프로젝트: xiefeisd/wecraw
def intoTopic(point):
    print("into topic:")
    tapPoint(point)
    refreshCurrentScreen()