InterviewSolution
Saved Bookmarks
| 1. |
Explain How You Can Retrieve The Name Of The Image On Pop-up? |
|
Answer» You can retrieve the name of the image on pop-up in TWO ways METHOD: 1 query = capture() gotit = Filename [query] [0] POPUP(gotit) Method: 2 popup(“select a icon in the”) query = capture() RESULT = Filename [query] If result: Popup(Result[0]) ELSE: popup (“unknown image”) You can retrieve the name of the image on pop-up in two ways Method: 1 query = capture() gotit = Filename [query] [0] popup(gotit) Method: 2 popup(“select a icon in the”) query = capture() Result = Filename [query] If result: Popup(Result[0]) else: popup (“unknown image”) |
|