I am using a Macro I found (on a tutorial - I found 2 different ones that I tried and both failed) to change the FPS when I export the presentation into a movie file format "mov"/"mp4". When I run the Macro, an error window pops with the following message:
Microsoft Visual Basic Compile error: Method or data member not found When the message pops up, it highlights ".CreateVideoStatus".
Then, after I close the error message, a yellow arrow pops up next to the top line that says "Sub PowerPointVideo()" I am having the worst time trying to figure out what the issue is.
Please help!
Sub PowerPointVideo()
If ActivePresentation.CreateVideoStatus <> ppMediaTaskStatusInProgress Then
ActivePresentation.CreateVideo FileName:=Environ(“USERPROFILE”) & “\Dekstop\MyPowerpointVideo.mp4”, _
UseTimingsAndNarrations:=True, _
VertResolution:=2160, _
FramesPerSecond:=120, _
Quality:=100
Else: MsgBox "There is another conversion to video in progress"
End If
End Sub