begin process at 2012 05 27 12:40:37
  Trouver un code source :
 
dans
 
Accueil > Forum > 

Archive Flash

 > 

Archives

 > 

Flash et Javascript

 > 

popup qui ne fonctionne pas!!!


Derniers messages déposésPoser une question dans le forum ou lancer une discussion

popup qui ne fonctionne pas!!!

jeudi 10 juillet 2003 à 19:49:38 | popup qui ne fonctionne pas!!!

croco73

Membre Club
salut a tous et a toutes!!
Ca fait deux jours que j'epluche le forum pour trouver une solution qui fonctionne mais rien y fait!!
j'ai une popup à ouvrir ( qui s'appelle popup) avec un bouton placé dans la deuzième scène de mon fichier " index".
Sur ce bouton, j'ai mis :
on (release) {
fscommand("openWindow");
getURL("javascript:popup('popup.htm','',width=800,height=300,scrollbars=no')");
}
// suite a la source n°467 poste par afad
et dans ma page index.html, dans le <BODY> :

<SCRIPT LANGUAGE=JavaScript>
<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function FSCommand_DoFSCommand(command, args) {
var FSCommandObj = InternetExplorer ? FSCommand : document.FSCommand;
//
{if(command=="openWindow"){ openNewWindow()}}function openNewWindow(){setTimeout(window.open('popup.htm','',
'height=300,width=800'),0}
//
}
// Hook for Internet Explorer
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write('<SCRIPT LANGUAGE=VBScript\> \n');
document.write('on error resume next \n');
document.write('Sub FSCommand_FSCommand(ByVal command, ByVal args)\n');
document.write(' call FSCommand_DoFSCommand(command, args)\n');
document.write('end sub\n');
document.write('</SCRIPT\> \n');
}
else {
document.write('<SCRIPT language="javascript">');
document.write('function popup(page,nom,option){');
document.write('window.open(page,nom,option);}');
document.write('</SCRIPT>');
}
//-->
</SCRIPT>

Le probleme c'est que Dream MX me dit qu'il y a une erreur sur le script ('</SCRIPT>');
Il attends soit une ' ou une " mais où je n'en sait rien.
j'ai tout essaye, mais je suis incapable de la resoudre.
merci de m'aider avant que je soit chauve

croco
jeudi 10 juillet 2003 à 21:53:20 | Re : popup qui ne fonctionne pas!!!

mathieumg

>>>

on (release) {
getURL("javascript:window.open('popup.htm','',width=800,height=300,scrollbars=no')");
}


Cela fonctionne-t-il ?

Merci

Mathieu M-G
[ Lien ]


-------------------------------
Réponse au message :
-------------------------------

> salut a tous et a toutes!!
> Ca fait deux jours que j'epluche le forum pour trouver une solution qui fonctionne mais rien y fait!!
> j'ai une popup à ouvrir ( qui s'appelle popup) avec un bouton placé dans la deuzième scène de mon fichier " index".
> Sur ce bouton, j'ai mis :
> on (release) {
> fscommand("openWindow");
> getURL("javascript:popup('popup.htm','',width=800,height=300,scrollbars=no')");
> }
> // suite a la source n°467 poste par afad
> et dans ma page index.html, dans le <BODY> :
>
> <SCRIPT LANGUAGE=JavaScript>
> <!--
> var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
> // Handle all the the FSCommand messages in a Flash movie
> function FSCommand_DoFSCommand(command, args) {
> var FSCommandObj = InternetExplorer ? FSCommand : document.FSCommand;
> //
> {if(command=="openWindow"){ openNewWindow()}}function openNewWindow(){setTimeout(window.open('popup.htm','',
> 'height=300,width=800'),0}
> //
> }
> // Hook for Internet Explorer
> if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
> navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
> document.write('<SCRIPT LANGUAGE=VBScript\> \n');
> document.write('on error resume next \n');
> document.write('Sub FSCommand_FSCommand(ByVal command, ByVal args)\n');
> document.write(' call FSCommand_DoFSCommand(command, args)\n');
> document.write('end sub\n');
> document.write('</SCRIPT\> \n');
> }
> else {
> document.write('<SCRIPT language="javascript">');
> document.write('function popup(page,nom,option){');
> document.write('window.open(page,nom,option);}');
> document.write('</SCRIPT>');
> }
> //-->
> </SCRIPT>
>
> Le probleme c'est que Dream MX me dit qu'il y a une erreur sur le script ('</SCRIPT>');
> Il attends soit une ' ou une " mais où je n'en sait rien.
> j'ai tout essaye, mais je suis incapable de la resoudre.
> merci de m'aider avant que je soit chauve
>
> croco
vendredi 11 juillet 2003 à 01:01:48 | Re : popup qui ne fonctionne pas!!!

croco73

Membre Club
oui ca fonctionne mais la page s'ouvre est rien!!



-------------------------------
Réponse au message :
-------------------------------

> >>>
>
> on (release) {
> getURL("javascript:window.open('popup.htm','',width=800,height=300,scrollbars=no')");
> }
>
>
> Cela fonctionne-t-il ?
>
> Merci
>
> Mathieu M-G
> [ Lien ]
>
>
> -------------------------------
> Réponse au message :
> -------------------------------
>
> > salut a tous et a toutes!!
> > Ca fait deux jours que j'epluche le forum pour trouver une solution qui fonctionne mais rien y fait!!
> > j'ai une popup à ouvrir ( qui s'appelle popup) avec un bouton placé dans la deuzième scène de mon fichier " index".
> > Sur ce bouton, j'ai mis :
> > on (release) {
> > fscommand("openWindow");
> > getURL("javascript:popup('popup.htm','',width=800,height=300,scrollbars=no')");
> > }
> > // suite a la source n°467 poste par afad
> > et dans ma page index.html, dans le <BODY> :
> >
> > <SCRIPT LANGUAGE=JavaScript>
> > <!--
> > var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
> > // Handle all the the FSCommand messages in a Flash movie
> > function FSCommand_DoFSCommand(command, args) {
> > var FSCommandObj = InternetExplorer ? FSCommand : document.FSCommand;
> > //
> > {if(command=="openWindow"){ openNewWindow()}}function openNewWindow(){setTimeout(window.open('popup.htm','',
> > 'height=300,width=800'),0}
> > //
> > }
> > // Hook for Internet Explorer
> > if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
> > navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
> > document.write('<SCRIPT LANGUAGE=VBScript\> \n');
> > document.write('on error resume next \n');
> > document.write('Sub FSCommand_FSCommand(ByVal command, ByVal args)\n');
> > document.write(' call FSCommand_DoFSCommand(command, args)\n');
> > document.write('end sub\n');
> > document.write('</SCRIPT\> \n');
> > }
> > else {
> > document.write('<SCRIPT language="javascript">');
> > document.write('function popup(page,nom,option){');
> > document.write('window.open(page,nom,option);}');
> > document.write('</SCRIPT>');
> > }
> > //-->
> > </SCRIPT>
> >
> > Le probleme c'est que Dream MX me dit qu'il y a une erreur sur le script ('</SCRIPT>');
> > Il attends soit une ' ou une " mais où je n'en sait rien.
> > j'ai tout essaye, mais je suis incapable de la resoudre.
> > merci de m'aider avant que je soit chauve
> >
> > croco
>
vendredi 11 juillet 2003 à 01:34:50 | Re : popup qui ne fonctionne pas!!!

mathieumg

Mais la page popup.htm existe-t-elle et y a t'il du contenu dedans ?

Merci

Mathieu M-G
[ Lien ]


-------------------------------
Réponse au message :
-------------------------------

> oui ca fonctionne mais la page s'ouvre est rien!!
>
>
>
> -------------------------------
> Réponse au message :
> -------------------------------
>
> > >>>
> >
> > on (release) {
> > getURL("javascript:window.open('popup.htm','',width=800,height=300,scrollbars=no')");
> > }
> >
> >
> > Cela fonctionne-t-il ?
> >
> > Merci
> >
> > Mathieu M-G
> > [ Lien ]
> >
> >
> > -------------------------------
> > Réponse au message :
> > -------------------------------
> >
> > > salut a tous et a toutes!!
> > > Ca fait deux jours que j'epluche le forum pour trouver une solution qui fonctionne mais rien y fait!!
> > > j'ai une popup à ouvrir ( qui s'appelle popup) avec un bouton placé dans la deuzième scène de mon fichier " index".
> > > Sur ce bouton, j'ai mis :
> > > on (release) {
> > > fscommand("openWindow");
> > > getURL("javascript:popup('popup.htm','',width=800,height=300,scrollbars=no')");
> > > }
> > > // suite a la source n°467 poste par afad
> > > et dans ma page index.html, dans le <BODY> :
> > >
> > > <SCRIPT LANGUAGE=JavaScript>
> > > <!--
> > > var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
> > > // Handle all the the FSCommand messages in a Flash movie
> > > function FSCommand_DoFSCommand(command, args) {
> > > var FSCommandObj = InternetExplorer ? FSCommand : document.FSCommand;
> > > //
> > > {if(command=="openWindow"){ openNewWindow()}}function openNewWindow(){setTimeout(window.open('popup.htm','',
> > > 'height=300,width=800'),0}
> > > //
> > > }
> > > // Hook for Internet Explorer
> > > if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
> > > navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
> > > document.write('<SCRIPT LANGUAGE=VBScript\> \n');
> > > document.write('on error resume next \n');
> > > document.write('Sub FSCommand_FSCommand(ByVal command, ByVal args)\n');
> > > document.write(' call FSCommand_DoFSCommand(command, args)\n');
> > > document.write('end sub\n');
> > > document.write('</SCRIPT\> \n');
> > > }
> > > else {
> > > document.write('<SCRIPT language="javascript">');
> > > document.write('function popup(page,nom,option){');
> > > document.write('window.open(page,nom,option);}');
> > > document.write('</SCRIPT>');
> > > }
> > > //-->
> > > </SCRIPT>
> > >
> > > Le probleme c'est que Dream MX me dit qu'il y a une erreur sur le script ('</SCRIPT>');
> > > Il attends soit une ' ou une " mais où je n'en sait rien.
> > > j'ai tout essaye, mais je suis incapable de la resoudre.
> > > merci de m'aider avant que je soit chauve
> > >
> > > croco
> >
>
vendredi 11 juillet 2003 à 07:46:03 | Re : popup qui ne fonctionne pas!!!

croco73

Membre Club
ca marche en local au fait!! mais pas en ligne.
et oui, ya du contenu car ya un diaporama de photos.



-------------------------------
Réponse au message :
-------------------------------

> Mais la page popup.htm existe-t-elle et y a t'il du contenu dedans ?
>
> Merci
>
> Mathieu M-G
> [ Lien ]
>
>
> -------------------------------
> Réponse au message :
> -------------------------------
>
> > oui ca fonctionne mais la page s'ouvre est rien!!
> >
> >
> >
> > -------------------------------
> > Réponse au message :
> > -------------------------------
> >
> > > >>>
> > >
> > > on (release) {
> > > getURL("javascript:window.open('popup.htm','',width=800,height=300,scrollbars=no')");
> > > }
> > >
> > >
> > > Cela fonctionne-t-il ?
> > >
> > > Merci
> > >
> > > Mathieu M-G
> > > [ Lien ]
> > >
> > >
> > > -------------------------------
> > > Réponse au message :
> > > -------------------------------
> > >
> > > > salut a tous et a toutes!!
> > > > Ca fait deux jours que j'epluche le forum pour trouver une solution qui fonctionne mais rien y fait!!
> > > > j'ai une popup à ouvrir ( qui s'appelle popup) avec un bouton placé dans la deuzième scène de mon fichier " index".
> > > > Sur ce bouton, j'ai mis :
> > > > on (release) {
> > > > fscommand("openWindow");
> > > > getURL("javascript:popup('popup.htm','',width=800,height=300,scrollbars=no')");
> > > > }
> > > > // suite a la source n°467 poste par afad
> > > > et dans ma page index.html, dans le <BODY> :
> > > >
> > > > <SCRIPT LANGUAGE=JavaScript>
> > > > <!--
> > > > var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
> > > > // Handle all the the FSCommand messages in a Flash movie
> > > > function FSCommand_DoFSCommand(command, args) {
> > > > var FSCommandObj = InternetExplorer ? FSCommand : document.FSCommand;
> > > > //
> > > > {if(command=="openWindow"){ openNewWindow()}}function openNewWindow(){setTimeout(window.open('popup.htm','',
> > > > 'height=300,width=800'),0}
> > > > //
> > > > }
> > > > // Hook for Internet Explorer
> > > > if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
> > > > navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
> > > > document.write('<SCRIPT LANGUAGE=VBScript\> \n');
> > > > document.write('on error resume next \n');
> > > > document.write('Sub FSCommand_FSCommand(ByVal command, ByVal args)\n');
> > > > document.write(' call FSCommand_DoFSCommand(command, args)\n');
> > > > document.write('end sub\n');
> > > > document.write('</SCRIPT\> \n');
> > > > }
> > > > else {
> > > > document.write('<SCRIPT language="javascript">');
> > > > document.write('function popup(page,nom,option){');
> > > > document.write('window.open(page,nom,option);}');
> > > > document.write('</SCRIPT>');
> > > > }
> > > > //-->
> > > > </SCRIPT>
> > > >
> > > > Le probleme c'est que Dream MX me dit qu'il y a une erreur sur le script ('</SCRIPT>');
> > > > Il attends soit une ' ou une " mais où je n'en sait rien.
> > > > j'ai tout essaye, mais je suis incapable de la resoudre.
> > > > merci de m'aider avant que je soit chauve
> > > >
> > > > croco
> > >
> >
>
vendredi 11 juillet 2003 à 07:48:26 | Re : popup qui ne fonctionne pas!!!

croco73

Membre Club
mais si tu as une methode plus simple, je suis preneuse



-------------------------------
Réponse au message :
-------------------------------

> ca marche en local au fait!! mais pas en ligne.
> et oui, ya du contenu car ya un diaporama de photos.
>
>
>
> -------------------------------
> Réponse au message :
> -------------------------------
>
> > Mais la page popup.htm existe-t-elle et y a t'il du contenu dedans ?
> >
> > Merci
> >
> > Mathieu M-G
> > [ Lien ]
> >
> >
> > -------------------------------
> > Réponse au message :
> > -------------------------------
> >
> > > oui ca fonctionne mais la page s'ouvre est rien!!
> > >
> > >
> > >
> > > -------------------------------
> > > Réponse au message :
> > > -------------------------------
> > >
> > > > >>>
> > > >
> > > > on (release) {
> > > > getURL("javascript:window.open('popup.htm','',width=800,height=300,scrollbars=no')");
> > > > }
> > > >
> > > >
> > > > Cela fonctionne-t-il ?
> > > >
> > > > Merci
> > > >
> > > > Mathieu M-G
> > > > [ Lien ]
> > > >
> > > >
> > > > -------------------------------
> > > > Réponse au message :
> > > > -------------------------------
> > > >
> > > > > salut a tous et a toutes!!
> > > > > Ca fait deux jours que j'epluche le forum pour trouver une solution qui fonctionne mais rien y fait!!
> > > > > j'ai une popup à ouvrir ( qui s'appelle popup) avec un bouton placé dans la deuzième scène de mon fichier " index".
> > > > > Sur ce bouton, j'ai mis :
> > > > > on (release) {
> > > > > fscommand("openWindow");
> > > > > getURL("javascript:popup('popup.htm','',width=800,height=300,scrollbars=no')");
> > > > > }
> > > > > // suite a la source n°467 poste par afad
> > > > > et dans ma page index.html, dans le <BODY> :
> > > > >
> > > > > <SCRIPT LANGUAGE=JavaScript>
> > > > > <!--
> > > > > var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
> > > > > // Handle all the the FSCommand messages in a Flash movie
> > > > > function FSCommand_DoFSCommand(command, args) {
> > > > > var FSCommandObj = InternetExplorer ? FSCommand : document.FSCommand;
> > > > > //
> > > > > {if(command=="openWindow"){ openNewWindow()}}function openNewWindow(){setTimeout(window.open('popup.htm','',
> > > > > 'height=300,width=800'),0}
> > > > > //
> > > > > }
> > > > > // Hook for Internet Explorer
> > > > > if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
> > > > > navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
> > > > > document.write('<SCRIPT LANGUAGE=VBScript\> \n');
> > > > > document.write('on error resume next \n');
> > > > > document.write('Sub FSCommand_FSCommand(ByVal command, ByVal args)\n');
> > > > > document.write(' call FSCommand_DoFSCommand(command, args)\n');
> > > > > document.write('end sub\n');
> > > > > document.write('</SCRIPT\> \n');
> > > > > }
> > > > > else {
> > > > > document.write('<SCRIPT language="javascript">');
> > > > > document.write('function popup(page,nom,option){');
> > > > > document.write('window.open(page,nom,option);}');
> > > > > document.write('</SCRIPT>');
> > > > > }
> > > > > //-->
> > > > > </SCRIPT>
> > > > >
> > > > > Le probleme c'est que Dream MX me dit qu'il y a une erreur sur le script ('</SCRIPT>');
> > > > > Il attends soit une ' ou une " mais où je n'en sait rien.
> > > > > j'ai tout essaye, mais je suis incapable de la resoudre.
> > > > > merci de m'aider avant que je soit chauve
> > > > >
> > > > > croco
> > > >
> > >
> >
>
vendredi 11 juillet 2003 à 14:12:15 | Re : popup qui ne fonctionne pas!!!

mathieumg

Est-ce que tu prend une redirection avec Ulimit ou un autre site ???

Merci

Mathieu M-G
[ Lien ]


-------------------------------
Réponse au message :
-------------------------------

> ca marche en local au fait!! mais pas en ligne.
> et oui, ya du contenu car ya un diaporama de photos.
>
>
>
> -------------------------------
> Réponse au message :
> -------------------------------
>
> > Mais la page popup.htm existe-t-elle et y a t'il du contenu dedans ?
> >
> > Merci
> >
> > Mathieu M-G
> > [ Lien ]
> >
> >
> > -------------------------------
> > Réponse au message :
> > -------------------------------
> >
> > > oui ca fonctionne mais la page s'ouvre est rien!!
> > >
> > >
> > >
> > > -------------------------------
> > > Réponse au message :
> > > -------------------------------
> > >
> > > > >>>
> > > >
> > > > on (release) {
> > > > getURL("javascript:window.open('popup.htm','',width=800,height=300,scrollbars=no')");
> > > > }
> > > >
> > > >
> > > > Cela fonctionne-t-il ?
> > > >
> > > > Merci
> > > >
> > > > Mathieu M-G
> > > > [ Lien ]
> > > >
> > > >
> > > > -------------------------------
> > > > Réponse au message :
> > > > -------------------------------
> > > >
> > > > > salut a tous et a toutes!!
> > > > > Ca fait deux jours que j'epluche le forum pour trouver une solution qui fonctionne mais rien y fait!!
> > > > > j'ai une popup à ouvrir ( qui s'appelle popup) avec un bouton placé dans la deuzième scène de mon fichier " index".
> > > > > Sur ce bouton, j'ai mis :
> > > > > on (release) {
> > > > > fscommand("openWindow");
> > > > > getURL("javascript:popup('popup.htm','',width=800,height=300,scrollbars=no')");
> > > > > }
> > > > > // suite a la source n°467 poste par afad
> > > > > et dans ma page index.html, dans le <BODY> :
> > > > >
> > > > > <SCRIPT LANGUAGE=JavaScript>
> > > > > <!--
> > > > > var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
> > > > > // Handle all the the FSCommand messages in a Flash movie
> > > > > function FSCommand_DoFSCommand(command, args) {
> > > > > var FSCommandObj = InternetExplorer ? FSCommand : document.FSCommand;
> > > > > //
> > > > > {if(command=="openWindow"){ openNewWindow()}}function openNewWindow(){setTimeout(window.open('popup.htm','',
> > > > > 'height=300,width=800'),0}
> > > > > //
> > > > > }
> > > > > // Hook for Internet Explorer
> > > > > if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
> > > > > navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
> > > > > document.write('<SCRIPT LANGUAGE=VBScript\> \n');
> > > > > document.write('on error resume next \n');
> > > > > document.write('Sub FSCommand_FSCommand(ByVal command, ByVal args)\n');
> > > > > document.write(' call FSCommand_DoFSCommand(command, args)\n');
> > > > > document.write('end sub\n');
> > > > > document.write('</SCRIPT\> \n');
> > > > > }
> > > > > else {
> > > > > document.write('<SCRIPT language="javascript">');
> > > > > document.write('function popup(page,nom,option){');
> > > > > document.write('window.open(page,nom,option);}');
> > > > > document.write('</SCRIPT>');
> > > > > }
> > > > > //-->
> > > > > </SCRIPT>
> > > > >
> > > > > Le probleme c'est que Dream MX me dit qu'il y a une erreur sur le script ('</SCRIPT>');
> > > > > Il attends soit une ' ou une " mais où je n'en sait rien.
> > > > > j'ai tout essaye, mais je suis incapable de la resoudre.
> > > > > merci de m'aider avant que je soit chauve
> > > > >
> > > > > croco
> > > >
> > >
> >
>
vendredi 11 juillet 2003 à 20:43:59 | Re : popup qui ne fonctionne pas!!!

didier59760

pour le bouton sur flash ce petit code

on (press) {
getURL ("javascript:popup('monfichier.swf','popup','height=400,width=600,left=100,top=100,status=no,menubar=no,scrollbars=no,resizable=no')");
}
ce code permet aussi de positionner sa fenêtre.

comme on fait un appel javascript, dans la partie html qui contient le swf avec le bouton concerné entre les balises head on place ce petit script

<html>
<head>
<script language="JavaScript">
<!--
function popup(theURL,winName,features) {
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body>
</body></html>

ça devrai résoudre les problémes si ce n 'est pas déja fait
dimanche 13 juillet 2003 à 11:48:36 | Re : popup qui ne fonctionne pas!!!

kodiask

je sui pa un gran pro mai si ca marche pa en ligne c peut etre ton hebergeur parce ke je c ke javai un chat en flash et ac multimania il me coler leur script dedan ca fai ke dans mon chat c t ecri
<multimania script :blablablabla......</multimania> un truk du style ,mai en local sa marcher et sur free ossi.
alor ptetre ke ta un pb du mm genre mai ke sa marche pa.
voila c ce ke je pense ...
++
www.kodiaskdesign.fr.st
mardi 15 juillet 2003 à 16:46:09 | Re : popup qui ne fonctionne pas!!!

croco73

Membre Club

merci a tous pour votre aide et plus particulierement a didier59760.
a bientot sur le forum
croco73




1 2

Cette discussion est classée dans : fonctionne, document, popup, write, fscommand


Répondre à ce message

Sujets en rapport avec ce message

popup avec contenu dynamique de .... !!!!!!! [ par zilkyan ] salut à tous ! voilà mon problème : je charge des données d'un xml dans un champs texte dynamique (option  : format HTML). Pour chaque news chargé FScommand et FireFox [ par trouble magma ] Bonjour tout le monde, j'ai un probleme avec mon programme flash.Je fais du SCORM a partir de Flash (envoie d'information sur une plateforme de format pb de menu en flash [ par anelune ] Bonjour!!!Je me suis mise a flash 8 il y a quelques jours, et j'ai crée un menu que vous pouvez voir ici : http://kaerchellala.wifeo.comMais comme vou Intégration 2 animations Flash dans html [ par fopadek ] Bonjour !Je ne parviens pas à intégrer 2 animations flash dans un doc html sous dreamweaver.J'ai pourtant créé un js où j'ai nommé les 2 animations co expand banner [ par aljazzique ] Bonjour, Je suis a la recherche d'une méthode pour utiliser un flash a la maniere d'un expand banner : j'ai un flash transparent de120x600 qui lorsqu image arriére plan [ par nickg ] bonjourDans ma page d'acceuil en en-tete, j'ai un tableau, 1 ligne unecolonne dans lequel j'ai mis une banniére flash  , mais qui le prend pas toute l Pb fenêtre popup [ par fullblood ] Bonjour! J'ai fait quelques recherches, et j'ai bien évidement trouvé comment ouvrir une fenêtre popup sur la page en cours... mais le problème c'est Pop-up aux dimensions de l'image. [ par baptiste2097 ] Bonjour,je fais un petit site en flash, mon anim' principale est sur une page HTML (générée avec FlashCS4, modif avec DreamCS4), mon anim charge une a deletePopUp depuis la popup [ par DarkCid ] Bonjour,dans ma application, j'ai créer une popup avec la fonction createPopUp. Bon ça c'est nickel, seulement maintenant qu'elle ouverte, faudrait po Liens Menu déroulant flash fonctionne rarement [ par js64 ] Bonjour a tous, j'ai enfin terminé mon site grace a l'aide de bcp d entre vous !!! merci encore a tous ceux qui ont pris le temps de répondre à mes qu


Nos sponsors


Sondage...

CalendriCode

Mai 2012
LMMJVSD
 123456
78910111213
14151617181920
21222324252627
28293031   

Consulter la suite du CalendriCode

A découvrir



 
Développement réalisé par Nicolas SOREL (Nix) avec l'aide de : Cyril DURAND et Emmanuel (EBArtSoft), Merci à Vincent pour ses précieux conseils.
CodeS-SourceS.com© Toute reproduction même partielle est interdite sauf accord écrit du Webmaster
CodeS-SourceS.com© est une marque déposée tous droits réservés

Google Coop CodeS-SourceS Google Coop CodeS-SourceS
Temps d'éxécution de la page : 1,700 sec (3)

Nous contacter | Annoncer sur CodeS-SourceS | Mentions légales