View previous topic :: View next topic |
Author |
Message |
TheLazyCat Expert Cheater
Reputation: 0
Joined: 29 Sep 2007 Posts: 117 Location: My House with Milk
|
Posted: Sun Nov 18, 2007 8:55 am Post subject: vb layers help |
|
|
How would you layer the shockwave flash component so you can load swfs on top of the initial swf?
|
|
Back to top |
|
 |
NothingToShow Grandmaster Cheater Supreme
Reputation: 0
Joined: 11 Jul 2007 Posts: 1579
|
Posted: Sun Nov 18, 2007 9:52 am Post subject: |
|
|
Code: | Shockwaveflash1.LoadMovie |
|
|
Back to top |
|
 |
TheLazyCat Expert Cheater
Reputation: 0
Joined: 29 Sep 2007 Posts: 117 Location: My House with Milk
|
Posted: Sun Nov 18, 2007 10:48 am Post subject: |
|
|
I meant like have the base and the movie then load a layer on top of that
|
|
Back to top |
|
 |
NothingToShow Grandmaster Cheater Supreme
Reputation: 0
Joined: 11 Jul 2007 Posts: 1579
|
Posted: Mon Nov 19, 2007 5:43 am Post subject: |
|
|
TheLazyCat wrote: | I meant like have the base and the movie then load a layer on top of that |
I know.
Code: | shockwaveflash1.loadmovie |
Loads a movie on top of the other
|
|
Back to top |
|
 |
Blader I post too much
Reputation: 2
Joined: 19 Jan 2007 Posts: 2049
|
Posted: Mon Nov 19, 2007 5:47 am Post subject: |
|
|
Code: | shockwaveflash1.loadmovie 1, swf.swf |
I think that's what you're looking for
_________________
|
|
Back to top |
|
 |
TheLazyCat Expert Cheater
Reputation: 0
Joined: 29 Sep 2007 Posts: 117 Location: My House with Milk
|
Posted: Mon Nov 19, 2007 4:20 pm Post subject: |
|
|
I got it I had to add Call in front though
|
|
Back to top |
|
 |
Blader I post too much
Reputation: 2
Joined: 19 Jan 2007 Posts: 2049
|
Posted: Mon Nov 19, 2007 4:21 pm Post subject: |
|
|
I don't think this code needs a call feature...
_________________
|
|
Back to top |
|
 |
TheLazyCat Expert Cheater
Reputation: 0
Joined: 29 Sep 2007 Posts: 117 Location: My House with Milk
|
Posted: Mon Nov 19, 2007 4:43 pm Post subject: |
|
|
it does in vb 2002+
in vb 6 it dosent
|
|
Back to top |
|
 |
Angemon102 Master Cheater
Reputation: 0
Joined: 08 Sep 2007 Posts: 408 Location: Karachi
|
Posted: Tue Nov 20, 2007 11:09 am Post subject: |
|
|
TheLazyCat wrote: | it does in vb 2002+
in vb 6 it dosent |
It does.... I hope this isn't BUMP though... And yeah, does this like unload the previous swf? Like the one it loads on top of?
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Tue Nov 20, 2007 11:57 am Post subject: |
|
|
Angemon102 wrote: | TheLazyCat wrote: | it does in vb 2002+
in vb 6 it dosent |
It does.... I hope this isn't BUMP though... And yeah, does this like unload the previous swf? Like the one it loads on top of? |
Not a bump, and yes it does. His issue was probably dealing with the parenthesis in his code.
Instead of this in VB6:
Code: | ShockwaveFlash1.LoadMovie 1, "MovieURL" |
It was probably:
Code: | ShockwaveFlash1.LoadMovie(1, "MovieURL") |
Which would work fine with call infront of it as well:
Code: | Call ShockwaveFlash1.LoadMovie(1, "MovieURL") |
_________________
- Retired. |
|
Back to top |
|
 |
|