Re: TabbedViewNavigatorApplication chrome color

2015-09-18 Thread sam991
Hi everyone, My issue has been resolved, by trying out these two lines. First one is to use the same old themes: -includes=mx.utils.LegacyMobileThemeOverride And, second makes simulator perform or makes the application display same as original deployment Also you may please check the reference

Re: TabbedViewNavigatorApplication chrome color

2015-09-03 Thread sam991
No, they are not supporting. Thanks. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/TabbedViewNavigatorApplication-chrome-color-tp11136p11142.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

TabbedViewNavigatorApplication chrome color

2015-09-03 Thread sam991
Hi Om Prakash, I mean i was testing an application on mine because it was not compiling in standard mode reference to this http://apache-flex-users.246.n4.nabble.com/Flex-Mobile-Application-not-compiling-in-standard-mode-td11020.html

ESRI Map offline

2015-08-30 Thread sam991
Hi, I am making a new flex mobile application and i am willing to use an ESRI offline map, so show up the contents when on map when internet facility is not available. Any ideas on to progress with this? Thanks -- View this message in context: http://apache-flex-users.246.n4.nabble.com/

Re: Flex Mobile Application not compiling in standard mode

2015-08-30 Thread sam991
Thankx qucick6black. it worked. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flex-Mobile-Application-not-compiling-in-standard-mode-tp11020p11092.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Flex Mobile Application not compiling in standard mode

2015-08-24 Thread sam991
I am generating .ipa file only. But, i am also using a esri map with in my application. Without the map the application is compiling in standard mode (In Windows with 6GB of RAM) as well, but with map it generates error and stops. -- View this message in context: http://apache-flex-users.24

Flex Mobile Application not compiling in standard mode

2015-08-24 Thread sam991
Hi, i am using Flash builder 7.7 and 4.12.0 sdk for making my Flex Mobile applications using esri map in it. But, when it comes to compiling for iOS in standard mode, this gives java run time exception, whereas the application get compiled in fast mode and runs on iPad. Does, anyone knows what mi

Video not playing in android 4.4

2015-03-01 Thread sam991
Hi everyone, I have developed a Flex Mobile Application for playing video files for android mobiles. I have used video player for this and is working fine previous versions of android. When i am trying to play the video in Android 4.4.2 audio is audible but video is not playing. and on clicking th

Expand and Collapse columns of Advanced Data Grif

2015-01-16 Thread sam991
hi everyone, I am adding dynamic columns to an advanced data grid, in this i am also using advanced data grid grouped columns, now i want to expand and collapse the sub columns of grouped columns. Is their any idea how is it possible? Thanks, Samarth -- View this message in context: http://

Re: Dynamic Item Editor for Advance Data Grid

2014-11-06 Thread sam991
SalesRTMM1.mxml Please check the following file, for what i have done till now. May be you all will get to know what i am trying to achieve. Thanks, Samarth -- View this message in context: http://apache-flex-users.

Re: Dynamic Item Editor for Advance Data Grid

2014-10-31 Thread sam991
I have tried doing the same, but when i click the text input, it shows null value. i have used text={data.@fieldname} Thanks, Samarth -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Dynamic-Item-Editor-for-Advance-Data-Grid-tp8564p8566.html Sent from the Apach

Dynamic Item Editor for Advance Data Grid

2014-10-31 Thread sam991
I have been working on AdvanceDataGrid for quite some time now. Facing an issue w.r.t. item editors. The grid generates columns at run-time, using an object of advance-datagrid-column. I have added an item editor at run-time(say for a loop of 6): adgc.itemEditor = new ClassFactory(ItemRenderer4);

Download Files

2014-08-28 Thread sam991
Hi everyone, I am making a Flex Mobile Application, i wish to download any type of file within my application (for example: folder specified), so that i can use the same file for other purpose as well. I have seen this link http://stackoverflow.com/questions/9702169/flex-air-mobile-file-download

Re: Google Map Javascript v3 API in Flex

2014-05-19 Thread sam991
It worked thanks, but my map is coming at the bottom of my page.. How can i make it available in whole page? -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Google-Map-Javascript-v3-API-in-Flex-tp

Re: Google Map Javascript v3 API in Flex

2014-05-19 Thread sam991
As per your reply i have used this code to display map in my browser with my flex application http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" xmlns:flexiframe="http://code.google.com/p/flex-iframe/"; xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%

Google Map Javascript v3 API in Flex

2014-05-18 Thread sam991
Hi everyone, How can i use Google Map Javascript v3 API in my Flex desktop application. I have seen some example but they were using stageWebView to display map. But, in this case i won't be having any control over the map. So, i want some thing else -- View this message in context: http://apa

Re: AW: Displaying HTML content in Flex Mobile Application

2014-05-06 Thread sam991
Yes Daniel, I am targeting all 3 platforms (iOS, Android, and windows) For iOS and Windows this stagewebview works fine but for Android i am using navigateToURL() which visits the browser and downloads it and help user to view it. -- View this message in context: http://apache-flex-users.2

Play video using FMS in iPad

2014-05-06 Thread sam991
Hi everyone, I have been doing this for about a week now, but haven't found any solution yet. I have followed tutorials from this link: http://www.adobe.com/devnet/adobe-media-server/articles/install-verify.html I do

Re: Displaying HTML content in Flex Mobile Application

2014-05-02 Thread sam991
my code to display PDF is this: pdf = new File(File.applicationDirectory.resolvePath("images/" + Global.selectedPDF).nativePath).url; stageWebView = new StageWebView(); stageWebView.stage = this.stage; stageWebView.viewPort = new Rectangle(0, 87, 715, 606); stageWebView.loadURL(pdf); When i run

Re: Displaying HTML content in Flex Mobile Application

2014-05-02 Thread sam991
Basically i wanted to display PDF in stagewebview And, hopefully i am able to display pdf as well but my content is displayed completely. Content is hidden as i adjust my new Rectangle(0, 0,715,606) to (305,87, 715,606) -- View this message in context: http://apache-flex-users.246.n4.nabbl

Displaying HTML content in Flex Mobile Application

2014-05-02 Thread sam991
Hi everyone, How can i display HTML content in WebStageWeb in my flex mobile application I have used this code to display simple HTML content, but now i want to display some files via same method. var htmlString:String = "" + "" + "King Philip could order five good steaks." + ""; stageWebView =

Using Red5 Server in Flex Mobile Application

2014-04-28 Thread sam991
Hi everyone, Is their any way to use Red5 Server to play videos from server in my flex mobile application -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Using-Red5-Server-in-Flex-Mobile-Application-tp6312.html Sent from the Apache Flex Users mailing list archiv

Re: How to play video from server in flex

2014-04-15 Thread sam991
Hey Tom, my videos are recorded, and are placed on server. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/How-to-play-video-from-server-in-flex-tp6125p6130.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: How to play video from server in flex

2014-04-15 Thread sam991
Tell me about any process which can be used to play video in any OS i.e. (iOS, Android, and Windows) -- View this message in context: http://apache-flex-users.246.n4.nabble.com/How-to-play-video-from-server-in-flex-tp6125p6129.html Sent from the Apache Flex Users mailing list archive at Nab

How to play video from server in flex

2014-04-15 Thread sam991
Hi everyone, Earlier i asked you all about playing video in iOS, which i could very well from local files. Now, i have got some thing new for me to do. Now, i have to play video from server in all (iOS, Android, and windows tab). I got a way to play files through Adobe Media Server, and i downlo

Re: Not able to play video in my iPad

2014-04-10 Thread sam991
Hi everyone, Finally i have resolved my problem of playing video in my iPad. This link below helped me solving it. We have to change the compilier settings as well as render mode also. And, i have used StageWebView to play videos. Thank you everyone for your replies. http://www.unfetteredthought

Re: Not able to play video in my iPad

2014-04-05 Thread sam991
videoDisplay.as Hi, i have done a line by line debugging for both android tab and for iPad. I am attaching a videoDisplay.as file with this reply. This file is responsible for playing videos for in-built videoPlayer in

Re: Not able to play video in my iPad

2014-04-04 Thread sam991
I have tested my video files by directly playing on my iPad, they are playing fine. What can i assume from it is that their might not be any encoding issues. Any ideas now. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Not-able-to-play-video-in-my-iPad-tp5932p

Re: Not able to play video in my iPad

2014-04-03 Thread sam991
I have just downloaded a video from youtube, and tried playing it. But, that video is not playing as well. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Not-able-to-play-video-in-my-iPad-tp5932p5992.html Sent from the Apache Flex Users mailing list archive at N

Re: Not able to play video in my iPad

2014-04-03 Thread sam991
I have checked my ipa file. Opening it with winzip i found the assets folder and my mp4 files are there. >From this link: http://www.overdigital.com/2012/01/14/720p-video-on-ipad-and-android-tablets-with-adobe-air/

RE: Not able to play video in my iPad

2014-04-03 Thread sam991
I have included my file with my application while packing it for iOS. Then, i think their might be some other issue from within which is not letting the video to play -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Not-able-to-play-video-in-my-iPad-tp5932p5962.ht

RE: Not able to play video in my iPad

2014-04-03 Thread sam991
I have included my video files while packing my application for iOS. Then, i think their might be some other thing which is creating some issue from within and letting the video play. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Not-able-to-play-video-in-my-iP

Re: Not able to play video in my iPad

2014-04-03 Thread sam991
Hey, i just wanted to know that how will i check that my files embedded in my iOS application. I was thinking that i will some some way to figure it out, but i couldn't. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Not-able-to-play-video-in-my-iPad-tp5932p595

Re: Not able to play video in my iPad

2014-04-03 Thread sam991
I will recheck for the files again. When i try to play video via inbuilt video player of flex then i have given path to ups3.mp4 and when i try to play video via stagevideo i have given path to part1.mp4 -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Not-able-

Re: Not able to play video in my iPad

2014-04-03 Thread sam991
In this line of code i get the path to my video file. I have tab navigator view in which when selecting the first tab plays different videos, on selecting second it plays different video and so on. This is result on debugging -

Re: Not able to play video in my iPad

2014-04-03 Thread sam991
I am using the same code. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Not-able-to-play-video-in-my-iPad-tp5932p5948.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Not able to play video in my iPad

2014-04-03 Thread sam991
If i use this: var sv:StageVideo = stage.stageVideos[0]; instead of var sv:StageVideo = new StageVideo(); then i don't get the error, as i showed in previous reply. But, with this little modification in code, result is still the same. video is not playing -- View this message in context: http

Re: Not able to play video in my iPad

2014-04-02 Thread sam991
I got this error in catch function i just added as you said in ns. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Not-able-to-play-video-in-my-iPad-tp5932p5940.html Sent from the Apache Flex U

Re: Not able to play video in my iPad

2014-04-02 Thread sam991
Hi, I have used code to play video both in android tab and my iPad, with code video plays very well in android tab and in iPad only video player is displayed and nothing happens. protected function init():void { try { vp.sourc

Not able to play video in my iPad

2014-04-02 Thread sam991
Hi every one, I am developing a flex mobile application which runs video in call out. This is running perfectly in android tabs, but when i compile my code for my iPad i only see video player, but their is no sound and video playing. I have tried many things to resolve my problem, but nothing help