vote up 0 vote down star

please can i know how to add flash object into custom task pane using VSTO

flag

2 Answers

vote up 0 vote down

You can add a "Shockwave flash object" control to your task pane or form region. You may have to find it in your user controls and add it in you tool box. You can then set the Movie property to the URI of the flash swf.

Marcus

Update

You can add you swf file to your project and set it to copy to output then you need to reference it in code.

add a helper property to you addin or copy the code out.

 static public string AssemblyDirectory { 
            get { 
                string codeBase = Assembly.GetExecutingAssembly().CodeBase; 
                UriBuilder uri = new UriBuilder(codeBase); 
                string path = Uri.UnescapeDataString(uri.Path); 
                return Path.GetDirectoryName(path); 
            } 
        }

Then in your taskpane showing/init event

String swfPath = AssemblyDirectory + Path.DirectorySeparatorChar + "menu.swf";
axShockwaveFlash1.LoadMovie(0, swfPath);
link|flag
yes i did that but when i do setup the pulgin it will not have the flash object in it that is i tried to place the .swf (flash file) in project bin folder it didnt work but if i place flash file ouside the project folder and specify the path then it works fine even in that during setup .swf files are not copied – divya Jul 15 at 9:47
please help me how can i slove this – divya Jul 15 at 9:47
like in VB.NET when we are adding flash object into windows forms then we would save the .swf file in bin folder of the project and include the .swf file path like this :-flashobj.Movie=Application.StartupPath & "\movie.swf" like then when project set up is done it would include .swf files defaultly from taht path , but in VSTO its not working like taht since its exceute path is different we cant use Application.StartupPath to include the .swf file defaulty – divya Jul 16 at 3:10
please can i know to which folder of my project i must add .swf file – divya Jul 16 at 3:43
hi Marcus thanks for the post i tried as u specified i placed .swf file in project folder i.e in bin directory then i copied that into output directory and i added ur code but it works when it is executed but it will not work when application is run through setup please can i know how to make it work – divya Jul 16 at 4:25
show 7 more comments
vote up 0 vote down

thanks for all who are all replied for my post the code helped me in one way i did some changes and i executed ,it solves my problem thanks for all the reply

link|flag
Please post your answer as it will help others .. the above worked for me .. codebase contains the ClickOnce cache path and from there you can find your files. – 76mel Jul 17 at 9:43
the same code worked for me i just did the things in VB.NET and i just included .swf file into my project thats it – divya Jul 21 at 2:35
can you then mark it as answered so that other users can benifit – 76mel Jul 27 at 12:12
ok i will do that – divya Jul 28 at 5:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.