flash-builder4.5

how can start mobile flex google map application using adobe flash builder 4.5?

落花浮王杯 提交于 2019-12-21 05:40:59
问题 i am new in adobe flex development how can start google map in mobile flex application in adobe flex using flash builder 4.5 please forward some solution its urgent thank in advance narasimha 回答1: I am also new to Adobe Flash and Flex development, but these links may help you Tutorial: Including Google Maps in an Adobe Flex application Using Google Maps in a Flex project 来源: https://stackoverflow.com/questions/7964597/how-can-start-mobile-flex-google-map-application-using-adobe-flash-builder

A compiler error that makes me be confused in ActionScript

孤人 提交于 2019-12-12 17:05:11
问题 Firstly, something I want to explain is I am not familiar with ActionScript, so don't blame me a lot for some basic mistakes. I have just learned it for a short time only. Thus, a few tips of scripting ActionScript is always appreciated. :) I don't know why the compiler said the constructor of one of my classes doesn't accept any parameter. OK. You might get my meaning through code shown below. Here a Player.as: public class Player extends Sprite { public var mcHealthBar:HealthBar; public

Changing WSDL of Flex 4.5 Autogenerated Service Proxy Classes

可紊 提交于 2019-12-12 03:08:37
问题 I used Flash Builder's 4.5 capability to auto generate a proxy class for a given SOAP service. Everything works fine and dandy, except for the fact that the WSDL url is hardcoded into the auto-generated proxy class. Now, when I deploy the Flex app onto the production server, I want to change the path of the SOAP service, which will be obtained from a config file. The internals of the service will be exactly the same. In the code snippet below, I try to swap wsdl url manually in a subclass of

VerifyError: Error #1014: class could not be found

时间秒杀一切 提交于 2019-12-06 23:56:38
问题 I'm developing AS3 project using Flash Builder 4.5 (also with library Away3D 4.0 and Flex 4.5.1 SDK). Also, I add my own SWC library, which I compile previously into my project. It works find if I import class in my SWC library, however I want my swf run in a stand-alone flash player 11. I follow this tutorial: http://help.adobe.com/en_US/flashbuilder/using/WSe4e4b720da9dedb5-4dd43be212e8f90c222-7ffb.html Now, I could run my app in a flash player 11, but I got an error in run time:

VerifyError: Error #1014: class could not be found

China☆狼群 提交于 2019-12-05 03:02:49
I'm developing AS3 project using Flash Builder 4.5 (also with library Away3D 4.0 and Flex 4.5.1 SDK). Also, I add my own SWC library, which I compile previously into my project. It works find if I import class in my SWC library, however I want my swf run in a stand-alone flash player 11. I follow this tutorial: http://help.adobe.com/en_US/flashbuilder/using/WSe4e4b720da9dedb5-4dd43be212e8f90c222-7ffb.html Now, I could run my app in a flash player 11, but I got an error in run time: VerifyError: Error #1014: XXX class could not be found And XXX is my class in SWC library. How should I fix this?

AS3 - TextField: Embedded font

眉间皱痕 提交于 2019-12-02 12:59:34
问题 This code will not render text to the screen. Changing, drawText.embedFonts = false; Renders text, but font size doesn't modify or the color. package { import flash.display.Sprite; import flash.text.TextField; import flash.text.TextFormat; import flash.text.*; public class DrawText extends Sprite { private var drawText:TextField; private var myFormat:TextFormat; [Embed(source="c:/windows/fonts/verdana.ttf", fontFamily="Verdana", embedAsCFF="false")] private var verdana:Class; public function