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