1
0

phone_selfies_popup.qsrc 618 B

12345678910111213141516171819202122232425
  1. # phone_selfies_popup
  2. !! This is used to create a popup that shows the enlarged selfie
  3. !! show uses $phone_loc to determine where the picture is located
  4. if $ARGS[0] = 'show':
  5. if usePopUps = 1:
  6. msg '<img src="images/pc/selfies/<<$phone_loc>>/<<$ARGS[1]>>/<<$ARGS[2]>>.jpg">'
  7. else
  8. view 'images/pc/selfies/<<$phone_loc>>/<<$ARGS[1]>>/<<$ARGS[2]>>.jpg'
  9. end
  10. end
  11. !! show2 passes the location and image number
  12. if $ARGS[0] = 'show2':
  13. if usePopUps = 1:
  14. msg '<img src="<<$ARGS[1]>><<$ARGS[2]>>.jpg">'
  15. else
  16. view '<<$ARGS[1]>><<$ARGS[2]>>.jpg'
  17. end
  18. end
  19. --- phone_selfies_popup ---------------------------------