Exemple #1
0
def fromPhotoGoBack():
    print("from photo go back.")
    point = getBack_photo(CurrentScreen)
    if point:
        tapPoint(point)
    refreshCurrentScreen()
    return point
Exemple #2
0
def fromDetailGoBack():
    print("from detail go back.")
    point = getBack_detail(CurrentScreen)
    if point:
        tapPoint(point)
    refreshCurrentScreen()
    return point
Exemple #3
0
def exePaste():
    print("exe paste:")
    location = getPasteMenu(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #4
0
def callKeyboard():
    print("call keyboard:")
    location = getKeyboard_closed(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #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
Exemple #6
0
def exeCopy():
    print("exe copy:")
    location = getCopyMenu(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #7
0
def toWPSEdit():
    print("to wosedit:")
    location = getDocPoint(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #8
0
def toList():
    print("to List:")
    location = getMyFriendsCircle(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #9
0
def toDetail():
    print("to detail:")
    location = getDetail(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #10
0
def toMe():
    print("to me")
    location = getMe(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #11
0
def launchWPS():
    print("launch wps:")
    location = getWPS(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #12
0
def launchWechat():
    print("launch wechat:")
    location = getWechat(CurrentScreen)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #13
0
def toAlbum():
    print("to album")
    location = getAlbum(CurrentScreen)
    print(location)
    if location:
        tapPoint(location)
    refreshCurrentScreen()
    return location
Exemple #14
0
def save():
    print("save docment:")
    location = getSave(CurrentScreen)
    if location:
        tapPoint(location)
    return location
Exemple #15
0
def intoTopic(point):
    print("into topic:")
    tapPoint(point)
    refreshCurrentScreen()