Flex debug : Flash player not found

  • 1. Reinstall的Flash Player 请点击此链接并重新安装的Flash Player 。获取最新的Flash Player的调试版本,但这有可能不会解决问题。
  • 2. 找回firefox缺失的文件,dll文件丢失了.先查看firefox安装路径下C:/Program Files/Mozilla Firefox/plugins中NPSWF32.dll 文件是否不存在,如果没有就到C:/Windows/System32/Macromed/Flash里面拷贝一个放在缺失的文件夹中,这样的firefox的问题将被解决
  • 3. 如果上边的方法还是不能让你正常的工作,那么你还可以设置其他浏览器作为你调试flex程序的默认浏览器,设置浏览器的方式如下:
  • window - perferences -general - web browser -选中系统使用的默认浏览器(firefox或者IE), 千万别选"default system web browser"。

(1)index.js //index.js //获取应用实例 const app = getApp() Page({ data: { }, //事件处理函数 openUrl: function() { wx.navigateTo({ url: '/pages/list/list', }) }, onLoad: function () { } }) (2)index.wxml <!--index.wxml--> <view class="container"> <view class="serch"> <icon class="icon-small" color="#bdbdbd" type="search" size="24"></icon> <input class="weui-input phc" placeholder="搜索歌曲" placeholder-class="ph" /> </view> <view class="bang" bindtap="openUrl"> <view class="bangl"> <image src="/common/image/bsb.jpg" class="bangl_img"></image> <text class="bangl_text">每天更新</text> </view> <view class="bangr"> <view class="bangrl"> 1.长沙策长沙 - CBLOCK </view> <view class="bangrl"> 2.长沙hood - KEY-L刘聪 </view> <view class="bangrl"> 3.HEYKONG - KEY-L刘聪 </view> </view> </view> <view class="bang" bindtap="openUrl"> <view class="bangl"> <image src="/common/image/xgb.jpg" class="bangl_img"></image> <text class="bangl_text">每天更新</text> </view> <view class="bangr"> <view class="bangrl"> 1.Not Like Us - Kendrick Lamar </view> <view class="bangrl"> 2.没钥匙的锁 - KEY-L刘聪 </view> <view class="bangrl"> 3.南风 - CashTrippy </view> </view> </view> <view class="bang" bindtap="openUrl"> <view class="bangl"> <image src="/common/image/rgb.jpg" class="bangl_img"></image> <text class="bangl_text">每天更新</text> </view> <view class="bangr"> <view class="bangrl"> 1.未来等你 - KEY-L刘聪 </view> <view class="bangrl"> 2.千禧年代 - KEY-L刘聪 </view> <view class="bangrl"> 3.随身听2000 - KEY-L刘聪 </view> </view> </view> <view class="bang" bindtap="openUrl"> <view class="bangl"> <image src="/common/image/ycb.jpg" class="bangl_img"></image> <text class="bangl_text">每天更新</text> </view> <view class="bangr"> <view class="bangrl"> 1.长沙hood - KEY-L刘聪 </view> <view class="bangrl"> 2.孤独症 - KEY-L刘聪 </view> <view class="bangrl"> 3.馈赠 - CashTrippy </view> </view> </view> </view> (3)index.wxss /**index.wxss**/ .container{ width:100%; display: flex; padding: 30rpx; box-sizing: border-box; flex-direction: column; } .serch{ display: flex; background-color: #F8F8F8; width: 100%; height: 76rpx; align-items: center; border-radius: 64rpx; padding-left: 22rpx; box-sizing: border-box; margin-bottom: 40rpx; } .ph{ font-size: 32rpx; color: #bdbdbd; } .phc{ padding-left: 22rpx; } .bang{ width: 100%; display: flex; margin-bottom: 30rpx; } .bangl{ position: relative; } .bangl_img{ width: 240rpx; height: 240rpx; border-radius: 8rpx; position: relative; display: block; } .bangl_text{ font-size: 24rpx; color: #fff; position: absolute; left: 12rpx; bottom: 16rpx; } .bangr{ display: flex; flex-direction: column; padding: 15rpx 0; margin-left: 20rpx; } .bangr .bangrl{ height: 70rpx; line-height: 70rpx; color: #777; font-size: 28rpx; } 2.歌单信息 (1)list.js // pages/list/list.js Page({ /** * 页面的初始数据 */ data: { }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, bofang: function(){ wx.navigateTo({ url: '/pages/player/player', }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } }) (2)list.wxml <navigation title='歌单' my_class="{{true}}" show_bol='{{true}}' my_class='{{false}}' content_offset='{{true}}'></navigation> <view class="top"> <view class="listinfo"> <view class="listinfol"> <image src="/common/image/bsb.jpg"></image> <view class="bofang"> <image src="/common/image/bofang.png"></image> <text>33.6亿</text> </view> </view> <view class="listinfor"> <view class="listtitle">长沙说唱专属</view> <view class="listauthor"> <image src="/common/image/logo.jpg"></image> <view class="author">网易云音乐</view> </view> <view class="listdesc">专属于你的长沙说唱推荐 快来收藏~></view> </view> </view> <view class="sharebutton"> <image src="/common/image/fenxiang.png"></image> <view>分享给微信好友</view> <button open-type="share">分享</button> </view> </view> <view class="songlists"> <view class="count"> <image src="/common/image/bfq.png"></image> <view class="countt1">播放全部</view> <view class="countt2">(共100首)</view> </view> <view class="songlist" bindtap="bofang"> <view class="songlistl"> <view class="order">1</view> <view class="songinfo"> <view class="songtitle">长沙策长沙</view> <view class="singer"> <text class="icon">独家</text> <text class="icon">SQ</text> CBLOCK-老时光</view> </view> </view> <image class="songlistr" src="/common/image/bf2.png"></image> </view> <view class="songlist"> <view class="songlistl"> <view class="order">2</view> <view class="songinfo"> <view class="songtitle">长沙hood</view> <view class="singer"> <text class="icon">独家</text> <text class="icon">SQ</text> KEY-L刘聪-长沙hood</view> </view> </view> <image class="songlistr" src="/common/image/bf2.png"></image> </view> <view class="songlist"> <view class="songlistl"> <view class="order">3</view> <view class="songinfo"> <view class="songtitle">HEY KONG</view> <view class="singer"> <text class="icon">独家</text> <text class="icon">SQ</text> KEY-L刘聪-街区故事</view> </view> </view> <image class="songlistr" src="/common/image/bf2.png"></image> </view> <view class="songlist"> <view class="songlistl"> <view class="order">4</view> <view class="songinfo"> <view class="songtitle">没钥匙的锁</view> <view class="singer"> <text class="icon">独家</text> <text class="icon">SQ</text> KEY-L刘聪-街区故事</view> </view> </view> <image class="songlistr" src="/common/image/bf2.png"></image> </view> <view class="songlist"> <view class="songlistl"> <view class="order">5</view> <view class="songinfo"> <view class="songtitle">回到2000</view> <view class="singer"> <text class="icon">独家</text> <text class="icon">SQ</text> KEY-L刘聪-回到2000</view> </view> </view> <image class="songlistr" src="/common/image/bf2.png"></image> </view> </view> (3)list.wxss /* pages/list/list.wxss */ page{ background-color: #4470AB; } .top{ /* background-image: linear-gradient(to top,#4570AC,#5E81B2); */ width: 100%; padding-top: 80rpx; } .listinfo{ display: flex; padding: 0 30rpx; width:100%; box-sizing: border-box; } .listinfol{ position: relative; } .listinfol image{ width: 290rpx; height: 290rpx; border-radius: 8rpx; position: relative; } .bofang{ color: #fff; position: absolute; top: 0; right: 10rpx; display: flex; align-items: center; } .bofang image{ width: 30rpx; height: 30rpx; } .listauthor image{ width: 50rpx; height: 50rpx; border-radius: 50%; } .sharebutton image{ width: 40rpx; height: 40rpx; margin-right: 10rpx; } .sharebutton button{ position: absolute; height: 100%; width: 100%; opacity: 0; z-index: 99; } .listinfor{ margin-left: 40rpx; } .listtitle{ font-size: 34rpx; color: #fff; } .listauthor{ display: flex; color: #fff; font-size: 28rpx; color: #e2e2e2; height:60rpx; align-items: center; margin: 20rpx 0; } .author{ margin-left: 20rpx; } .listdesc{ font-size: 24rpx; color: #e6e6e6; } .sharebutton{ display: flex; height: 80rpx; align-items: center; color: #fff; font-size: 30rpx; background: #5E82BA; width: 372rpx; justify-content: center; border-radius: 56rpx; position: relative; left: 50%; margin-left: -186rpx; margin-top: 40rpx; } .songlist{ display: flex; justify-content: space-between; height: 100rpx; align-items: center; margin-top: 20rpx; margin-bottom: 20rpx; } .songlists{ width: 100%; padding: 30rpx; box-sizing: border-box; display: flex; flex-direction: column; background: #fff; border-radius: 32rpx; margin-top: 40rpx; } .count{ width: 100%; display: flex; height: 80rpx; align-items: center; } .count image,.songlistr{ width: 50rpx; height: 50rpx; } .countt1{ font-size: 34rpx; margin-left: 34rpx; margin-right: 8rpx; } .countt2{ font-size: 28rpx; color: #ccc; } .songlistl{ display: flex; height: 100rpx; align-items: center; } .songinfo{ display: flex; flex-direction: column; margin-left: 34rpx; } .songtitle{ font-size: 32rpx; color: #333; } .singer{ font-size: 24rpx; color: #999; } .singer .icon{ font-size: 18rpx; color: #ff0000; border: 1rpx solid #ff0000; margin-right: 10rpx; } .order{width: 42rpx;height: 100rpx;line-height: 100rpx;color: #999;}
06-13
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值