Re: [flex_india:34675] How to create Flipbook example

2011-11-13 Thread Олег Галабурда
Hi! Check this one, may be will help. Its for Flex 3, but works in 4.1 perfectly and may work in 4.5 or later. http://www.rubenswieringa.com/blog/flex-book-component-beta 2011/11/10 noorul ameen : > HI >  I need to create Flipbook in Flex 4.5 . Please any one give me the link > > > Thanks > Nooru

Re: [flex_india:34667] full screen

2011-11-09 Thread Олег Галабурда
Hi! You have not included error message. To enable fullscreen mode user-initiated action required. http://www.adobe.com/devnet/flashplayer/articles/fplayer10_uia_requirements.html 2011/11/9 vanathi : > i have been working enabling full screen mode in flex application > using keyboard event. i am

Re: [flex_india:34659] Adobe Air with .Net

2011-11-08 Thread Олег Галабурда
Hi! You can try 1. NativeExtension http://www.adobe.com/devnet/air/native-extensions-for-air.html 2. NativeProcess with rundll http://support.microsoft.com/kb/164787 3. Use local .Net(or any) socket server that will communicate with your AIR application and run any requested method from any DLL

Re: [flex_india:33748] How to read XML

2011-05-15 Thread Олег Галабурда
Hi! You can't. Only one attribute with the same name in the same namespace allowed for well-formed documents. You should change document format or load it in another way(load as string and parse by yourself). http://www.xmlnews.org/docs/xml-basics.html Read section 4. >From XML spec: Well-formedne

Re: [flex_india:33478] Flex vs other technologies

2011-04-16 Thread Олег Галабурда
Hi! What other RIA technologies? Can you call me tree RIA technologies that was successfuly launched and currently supported by author/manufacturer? Where do you see any brilliant "Development Environment" for Flash/Flex? Is any better than or good enough comparing with IDEs for Java, C++ or C#?

Re: [flex_india:33385] Compiler Switch in Flex

2011-04-03 Thread Олег Галабурда
This mechanism called "Conditional compilation" http://livedocs.adobe.com/flex/3/html/compilers_21.html#246171 The same, but for Flex 4 http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7abd.html 2011/3/30 savioseb : > Hi, > > is there any compiler level code switch I ca

Re: [flex_india:32788] Loading swf using bytearray inside AIR

2011-01-28 Thread Олег Галабурда
Hi! Have you fixed this issue? 2011/1/25 Ganga Ambika : > Hi, > > We have requirement with the AIR application which loads the flex generated > swf which loads the flash generated swf using SWFLoader. This is not working > as desired. This gives the following error: > SecurityError: Error #3226: C

Re: [flex_india:32334] Can we create new project from my flex application with coding?

2010-12-16 Thread Олег Галабурда
BTW, instead of ZIP you can use FXP extension - this is exported flash builder project. So, you can create a ZIP archive in your Flex application, then ask user to save ZIP file with FXP extension. After file saved it can be easily imported into Flash Builder. 2010/12/16 Олег Галабурда : > F

Re: [flex_india:0] Can we create new project from my flex application with coding?

2010-12-16 Thread Олег Галабурда
Flex application can ask user to save ZIP file. And this ZIP can contain everything that needed for project. 2010/12/15 amit shrestha : > with flex alone , definitely no, because there is no way you can access file > system. You will need a server [which the flex client connects] to do so. > How e

Re: [flex_india:32225] Need transliteration api

2010-12-02 Thread Олег Галабурда
Hi! Have you checked this? http://code.google.com/intl/uk-UA/apis/language/transliterate/overview.html 2010/12/1 sankarbala : > Hi guys, > > I need transliteration(which convert text to our native language. For ex: > english to tamil) api for my AIR Application. If anyone know, please give me > th

Re: [flex_india:32149] Embeding a .gif image through AnimatedGIFImage.as

2010-11-26 Thread Олег Галабурда
Hi! If you know the solution, why you did not provided it in previous mail? You can do this without permission, because anyone can face this problem again and may be your solution will help someone else. 2010/11/26 bindu madhavi : > is ur problem solved? > else i'll provide you the solution. > > >

Re: [flex_india:32148] Access global variables i Flex

2010-11-26 Thread Олег Галабурда
Hi! You can use FlexGlobals.topLevelApplication http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/core/FlexGlobals.html?filter_flex=4.1&filter_flashplayer=10.1&filter_air=2#topLevelApplication 2010/11/26 Pavan B : > Is there any option to a value in a variable (which is declar

Re: [flex_india:32072] Cleared Flex 4 Certification Exam

2010-11-22 Thread Олег Галабурда
Hi! Congratulations! Can you review this document https://docs.google.com/leaf?id=0B7j29UtS_d4zZjRiMmVkNzUtNjIzZS00YzYzLTk4MGQtNGQ1NjUwNTY4YjMz&hl=en&pli=1 and share useful documents or links that was not mentioned here to create complete list of materials. 2010/11/22 Saurabh Narula : > Hello Eve

Re: [flex_india:32052] How to remove Hash(#) symbol

2010-11-21 Thread Олег Галабурда
Hi! If you are looking the way to disable Flex URL navigation, since it uses JavaScript, you can disable it using HTML parameter: "allowScriptAccess" set its value to "never" for EMBED/OBJECT tags 2010/11/18 vincent : > hi > >   i m using tomcat server for my application ,remote object Blazeds

Re: [flex_india:31991] parsing parameter through AddEventListner

2010-11-16 Thread Олег Галабурда
Hi! You need to add a public getter, method or property("data" property in flex) to this button that will return configured URLRequest, something like this: public function getLink():URLrequest{ return new URLRequest('http://google.com'); } and inside your click handler you need to call this me

Re: [flex_india:31991] MouseOver, MouseOut issue Flex 4 !

2010-11-16 Thread Олег Галабурда
Hi! Try ROLL_OVER and ROLL_OUT events instead. 2010/11/16 vicky : > Hi all, > > Hope somebody knows what the problem could be in the following > situation. > > I have a togglebutton inside an applicationcontrolbar. When the button > is selected everything seems to be working fine. But when the bu

Re: [flex_india:31726] air autorefresh

2010-10-12 Thread Олег Галабурда
Hi! > how to make air application autorefresh? http://gregsramblings.com/2008/08/16/adding-auto-update-features-to-your-air-application-in-3-easy-steps/ -- Oleg Galaburda http://blog.actualwave.com/ http://jsinterface.googlecode.com/ http://guibuilder.org/ -- You received this message because

Re: [flex_india:31563] Automated tool for converting Flex project source code into Class diagram/Highlevel diagram

2010-09-28 Thread Олег Галабурда
Hi! Try UML4AS http://www.uml4as.com/flower-platform/ For pure AS3 you can try Enterprise Architect http://www.sparxsystems.com/products/ea/index.html 2010/9/28 Renu > Hi, > > I am looking for a tool which can take the source code of the Flex > project and can create a Highlevel diagram associa

Re: [flex_india:31543] Why Scrolls are not displayed Flex 4 as in Flex 3

2010-09-26 Thread Олег Галабурда
Hi! You need to use component Scroller, that enables scrolling functionality. This is container component, so place inside it anything you want to scroll. http://www.adobe.com/devnet/flex/articles/flex4_viewport_scrolling.html 2010/9/26 vishal lad > Hi Friends, >I have currenntly started wor

Re: [flex_india:31317] MySql, Flex and emailing

2010-09-04 Thread Олег Галабурда
You can't. You are going wrong way. This is completely server-side task, Flex -- client-side 2010/9/1 jasonwills : > i was wondering if anybody knew of a way i could send an email using > flex, when a date in mySql is nearing. > e.g. > i have an expiry date in a table in mysql and would like flex

Re: [flex_india:31285] Add check mark to context menu item when running in Web (not AIR)

2010-08-31 Thread Олег Галабурда
Hi! You can save menu item and change item label depending of it's internal state - checked or unchecked. This will look differently but may help if no other options. -- Oleg Galaburda http://blog.actualwave.com/ http://jsinterface.googlecode.com/ http://guibuilder.org/ -- You received this m

Re: [flex_india:31258] Regarding Movie clips

2010-08-27 Thread Олег Галабурда
Different scenarios: 1. Draw each frame into bitmap and display bitmaps as pages. 2. Load it twice and change instances with frames when scrolling, will look as usual if no "zoom out" control. 3. Convert PDF to bitmaps/SWFs(file per page) instead one movie. 2010/8/26 : > Hi Flexions, > > I have c

Re: [flex_india:31253] an action script error(Photo Gallery)

2010-08-27 Thread Олег Галабурда
First of all ask client to update flash player and run only HTML file(not SWF directly). 2010/8/27 NavaneethaNagapoori : > hi all, > my project is about photo gallery > i have sent Release Build folder to client and he is unable to open ,getting > error as  "an action script error". Whereas it is

Re: [flex_india:31238] Creating a Rich Text Editor

2010-08-27 Thread Олег Галабурда
Hi! Here sources of Simple Text Editor. http://blog.flexexamples.com/2009/07/25/exporting-a-textflow-object-in-flex-4/ 2010/8/26 Flex Fanatic : > Hi Guys, > I am starting on a new project of creating a Rich Text Editor, this > editor has to support pages, tables, bullets, image wraps . Any idea >

Re: [flex_india:31238] How to access the notepad.exe in desktopbased application

2010-08-27 Thread Олег Галабурда
Hi! You need to create empty TXT file and call default appliation for this file type. Only for AIR 2.0 http://www.gotoandlearnforum.com/viewtopic.php?f=33&t=27621 2010/8/26 hari : > Hi Folks, > > I want to access notepad.exe and onscreen keyboard from my windowed > application can any one can hel

Re: [flex_india:31222] Regular Expression For Folder Name

2010-08-24 Thread Олег Галабурда
Hi! You are used wrong quantificator -- empty string will be valid folder name. :) You may use {1,} var regexp:RegExp; var string:String; regexp = /^[^\\\/:*?"<>|]{1,}$/g; // unicode folder name string = 'EH\'46u4 6y4y6ХШЩзшщртіЇ'; // valid unicode folder name trace(string.match(regexp));

Re: [flex_india:31077] Flex 4 ACE Certification Cleared successfully

2010-08-10 Thread Олег Галабурда
Hi! Congratulations! Don't you think that posting exact questions of exam is not good point to help people? IMHO, clues are welcome but posting exam questions you are breaking the rules. >  With our effort to recall the questions asked, >  Here we list Some of the questions we got today (45 /59):

Re: [flex_india:31077] How can I get to know this url is a video url ?

2010-08-10 Thread Олег Галабурда
Hi! You can try to "touch" it using URLStream to get HTTP headers. If server can not return correct HTTP headers, use URLLoader to load file header and check PROGRESS event for loaded bytes and close connection when more than 10 bytes(for example) loaded. 2010/8/10 朱传明 : > Hi,all: > > I have a que

Re: [flex_india:28436] Is Flex XML parser a DOM parser analogous to Java?

2010-02-11 Thread Олег Галабурда
> Can anyone please tell me if we can relate XML parsing in Flex (non > E4X type) with DOM (Document Object Model) or SAX (Simple API for XML) > parsing technique of Java XML parsing. Use flash.xml.XMLDocument instead of XML to parse RAW data and you will get DOM API. > Also does Java has E4X par

Re: [flex_india:27350] Re: DOJO With Flex

2009-12-16 Thread Олег Галабурда
Hi! > U can call javascript using ExternalInterface > http://www.adobe.com/livedocs/flex/3/langref/flash/external/ExternalInterface.html Also you can use ExternalInterface wrapper called JSInterface. http://code.google.com/p/jsinterface/ -- Oleg Galaburda http://blog.actualwave.com/ http://jsi