Bonjour Bonjour,

Donc voilà, j'arrive à intégrer une page HTML souhaitée dans mon application Flex, mais celà se complique lorsque je veux en ajouter deux...

En effet, pour celà, j'ai créé deux iframe similaire, qui appelle une page chacune mais le problème est que seule la deuxième s'affiche...
Je pense qu'il s'affiche d'un problème d'écrasement...mais je ne suis sur de rien..



ci joint mon code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
 
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" >
    <mx:HBox width="100%" height="100%">
 
        <mx:Panel width="50%" height="100%" title="Content" paddingTop="1" paddingBottom="1" paddingLeft="1" paddingRight="1" >
            <IFrame id="iFrame" source="http://www.google.fr" width="100%" height="100%" visible ="true" />
 
        </mx:Panel>
 
    <mx:Panel width="50%" height="100%" title="Content" paddingTop="1" paddingBottom="1" paddingLeft="1" paddingRight="1" >
           <IFrame id="iFrame2" source="http://www.adobe.com" width="100%" height="100%"  visible="true"/>
        </mx:Panel>
 
    </mx:HBox>
 
</mx:Application>
ps: Je mettrais à disposition le fichier IFrame.mxml si besoin est!!