Apple event,The special oneday Apple shopping event is Friday November 26

1,The special oneday Apple shopping event is Friday November 26特别一天苹果购物事件是星期五 , 11月26日 。现在开始做你的清单 。
2,ipod touch3代 今年会出吗估计与2代有什么不同价格怎么样iPt的升级周期和iPhone 差不多 。可能会在Apple spacial event 上更新 。具体时间不知道 。顺便说一句,,早买早享受 。
3 , SIRI语音谁能给介绍一下在刚刚结束的 2011 Apple Special Event 里,Scott 问了 Siri 一个问题:“ Who are you ? ”(你是谁?)Siri 的回答是 “ I am your humble personal assistant. ”(我是你谦卑的、私人助理 。)但我们明显还是不知道 Siri 究竟是什么 。这两天关于 Siri 的介绍、解密满天飞,自行搜索就能稍微了解 。这么总结一下吧,如果你时常梦想着自己是大雄,可以跟哆啦A梦说你把随意门拿出来吧我想去看静香洗澡??那么 Siri 事实上是哆啦A梦的 father。总是扯这些理论上的东西实在是太麻烦了,还不如直接看一两个例子 。具体太长了,给你原文链接吧http://www.ppios.com/how-much-can-siri-do-for-you.html【Apple event,The special oneday Apple shopping event is Friday November 26】
4,游戏开始后苹果从屏幕顶部随机下落移动鼠标当准星与准苹果接小灯闪烁是说鼠标有问题的意思 。你可能没有装驱动(在WINDOWS操作系统下),去百度搜个“苹果无线鼠标驱动”软件,安装上了就能用了 。如果安装成功 , 重启鼠标后还是不能用,灯光闪烁,就进入苹果系统,主要让苹果系统能识别鼠标了 , 再重启切换到WIN系统就能用了 。这其中包含了四个问题 。◆ 苹果爆炸,这需要制作一个爆炸动画的影片剪辑,相信不会很难 。◆ 苹果从屏幕顶部随机下落 , 这需要一个代码后台控制 。as3.0示例:import flash.events.event;setinterval(applefall, 1800);//每隔多少毫秒执行指定任务/*-------------------------------------------------------------*applesider 是苹果影片剪辑的as链接名 。--------------------------------------------------------------*/function applefall():voidvar apple_mc: applesider = new applesider();var sx = math.random() * stage.stagewidth + apple_mc.width;apple_mc.x = sx;apple_mc.y = 0 - apple_mc.height;apple_mc.sy = math.random() * 2 + 1;addchild(apple_mc);apple_mc.addeventlistener(event.enter_frame,loop);}function loop(e:event ):voidvar apple_mc:applesider = e.target as applesider;apple_mc.y +=apple_mc.sy;}◆移动鼠标当准星与苹果接触,再补上一些代码:import flash.events.event;import flash.events.mouseevent;setinterval(applefall, 1800);//每隔多少毫秒执行指定任务/*-------------------------------------------------------------*applesider 是苹果影片剪辑的as链接名 。--------------------------------------------------------------*/function applefall():voidvar apple_mc: applesider = new applesider();var sx = math.random() * stage.stagewidth + apple_mc.width;apple_mc.x = sx;apple_mc.y = 0 - apple_mc.height;apple_mc.sy = math.random() * 2 + 1;addchild(apple_mc);apple_mc.addeventlistener(event.enter_frame,loop);apple_mc.addeventlistener(mouseevent.click,touch);}function loop(e:event ):voidvar apple_mc:applesider = e.target as applesider;apple_mc.y +=apple_mc.sy;}function touch(t:mouseevent ):voidvar apple_mc:applesider = t.target as applesider;if (apple_mc.hittestpoint(mousex,mousey))//removechild(apple_mc );//测试是否清除子对象(消失)apple_mc.play();}}§完美消失§import flash.events.event;import flash.events.mouseevent;setinterval(applefall, 1800);/*-------------------------------------------------------------*applesider 是苹果影片剪辑的as链接名 。--------------------------------------------------------------*/function applefall():voidvar apple_mc: applesider = new applesider();var sx = math.random() * stage.stagewidth + apple_mc.width;apple_mc.x = sx;apple_mc.y = 0 - apple_mc.height;apple_mc.sy = math.random() * 2 + 1;addchild(apple_mc);apple_mc.addeventlistener(event.enter_frame,loop);apple_mc.addeventlistener(mouseevent.click,touch);}function loop(e:event ):voidvar apple_mc:applesider = e.target as applesider;apple_mc.y +=apple_mc.sy;if (apple_mc.currentframe == apple_mc.totalframes)removechild(apple_mc );}}function touch(t:mouseevent ):voidvar apple_mc:applesider = t.target as applesider;if (apple_mc.hittestpoint(mousex,mousey))apple_mc.play();}}

    推荐阅读