求flex编程程序
<?xmlversion="1.0"encoding="utf-8"?><mx:Applicationxmlns:mx="http://www.adobe.com/200...
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" visible="true">
<mx:Label text="picture" width="152" height="51"
fontSize="17" x="69" y="53" fontWeight="bold"
mosemove="image.source='file:///E|/照片、图片/dreamwear所有背景图片/bg-0021.gif'
autoLoad='true'"
/>
<mx:Label text="not picture" height="42" width="132" fontSize="17" x="360" y="50" fontWeight="bold"/>
<mx:Image width="120" height="115"
/>
</mx:Application>
要求是:显示一行文字,鼠标放在上面显示一张图片,图片的名称和文字名称一样,图片如果不存在就显示提示!!!
以题目要求为准!我的代码只是提供参考,如觉我的代码太烂!请高手写一下。。。如果写的好,在下一定加分!!!重分悬赏答案50!不够再加!只求答案!!!
我的程序错在哪????希望高手评价的精辟点 展开
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" visible="true">
<mx:Label text="picture" width="152" height="51"
fontSize="17" x="69" y="53" fontWeight="bold"
mosemove="image.source='file:///E|/照片、图片/dreamwear所有背景图片/bg-0021.gif'
autoLoad='true'"
/>
<mx:Label text="not picture" height="42" width="132" fontSize="17" x="360" y="50" fontWeight="bold"/>
<mx:Image width="120" height="115"
/>
</mx:Application>
要求是:显示一行文字,鼠标放在上面显示一张图片,图片的名称和文字名称一样,图片如果不存在就显示提示!!!
以题目要求为准!我的代码只是提供参考,如觉我的代码太烂!请高手写一下。。。如果写的好,在下一定加分!!!重分悬赏答案50!不够再加!只求答案!!!
我的程序错在哪????希望高手评价的精辟点 展开
1个回答
展开全部
<?xml version="1.0" encoding="utf-8"桐散猛局桥?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
<mx:Script>
<![CDATA[
import flash.filesystem.File;
import mx.controls.Alert;
private function mouseOverHandler():void{
var file:File=new File("yourPath");
if(file.exists){
myImage.source=file;
}else{
Alert.show("图片不存在","提示");
}
}
]]>
</mx:Script>掘哗
<mx:Label text="logo.gif" mouseOver="mouseOverHandler()"/>
<mx:Image id="myImage"/>
</mx:Application>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
<mx:Script>
<![CDATA[
import flash.filesystem.File;
import mx.controls.Alert;
private function mouseOverHandler():void{
var file:File=new File("yourPath");
if(file.exists){
myImage.source=file;
}else{
Alert.show("图片不存在","提示");
}
}
]]>
</mx:Script>掘哗
<mx:Label text="logo.gif" mouseOver="mouseOverHandler()"/>
<mx:Image id="myImage"/>
</mx:Application>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询