Это единственная проблема, которую я мог найти по этому вопросу. Мне удалось это исправить с помощью взлома.
Я обернул встроенный контент в div и добавил наложение с z-index, вот так:
<div class="flash-wrapper">
<div class="overlay"></div>
<object>
My object code goes here
</object>
</div>
Затем с помощью CSS
.flash-wrapper {
max-width: 100%; /*For responsiveness purposes*/
overflow: hidden; /*To wrap around everything inside*/
position: relative;
}
.flash-wrapper object {
/*to fully fill the wrapper - optional*/
width: 100%;
max-width: 100%;
height: auto;
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
/*The following only applies when the object is declared after the overlay. The overlay needs a higher z-index number*/
z-index: 100;
}
Теперь я могу прокручивать и верх вспышки.