FlashPlayerWrapper "Beta Release"

Cableguy

Expert
Licensed User
Longtime User
I can't get the transparency working..
I set Mode= transpartent and back color to white and nothing...
 

marathon332

Member
Licensed User
Longtime User
CableGuy:

Just playing with the new dll and the zoom feature doesn't function very well. Why does it use an Int? Shouldn't it be something like 1.2 or .45 ?


The transparent function is definitely not working on my copter movie.

I like the idea of controlling the movie speed which I'm pretty sure is supported.

Great work for now though...

--Steve
 

Cableguy

Expert
Licensed User
Longtime User
FlashPlayerWrapper "ALPHA Release"

Controling speed Must be done by jumping from one given frame to another on a timer...
NOT dll implementable...
The zoom IS integer as stated in an adobe related document:
Zoom(int percent) - Zoom the view by a relative scale factor. Zoom(50) will double the size of the objects in the view. Zoom(200) will reduce the size of objects in the view by one half.
 
Last edited:

marathon332

Member
Licensed User
Longtime User
I got the zoom feature working...


Sub Button2_Click
swf.Zoom(99) ' Zoom in by 1 percent

End Sub

Sub Button3_Click

swf.Zoom(101) ' Zoom out by 1 percent
End Sub

1 = max zoom

100 = min zoom

It's a bit counter-intuitive but it works ...

-Steve
 

marathon332

Member
Licensed User
Longtime User
Found out that transparency is a feature for web page export only. It's an option on the publish settings, so I guess it won't work in the wrapper.
 

Cableguy

Expert
Licensed User
Longtime User
Top