Flash全屏输入文本框不能输入问题

问题描述:最近做AMG多触点程序,遇到flash全屏后文本框不能输入问题。flash10,用swf全屏后可以输入;用exe全屏后不能输入。air2,用exe全屏可以输入。

问题解决:Google了下:

在全屏模式下,用户无法在文本输入字段中输入文本。所有键盘输入和键盘相关的 ActionScript 在全屏模式下均会被禁用,但将应用程序返回标准模式的键盘快捷键(例如按 Esc)除外。

http://livedocs.adobe.com/flash/9.0_cn/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00000352.html

Icon for iOS

App Store Icon

  • 512x512 (scaled down to 175x175 for display in the store)

Application Icon

  • 114x114 (iPhone 4)
  • 57x57 (older iPhones)
  • 72x72 (iPad)

Spotlight Search Results and Settings Icon

  • 58x58 (iPhone 4)
  • 50x50 (Spotlight results for iPad)
  • 29x29 (settings for iPad and older iPhones)

Document Icon

This is a new icon type in iOS 4. It’s used if your app creates a custom document type. The iPad uses the document icon in two different sizes.

  • 320x320 (iPad)
  • 64x64 (iPad)
  • 44x58 (iPhone 4)
  • 22x29 (older iPhones)

Core Data 修改 Model 出错

问题描述:这几天在做Red Frog,使用了Core Data。修改了.xdatamodel,程序就莫名跳出。

问题分析:因为是iOS 3.0开始才有的,我的《iPhone开发基础教程》 中还没有。借了vin的《iPhone开发基础教程3》看了下,还是没找到解决方法。

问题解决:设置断点一步一步跟踪,发现是与代码无关。然后就想倒是不是数据库结构改了,导致原来版本的数据库不能用。把模拟器上的程序删了,再调试,一切ok了。

SWF 文件不能被本地访问 不能访问本地 只有仅限于文件系统的 SWF 文件和可信的本地 SWF 文件可以访问本地资源

问题描述:

前几天帮朋友做了一个结婚的AR小软件,朋友运行后出现如下错误:

SecurityError: Error #2148: SWF 文件 file:///F:/AR/FLARManager_v1_0_3/bin-debug/FLARManagerExampleLauncher.swf无法接续 file:///F:/AR/FLARManager_v1_0_3/resources/flar/flarConfig.xml 。只有本地系统的SWF文件 以及被信頼的本地 SWF源文件才可接续。

at flash.net::URLStream/load()
at flash.net::URLLoader/load()
at com.transmote.flar.utils::FLARManagerConfigLoader/http://transmote.com/flar::loadConfigFile()[C:\Users\Could\Desktop\FLARManager_v1_0_3\src\com\transmote\flar\utils\FLARManagerConfigLoader.as:152]
at com.transmote.flar::FLARManager()[C:\Users\Could\Desktop\FLARManager_v1_0_3\src\com\transmote\flar\FLARManager.as:180]
at examples::FLARManagerExample_2D/onAdded()[C:\Users\Could\Desktop\FLARManager_v1_0_3\src\examples\FLARManagerExample_2D.as:39]
at flash.display::DisplayObjectContainer/addChild()
at FLARManagerExampleLauncher()[C:\Users\Could\Desktop\FLARManager_v1_0_3\src\FLARManagerExampleLauncher.as:18]

问题解决:

在C:\WINDOWS\system32\Macromed\Flash\FlashPlayerTrust目录下添加一个文件,比如:myTrustFiles.txt(文件名可任意起),文件内容为:“F:\AR\FLARManager_v1_0_3\bin-debug\”即项目的路径,当然也可以设置为“F:\”

或者所以盘符都写上:

c:\
d:\
e:\
f:\

PS:以下是其他操作系统的解决方案

======================================================

说明:

为了让你的Flash在用户硬盘中拥有同时访问网络和本地的能力,你必须在用户计算机的FlashPlayerTrust目录中为你的Flash添加权限。转载请注明出处:hi.baidu.com/taotao5453

  • FlashPlayerTrust 配置文件。这些是列出受信任路径的简单文本文件。这些文件由可执行的安装程序创建。当安装程序将 SWF 安装到用户的计算机时, 它能够安装信任的配置文件并指定 SWF 是受信任的。当该做法没有表现用户显式决定每个受信任的 SWF 时, 该用户已通过运行安装程序将信任隐式给予它, 毕竟它是可执行程序。Flash Player 可识别以下两个位置的信任配置文件: 影响计算机所有用户的位置和只影响当前用户的位置。所有用户位置需要操作系统级别的管理权限。这些位置如下:
    • Windows 所有用户:<系统 › \Macromed\Flash\FlashPlayerTrust

      (例如 c:\WINNT\system32\Macromed\Flash\FlashPlayerTrust)

    • Windows 单个用户:<应用程序数据 › \Macromedia\Flash Player\#Security\FlashPlayerTrust

      (例如 c:\Documents and Settings\fred\Application Data\Macromedia\Flash Player\#Security\FlashPlayerTrust)

    • Mac OS 所有用户:<应用程序支持 › /Macromedia/FlashPlayerTrust

      (例如 /Library/Application Support/Macromedia/FlashPlayerTrust)

    • Mac OS 单个用户:<应用程序数据 › /Macromedia/Flash Player/#Security/FlashPlayerTrust

      (例如 /Users/fred/Library/Preferences/Macromedia/Flash Player/#Security/FlashPlayerTrust)

      -Lunix 用户

    • For single-user (replace <user> with actual username):
      /home/<user>/.macromedia/Flash_Player/#Security/FlashPlayerTrust
    • For all users on the machine:
      /etc/adobe/FlashPlayerTrust/

    ROS

    ROS is an open-source, meta-operating system for your robot. It provides the services you would expect from an operating system, including hardware abstraction, low-level device control, implementation of commonly-used functionality, message-passing between processes, and package management.

    官网:http://www.ros.org/wiki/