phone_selfies_popup.qsrc 569 B

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