i've a problem: i want to insert various flash movies in sequence into one component that i can insert into a asp page...how can i do?
Printable View
i've a problem: i want to insert various flash movies in sequence into one component that i can insert into a asp page...how can i do?
is there a component that i can insert into an asp page and see it on my home page?
If this is just a couple of flash movies, then you don't need a component. You can embed the flash (swf) in the ASP page, just as you would in an HTML page and then call one swf to replace the next. If there is more to your project, please describe.
YOu can use the webroswer control...
in my project there are some movie that i want to search in a db and visualize into an asp page... i can use a vb component but i don't know which one...or i can use asp but how?
and what is WEBROSER?
thanks
hi
If U want to play a flash movie in VB then u have to do following stpes...
1) go to menu Project >>> Compontents>>> insertable object
choose Flash payer..(this is if u have flash on ur comp then only)
2) then it will comes in toolbar click on it and drag on form..
3) then see the properties..
bye..
:cool:
A webrowser is used to insert HTML page, just put your flash in a HTML sheet and I do not see why the ASP will not work on it.
because i want to play a sequence of movie and i don't want to reload my page to play the next movie...how can i do it?how can i play a squence of movie in asp?
ASP/ VB has nothing to do with it at all.What you want to do would require use of Javascript if it is even possible to do it.
What do you mean by a series of movies? Is it a limited number of movies? Do you have control of the FLAs? Do you need the code to embed an swf in an HTML page? If you have the FLA files then you can set the commands within flash to replace a swf embedded within an HTML page with another swf.....the page does not need to be reloaded, javascript is not necessary, this can all be done within flash...unless of course you have a large number of movies without control of the source files.
yes i make the flash movie so i have a control of it...how can i insert a series of movies into an html page without reload the page?can you give me an example? thanks a lot
Is this entirely web based?...if so then you want to use load movie to swap out the swfs....check out this tutorial:
http://www.virtual-fx.net/tutorials/...admovie_5.html
Is this flash part of a VB program? If it is then you should use the activex control without a browser and pass FSCommands to VB to swap the movies.
well the problem is that i have to insert those flash movie in sequence in a internet page...so how can i do it?because i don't want to make only one movie but i want to make more movies and when one of this finished it begins one other movie? is it possible?
Did you check out the link I posted above?
Embed the first movie in your HTML page. At the end of the timeline of the first movie insert the "load movie" command to load the second movie. At the end of the second movie, add a "load movie" command to load the third movie......this way the movies will swap out without you having to reload the page.