SWFUpload - DOM maneuver breaks

Has anyone found a way around this yet? I have a project in which the client wants the Flash button to have a progress bar built into it. So far I have been doing this, having a Div with CSS, and then showing up after the file started loading.

Then the button is hidden when the button is hidden from stopping the event. This is the same, even I change CSS only to move around the screen.

+3
source share
3 answers
.helper-hidden {
  position: absolute;
  left: -99999px;
}

when you load, add the class helper-hiddento the button and delete it when done. You can even apply this class to any element that you want to “hide” from the viewport without affecting its visibility.

+1

- Visibility: hidden div SWFUpload, Flash/Browser.

0

.

- SWFUpload 2 .

. SWFUpload , SWFUpload. onLoad. DOM, , dom, SWFUpload.

:

div, 2. SWFUpload, . , dom , SWFUpload

------------------------------------
   DOM 1           |       DOM 2
   SWF UPLOAD      |     
   Button 1        |       Button 2
-------------------------------------

When the user presses button1, it displays dom1. Same for button 2.

When the user starts to load the page. SWFUPload is working fine. Then I press Button1 to show DOM 1, and then SWFUpload no longer works. Again with button 2, SWFUpload works.

Also in my case SWFUpload also does not work in the table.

I will talk about this as an error for SWFUpload

0
source

Source: https://habr.com/ru/post/1754528/


All Articles