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