Any provision to get the current selected slide in file sharing feature?
Closed this issue · 4 comments
If you customize this library, you can access the slide using the code VoxeetSDK.filePresentation.current
and get the current position as well as the number of slides in the presentation.
To get the URL of a specific slide, you can use the following:
await VoxeetSDK.filePresentation.image(position);
If you customize this library, you can access the slide using the code
VoxeetSDK.filePresentation.current
and get the current position as well as the number of slides in the presentation. To get the URL of a specific slide, you can use the following:await VoxeetSDK.filePresentation.image(position);
Thank you for the reply
can we download the image from that url which we get using await VoxeetSDK.filePresentation.image(position) or will it give CORS policy isssue?
Absolutely, you can download the image using the URL provided by this function.
Thank you @FabienLavocat