Thread: flash+frame..?!
View Single Post

  #1 (permalink)  
Old 17-07-08, 13:50
teonji teonji is offline
Junior Member
 
Join Date: Jun 2008
Posts: 29
Rep Power: 0
teonji is on a distinguished road
Question flash+frame..?!

ciao ragazzi..ho un problema..ho fatto un menu in flash molto semplice per ora..e l'ho posizionato in una pagina html divista da 3 frame
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>CDL express centro distribuzione lombardia</title>
</head>
<frameset rows="171,*" cols="*" frameborder="no" border="0" framespacing="0">
  <frame src="bannerindex.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
  <frameset rows="*" cols="200,*" framespacing="0" frameborder="no" border="0">
    <frame src="traq.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
    <frame src="centerindex.html" name="mainFrame" id="mainFrame" title="mainFrame" />
  </frameset>
</frameset>
<noframes><body>
</body>
</noframes></html>
il left frame è il frame con il login, che aprirà il contenuto in mainFrame..e funziona.
il frame topFrame è quello in cui vado a posizionare il mio swf con i vari pulsanti a cui ho assegnato le relative azioni su ognuno..
Code:
on (press){
	getURL("centerindex.html", "mainFrame");
}
con cui vorrei che si aprisse il contenuto di centerindex.html nel frame mainframe..ma non funziona..e mi apre la pagina centerindex in una nuova finestra..come devo fare..per capire meglio se può servire posso allegare un menu d'esempio..cmq il tutto è publicato su CDL express centro distribuzione lombardia
grazie in anticipo..
Reply With Quote