Ulitasch wrote:
> I don't know what is " FlashVars and level0 scope"?
FlashVars is one way to pass variables to a Flash movie from
HTML very
similar to query strings in the URL. if you pass a var named
foto, it
can be accessed with: _level0.foto
take a look at Flash help for FlashVars and levels
> What do I have to put in: var_to_flash=<?php echo
...; ?>',
> Do I replace <?php echo ...; ?> with the link to
the detail page?
> "../portfolio/index.php?foto=<?php echo
$row_rsPORTFOLIO2['foto_order']; ?>"
just the var name and its dynamic value:
foto=<?php echo $row_rsPORTFOLIO2['foto_order']; ?>
as the path and page name seems to be static it doesn't make
sense to
include them in the var; put them in the Flash movie:
getURL("../portfolio/index.php?"+_level0.foto);
> And what do I put in the places after:
AC_FL_RunContent('...','...','
> Sorry, this is very new for me..
Dreamweaver 8.0.2 generates that code when you insert a Flash
movie and
Code Rewriting > Active content option in Preferences is
selected:
AC_FL_RunContent('codebase','
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',...
and don't worry. everybody learn new things each day!