12345678910111213141516171819202122232425 |
- # phone_selfies_popup
- !! This is used to create a popup that shows the enlarged selfie
- !! show uses $phone_loc to determine where the picture is located
- if $ARGS[0] = 'show':
- if usePopUps = 1:
- msg '<img src="images/pc/selfies/<<$phone_loc>>/<<$ARGS[1]>>/<<$ARGS[2]>>.jpg">'
- else
- view 'images/pc/selfies/<<$phone_loc>>/<<$ARGS[1]>>/<<$ARGS[2]>>.jpg'
- end
- end
- !! show2 passes the location and image number
- if $ARGS[0] = 'show2':
- if usePopUps = 1:
- msg '<img src="<<$ARGS[1]>><<$ARGS[2]>>.jpg">'
- else
- view '<<$ARGS[1]>><<$ARGS[2]>>.jpg'
- end
- end
- --- phone_selfies_popup ---------------------------------
|