flex4

WebORB5 installation in Visual Studio2013 Project

纵饮孤独 提交于 2019-12-11 20:07:20
问题 I'm trying to install a WebORB in a testing new ASP.NET4.5 Project visual Studio2013. I'm using this manual WebORB4Net.pdf, Ref 6.1 Installation From Zip, 6.3-Installing WebORB into existing ASP.NET application. But when I'm try to surf to this directory http://localhost/MediaServer/weborbconsole.html , i'm getting this error First error screen : Server reported an error: Send failed second screen clicking on Ok : SECURITY:Send failed Third: SERVICES: faultString:'Send failed' faultDetail:

Flex id contentGroup query

帅比萌擦擦* 提交于 2019-12-11 19:22:26
问题 iam learning Flex and practising skins. So, i just had one doubt: I have written one custom skin named : ApplicationContainerSkin.mxml <?xml version="1.0" encoding="utf-8"?> <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> <s:states> <s:State name="normal" /> <s:State name="disabled" /> </s:states> <fx:Metadata> [HostComponent("spark.components.Application")] </fx:Metadata> <fx:Declarations> <!-- Place

Get changed value of Item from ItemRenderer in List

泪湿孤枕 提交于 2019-12-11 18:25:46
问题 I have a List with textInput as itemrenderer. Initially the list is loaded with data from a data provider. However since the items are rendered in textInputs, I have the ability to change the value of a particular item. But when trying to access the value of the changed item using the function below, I still get the old value in my trace: private function addItem(event:Event):void { trace(myDataProvider.getItemAt(myList.selectedIndex).label); } can someone tell me what I need to do for the

Flex textArea remove/replace invalid little squares

半腔热情 提交于 2019-12-11 18:15:02
问题 This is related to my previous Flex issue: Flex TextArea - copy/paste from Word - Invalid unicode characters on xml parsing But this is slightly different & seems to be the issue. So I had to create another thread for this. When I copy/paste text from word to a text area, I do not see any invalid characters. But when I pasted the same text on this url: http://blog.flexexamples.com/2008/03/07/preventing-line-feeds-in-a-textarea-control-in-flex/ I'm seeing a little square " ". Please paste this

Flex make image full screen

五迷三道 提交于 2019-12-11 17:26:36
问题 when i run the image, it only appear in center with 2 blank white space in between. <s:Image x="0" y="0" height="100%" width="100%" source="@Embed('assets/d.jpg')"/> How can i make an image goes full screen (covering up the whole screen) with double tap/touch on mobile app? And if possible how to turn it back to non-full screen (back to normal)? thanks. image size: W=1920, H=1200 回答1: To remove the white bars you're going to have set the scaleMode of the Image tag. The default is Letterbox;

Check transparency

*爱你&永不变心* 提交于 2019-12-11 17:16:28
问题 I have swf file(900x600) and main part of that file is transparense. So I want by clicking in swf file know either user clicks on transaprent part of image or not... I can get mouse coordinates by event.localX event.localY So how to know in clicked part swf is transparent or not? 回答1: First of all, be sure, that you have some transparent sprite on background of your swf - otherwise you won't receive event. Second, do not use pure local coordinates, they can contain local coordinates of

Flex 4 with PHP and BulkLoader - Assets getting deleted

余生颓废 提交于 2019-12-11 16:49:23
问题 Has anyone ever encountered a situation where your assets (image png files) got deleted from your web path? Let me explain it little more clearly. I am loading some images located in my localhost (not in flex4 application path) from my flex4 application using the loader and also with BulkLoader This is the second time it happened that some of the images got deleted from the path which are in localhost. I am not sure what is causing this? is that the loader? or bulkloader or the webserver?

How to define a new kind of scope in Maven?

点点圈 提交于 2019-12-11 16:15:57
问题 In order tell the Flexmojo Maven plugin that your project should use a particular theme, it is necessary to add a scope "theme" dependency to your project like this: <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>spark</artifactId> <version>4.1.0.16076</version> <type>swc</type> <scope>theme</scope> </dependency> This works fine, but produces the following scary looking warning: [WARNING] Some problems were encountered while building the effective model for com.mycorp

Event is not being triggered for Geolocation in Flex

前提是你 提交于 2019-12-11 16:06:43
问题 I created a button that looks up the coordinates of the device. There is no errors in the code but for some reason which is eluding me, the event is not being triggered. Here is my code: protected function lblCheckIn_clickHandler(event:MouseEvent):void { if (Geolocation.isSupported) { lblLat.text = "Finding Location..."; geo.addEventListener(GeolocationEvent.UPDATE, onUpdate); } else { lblLat.text = "Geolocation is not supported on this device."; } } Later on I have the event code: protected

how to navigate in spark list control?

会有一股神秘感。 提交于 2019-12-11 15:34:57
问题 I'm building a mobile app, using spark list control. When user tap on a list item, i want it to navigate to that correspondence page <s:List id="list" width="100%" height="100%" labelField=" label"> <s:dataProvider> <s:ArrayList> <fx:Object label="Page One" /> <fx:Object label="Page Two" /> <fx:Object label="Page Three" /> <fx:Object label="Page Four" /> </s:ArrayList> </s:dataProvider> </s:List> how do i code it so that when user tap on item label="Page One" it will navigate to PageOneView