mesale0077 Posted March 12, 2012 Posted March 12, 2012 hiTransparent Flash Control in Plain C++this likehttp://www.codeguru.com/cpp/g-m/multimedia/graphics/article.php/c12229like it mail.ru , flash animation ,flash animation(background Transparent ) on desktop thank you now
Developers Jos Posted March 12, 2012 Developers Posted March 12, 2012 ..and what is your AutoIt3 related question? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
mesale0077 Posted March 12, 2012 Author Posted March 12, 2012 background Transparent flash animation on desktop like it ,mail.ru #include <GuiConstants.au3> #include <WindowsConstants.au3> #include <ButtonConstants.au3> #include <StaticConstants.au3> #include <WinAPI.au3> #include <GUIConstantsEx.au3> #include <EditConstants.au3> $GUI = GUICreate("Transparent flash animation on desktop ", 670, 470, -1, -1, $WS_POPUP, BitOR($WS_EX_LAYERED, $WS_EX_TOPMOST)) $oGame = ObjCreate("ShockwaveFlash.ShockwaveFlash") $oGameGUI = GUICtrlCreateObj($oGame, 10, 10, 650, 450) GUISetBkColor(345) _WinAPI_SetLayeredWindowAttributes($GUI , 345, 255) With $oGame .Movie = @ScriptDir & "test.swf" .Loop = True .ScaleMode = 2 .wmode = "transparent" EndWith GUISetState() While 1 $nMsg = GUIGetMsg() Select Case $nMsg = -3 Exit EndSelect WEnd
Developers Jos Posted March 12, 2012 Developers Posted March 12, 2012 Could be me but I still do not see question in there.... SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
mesale0077 Posted March 12, 2012 Author Posted March 12, 2012 (edited) hi I want to make flash animation on the desktop, but the background is not transparent, how can I do. I saw mail.ru messaging program, thank you nowkot_goodbye.rar Edited March 12, 2012 by mesale0077
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now