mergAVCamRecordingBegan

Typemessage
DictionaryLCS
LibraryLiveCode Script
Syntax
mergAVCamRecordingBegan
Associationsmergav
Summary

Sent to the control that called mergAVCaptureImage when the recording begins

Introduced8.0
OSios, mac
Platformsdesktop, mobile
Example
on mouseUp
   if the label of me = "Start Recording" then
      set the label of me to "Stop Recording"
      mergAVCamStartRecording
   else
      set the label of me to "Start Recording"
      mergAVCamStopRecording
   end if
end mouseUp

on mergAVCamRecordingBegan
   show graphic "recording"
end mergAVCamRecordingBegan

on mergAVCamRecordingFinished pFilePath
   hide graphic "recording"
   put mergAVCamVideoThumbnail(pFile,(the width of image 1,the height of image 1)) into image 1
   set the uFile of image 1 to pFile
end mergAVCamRecordingFinished
Description

Sent to the control that called mergAVCaptureImage when the recording begins

Tagsexternals