GUIDE: How to Upload Storyline Content to the Web Using Amazon S3

Jan 03, 2018

Hi All!

I've seen many people asking for additional help on how to upload Storyline projects using Amazon S3, so I put together a tutorial that should help out. If you have any additional questions or if anything needs to be modified, just let me know in the comments below.

http://www.devlinpeck.com/talks/upload-share-elearning

Thanks,

Devlin

 

73 Replies
Kyle Yates

For any getting an error when trying to access the link, adding a bucket policy always does the trick for me. For example... it's under permissions

{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicRead",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject",
"s3:GetObjectVersion"
],
"Resource": "arn:aws:s3:::leanleader1jeopardy/*"
}
]
}