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