You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for that cool project. I tried it out and it works!
I am running a german version of MS Office and the image files *.jpg are exported as FolieX.jpg instead of SLIDEX.JPG. Because your produced HTML code then points hardcoded to
Sections = Sections + "<img src='Slide" & i & ".jpg'>"
the HTML will not work correctly.
I manually changed the above line to
Sections = Sections + "<img src='Folie" & i & ".jpg'>"
and it works.
It would be nice if you automatically could determine the image names based on the localization settings and make it working for any language.
Not a big deal but maybe room for improvement?
Regards
Bosch
The text was updated successfully, but these errors were encountered:
Hi, thanks for that cool project. I tried it out and it works!
I am running a german version of MS Office and the image files
*.jpg
are exported asFolieX.jpg
instead ofSLIDEX.JPG
. Because your produced HTML code then points hardcoded tothe HTML will not work correctly.
I manually changed the above line to
and it works.
It would be nice if you automatically could determine the image names based on the localization settings and make it working for any language.
Not a big deal but maybe room for improvement?
Regards
Bosch
The text was updated successfully, but these errors were encountered: