Re: [flexcoders] Embed pdf in Flex?

2010-01-29 Thread Abdul Qabiz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There is no official way of doing it in Flex i.e. Flash Player doesn't support embedding PDF. Having said that, there are some actionscript libraries around that would help you read and render PDF documents in Flash Player. I am not aware of any

Re: [flexcoders] Adobe Developer Connection Downloads

2010-01-29 Thread Abdul Qabiz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 That would be interesting to have. I have not investigated whether they use RTMP or Progressive(HTTP) video streams. It might not be legal, but one can easily write some sort of script to save http-streams to disk. I have feel, Adobe uses

Re: [flexcoders] swf not showing up the right size

2010-01-29 Thread Abdul Qabiz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I don't use FlashBuilder, but I believe you don't edit html inside bin-debug, rather at different place html-template? - -abdul On 29/01/10 7:00 AM, Calbeans wrote: Hi All, I come from working in the Flash IDE and just moved over to

Re: [flexcoders] migration xml to json ??

2008-01-28 Thread Abdul Qabiz
Well it depends on your XML structure. You would have to change your code (bindings etc). There is JSON library available as a part of as3corelib project.. http://code.google.com/p/as3corelib -abdul On Jan 28, 2008 5:26 PM, sondang paruliant [EMAIL PROTECTED] wrote: dear all I was made

Re: [flexcoders] Role based rendoring of MXML components - visibility and editability

2008-01-28 Thread Abdul Qabiz
I would not do any such role-based things on client, it's very easy to spoof http packets and a normal user can get access to Admin UI... Just be careful with that... If you have solid way to avoid any such security issues, go ahead. -abdul On Jan 28, 2008 8:49 PM, Paul Andrews [EMAIL

Re: [flexcoders] Re: Yahoo Maps AS3 integration problem

2008-01-28 Thread Abdul Qabiz
crossdomain.xml on Yahoo! img servers doesn't allow all domains except Yahoo! servers.. As someone pointed out above, proxy is other option but you might need to change Yahoo! AS3 map's code so that it loads images via proxy...Be careful, it's gonna eat a lot of bandwidth and if your site is

Re: [flexcoders] a rather odd thing about ResourceBundle

2008-01-28 Thread Abdul Qabiz
How does the directory structure look like? is assets1 folder inside en directory? -abdul On Jan 28, 2008 2:33 PM, li_rang [EMAIL PROTECTED] wrote: Hi,All, I am creating an application for three languages. To make things easier, I am using resource bundle to manage images, (you know,

Re: [flexcoders] Using HTTPService with a TileList

2008-01-10 Thread Abdul Qabiz
click=HTTPService.send()/ It should be:- click=tempXML.send () -abdul On Jan 10, 2008 11:24 PM, markcavins [EMAIL PROTECTED] wrote: I have also tried to change the way that I get the data to Code: mx:HTTPService id=tempXML url=

Re: [flexcoders] can we control flashCS3 movies from flex

2008-01-10 Thread Abdul Qabiz
Is your SWF using ActionScript3? If yes, then you can pretty much control it from Flex 2 application. If it uses ActionScript 2, then you might consider using LocalConnection or ExternInterface. AVM- (SWF which use ActionScript 2 or below) and AVM+ (SWF which uses ActionScript 3 or above)

Re: [flexcoders] Populating comboBox

2008-01-10 Thread Abdul Qabiz
ComboBox or most of the list-base components expect label and data properties in dataProvider. If your dataProvider has different properties, you can use the labelField or labelFunction fields to show the label (which in this case is showing [Object Object]). Check out the ComboBox (or Listbase)

Re: [flexcoders] Massive Error for login script

2008-01-10 Thread Abdul Qabiz
Probably, your login script on server-side is throwing some error when it sees the wrong data... What happens, if you copy paste URL in browser (not in flex app):-

Re: [flexcoders] Re: HTTPService, POST, and QueryString

2008-01-10 Thread Abdul Qabiz
If it's PHP on server, you can use $_REQUEST for POST or GET data. Not sure, if URLLoader would let you load a URL with a query-string at the same time posting the data to it? -abdul On Jan 10, 2008 8:55 PM, Jim Hayes [EMAIL PROTECTED] wrote: I'm pretty sure that if you use POST in flex

Re: [flexcoders] FileReferenceList for Downloads?

2008-01-10 Thread Abdul Qabiz
I think, it's not hard to build that using Flex? I would probably do this:- 1) Load a list of files in server-directory, in flex UI (pretty trivial stuff). 2) Let user select bunch of items (shown in TileList or List or whatever control) 3) Use FileReferenceList to initiate download We should

Re: [flexcoders] FLV dimensions from Flex or CF

2008-01-10 Thread Abdul Qabiz
FLV metadata contains it's dimensions, provided if right tool was used to encode the video to FLV. In any case, you can use open-source tool called flvtool2 (it's written in ruby and open-source) and hook it with your Upload process, so you can run this tool on uploaded flv file. This way, you can

Re: [flexcoders] crossdomain not working with HTTP Request Error

2008-01-10 Thread Abdul Qabiz
Not sure, Flash Player 9,0,115,0, has some new rules for crossdomain data and socket... Check out the security article: http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_print.html I doubt, does it have to do with port number. Remember, www.yourserver.com:80 and

Re: [flexcoders] parseFloat vs Number

2007-10-31 Thread Abdul Qabiz
Is there anything that Number() parses that parseFloat doesnt? There are differences:- 1) Number is type where as parseFloat () is a global-function 2) Number (x) tries to cast x to Number where as parseFloat (x) reads, or * parses*, and returns the numbers in a string until it reaches a

Re: [flexcoders] SOUND_COMPLETE event not firing?

2007-10-31 Thread Abdul Qabiz
There are some mp3 files with silence in the end or not proper end-of-file bytes... Sometimes it fires after some delay. Does it never fire in ur case? Not sure what is the exact problem, it also happens with FLVs... You might want to have a timer running that checks if sound is not buffering

Re: [flexcoders] fetching unicode characters

2007-10-31 Thread Abdul Qabiz
); } ]] /mx:Script mx:TextArea id=console width=100% height=100%/ /mx:Application On 10/31/07, Abdul Qabiz [EMAIL PROTECTED] wrote: I just tried to load one of W3C UTF-8 tests, it seems to be working fine... http://www.w3.org/2001/06/utf-8-test/UTF-8-demo.html

Re: [flexcoders] Re: parseFloat vs Number

2007-10-31 Thread Abdul Qabiz
wasnt really asking what the difference is between Number and parseFloat I was asking more specifically about the difference between Number and parseFloats string parsing capabilities. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote

Re: [flexcoders] Is it possible to save an FLV to a Shared Local Object and open it later ?

2007-10-30 Thread Abdul Qabiz
I can image that i can be saved by using URLStream (to read) and ByteArray to store. But how you would play it again? Not sure, if Video class can take ByteArray to play video... Can Video class consider FLV as embedded video (which in my opinion is different)? -abdul On 10/30/07, helihobby

Re: [flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-30 Thread Abdul Qabiz
: a)bytearray to base64 string: http://www.dynamicflash.com/goodies/base64 b)base64 to byte[] in java: http://www.source-code.biz/snippets/java/2.htm - Original Message From: Abdul Qabiz [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 30, 2007 12:23

Re: [flexcoders] fetching unicode characters

2007-10-30 Thread Abdul Qabiz
Flash Player has UTF/Unicode capabilities for sometime. You can just request using and pass the string to textarea.. I am not sure about Unicode sequences though? Someone might confirm here.. -abdul On 10/30/07, Aditya Kumar [EMAIL PROTECTED] wrote: Hi, Can anyone please tell me how to

Re: [flexcoders] fetching unicode characters

2007-10-30 Thread Abdul Qabiz
%/ /mx:Application On 10/31/07, Abdul Qabiz [EMAIL PROTECTED] wrote: Flash Player has UTF/Unicode capabilities for sometime. You can just request using and pass the string to textarea.. I am not sure about Unicode sequences though? Someone might confirm here.. -abdul On 10/30/07, Aditya Kumar [EMAIL

Re: [flexcoders] HTTP Cookie via ActionScript

2007-10-29 Thread Abdul Qabiz
Hi, I am also confirming this is an issue with current beta player on labs. Not sure if it is intentional or a bug? -abdul On 10/27/07, Abdul Qabiz [EMAIL PROTECTED] wrote: It seems to be Flash Player changes, what player version are you using? -abdul On 10/25/07, Sandeep Malik [EMAIL

Re: [flexcoders] dynamic images and copy protection

2007-10-29 Thread Abdul Qabiz
You can load images over URLStream or load images via server-side script that sets expire headers... You can load images over socket, it wouldn't go to browser cache at all :) -abdul On 10/29/07, flashcrow2000 [EMAIL PROTECTED] wrote: Another crazy idea from my clients :). I need to load

Re: [flexcoders] Re: FileReference upload passing parameters in URLRequest

2007-10-29 Thread Abdul Qabiz
the parameters to be passed correctly. Thanks. Ban --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Abdul Qabiz abdul.qabiz@ wrote: Note sure, but you might need to set the method in URLRequest. request.method = URLRequestMethod.POST; -abdul On 10/29/07

Re: [flexcoders] Re: crossdomain.xml... real or not-so-real security?

2007-10-29 Thread Abdul Qabiz
really provides very little security at any layer. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: If that same evil person can get to your hosts file, that's the fault of the OS and not Flash. Yup! Machine is already compromised

Re: [flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-29 Thread Abdul Qabiz
to send. On the server side, I see the data in a byte array but am not sure how to pull this inot a variable. Any samples from either php or java? Thanks, Jeff --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Note sure, if HTTPService

Re: [flexcoders] FileReference upload passing parameters in URLRequest

2007-10-28 Thread Abdul Qabiz
Note sure, but you might need to set the method in URLRequest. request.method = URLRequestMethod.POST; -abdul On 10/29/07, letterpigeon [EMAIL PROTECTED] wrote: Hi all, I'm having this strange problem while uploading file in flex using FileReference, that even though I set the the

Re: [flexcoders] crossdomain.xml... real or not-so-real security?

2007-10-28 Thread Abdul Qabiz
and not Flash. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Abdul Qabiz *Sent:* Friday, October 26, 2007 1:40 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] crossdomain.xml... real or not-so-real security

Re: [flexcoders] Re: removechild and addchild cause flickering , help~

2007-10-28 Thread Abdul Qabiz
Yup! To avoid that you can load the image in other loader and swap it once it's loaded...Something like double-buffering.. -abdul On 10/29/07, Alex Harui [EMAIL PROTECTED] wrote: Image loading is asynchronous and could take any number of frames on a slow network.

Re: [flexcoders] JS - How to send a byteArray using HTTPService??

2007-10-28 Thread Abdul Qabiz
Note sure, if HTTPService allows anything beyond text You can use URLLoader to send the data to server.. -abdul On 10/25/07, Jeff Schuenke [EMAIL PROTECTED] wrote: Hello All, I need to do a screen capture of a UIComponenet and allow the user to save this to their local drive. I

Re: [flexcoders] crossdomain.xml... real or not-so-real security?

2007-10-26 Thread Abdul Qabiz
Isn't it like running a standalone SWF which can access network and local data (provided u have right trust config)? Why to run a internal server and create host entry? SWF in AIR/Standalone can access data from foo.com. Can you put (give an example) this use-case in context of internet (public)?

Re: [flexcoders] HTTP Cookie via ActionScript

2007-10-26 Thread Abdul Qabiz
It seems to be Flash Player changes, what player version are you using? -abdul On 10/25/07, Sandeep Malik [EMAIL PROTECTED] wrote: Guys, We're using flex 3 beta 2 for some project and we're seeing this message: Error #2096: The HTTP request header Cookie cannot be set via ActionScript.

Re: [flexcoders] Detecting a variable change

2007-10-26 Thread Abdul Qabiz
You can look at Binding (if it's Flex App) or flash.utils.Proxy class... You can watch variable and do whatever you want.. -abdul pretend we have a custom component with the code below. The langType variable is bound to another variable in the main application, and I want it to run the

Re: [flexcoders] Class Socket

2007-10-26 Thread Abdul Qabiz
Hi, You can read and write data (file content) using Socket. If you are talking about a scenario, where you want user to choose a file using FileReference dialogue box and send the file over socket, that's wouldn't work in Flex apps running in Flash Player. AIR apps can read file content and do

Re: [flexcoders] webparts in flex?

2007-10-23 Thread Abdul Qabiz
Ok, I just looked at webparts documention, if I am not wrong it's all about personalization. Something like iGoogle, My Yahoo! etc.. You can change color, add widgets/controls, move things around, maximize-minimize etc... Adobe Flex doesn't come with personalization classes (though it would be

Re: [flexcoders] select folder using FileReferenceList

2007-10-22 Thread Abdul Qabiz
Not sure, you can do that. User can select all files within folder. -abdul On 10/23/07, Shailesh Mangal [EMAIL PROTECTED] wrote: Hi all, I want user to select a folder but fileFilter only allows to filter (and select) files. Is there a way where I can show user the file browse dialog and

Re: [flexcoders] TabNavigator with Local tag ..

2007-10-22 Thread Abdul Qabiz
Hi, While building RIA using Flex or AJAX, we think in terms of views instead of pages. We can consider each tab is a different view, each view could be a separate (or same) component/module... We can create views either by using inline tags or using components (actionscript or mxml). f.ex: ##

Re: [flexcoders] youtube

2007-05-05 Thread Abdul Qabiz
I have been posting lots of details on YouTube... You can search my blog: http://www.abdulqabiz.com/blog/ using this link *http://tinyurl.com/2uoltz *You can even find things like, getting FLV URL on client side without even using server-side proxy, some sample apps playin YouTube Video etc. *

Re: [flexcoders] Flash cache probem when flash is embedded in a asp.net page

2007-05-05 Thread Abdul Qabiz
You need to check if code in your ASPX page is setting HTTP requests headers such that content expires? Also check if the SWF path is static instead of a different or unique URL everytime it loads... Make sure, you are not appending any random string to SWF path... -abdul On 5/5/07, wpding

Re: [flexcoders] Stopping embedded flash in Flex

2007-05-05 Thread Abdul Qabiz
There is no interoperability between AS3 and AS2 apps that means you can't control or invoke anything in loaded SWF8 ( or less) from a SWF9 or more.. There are workarounds which use LocalConnection or ExternalInterface to achieve that. Infact, there are some projects around this problem.

Re: [flexcoders] Re: Alert Control Crashing App

2007-04-27 Thread Abdul Qabiz
Ok, I tried running your app. It seems, it gets into recursion somewhere and that's where Flash crashes.. -abdul On 4/26/07, Troy A. Binford [EMAIL PROTECTED] wrote: I updated to version 9.0.45.0 that was released april 12. The code still crashes to a large stack dump and an undefined

Re: [flexcoders] Re: Alert Control Crashing App

2007-04-27 Thread Abdul Qabiz
It seems, itemEditEnd event handler is getting invoked recursively, you might to look at it... -abdul On 4/27/07, Abdul Qabiz [EMAIL PROTECTED] wrote: Ok, I tried running your app. It seems, it gets into recursion somewhere and that's where Flash crashes.. -abdul On 4/26/07, Troy A. Binford

Re: [flexcoders] embedding multiple images programmatically

2007-04-27 Thread Abdul Qabiz
Embedding the image in your application would increase the application filesize. I would rather suggest you to think of loading these images on runtime. You can load images on runtime using mx;Image or any other class (Loader etc)... -abdul On 4/28/07, dougco2000 [EMAIL PROTECTED] wrote:

Re: [flexcoders] embedding multiple images programmatically

2007-04-27 Thread Abdul Qabiz
mx:Image source=http//server/image.png / var image:Image = new Image (); container.addChild (image); image.source = http://foo.com/test.png;; -abdul On 4/28/07, Abdul Qabiz [EMAIL PROTECTED] wrote: Embedding the image in your application would increase the application filesize. I would

Re: [flexcoders] FileReferenceList

2007-04-26 Thread Abdul Qabiz
1. how to trace values in console panel? Use trace (..) statement. You might need to configure/create mm.cfg on your machine. Check this link: http://livedocs.adobe.com/flex/201/html/logging_125_04.html 2. I have to create flv palyer in Apollo. Read the documentation and write it. Check

Re: [flexcoders] Problem using a subclass of ComboBox in actionscript

2007-04-26 Thread Abdul Qabiz
Can you share the code? That helps understanding whats wrong.. It might be something with subclass code or the way you are trying to instantiate. -abdul On 4/26/07, johnknyc [EMAIL PROTECTED] wrote: Hi all, I created a AS subclass of ComboBox. I can use the subclass in MXML, however when

Re: [flexcoders] Different webservice results in IE and Firefox

2007-04-26 Thread Abdul Qabiz
hmm...I have never seen such problem? What do you see if you look at HTTP traffic using firebug or livehttpheaders? Do you recieve same or different data before it goes to Flash Player? -abdul On 4/27/07, manfred.maierhofer [EMAIL PROTECTED] wrote: Hey guys, I have a really strange

Re: [flexcoders] javascript-flex/actionscript communication

2007-04-11 Thread Abdul Qabiz
Just noticed, it's documented in Flex 2.0.1 docs. http://livedocs.adobe.com/flex/201/langref/flash/external/ExternalInterface.html#addCallback() SecurityError — The containing environment belongs to a security sandbox to which the calling code does not have access. To fix this problem: In

Re: [flexcoders] Re: Control of SWF in SWFLoader

2007-04-11 Thread Abdul Qabiz
Hi, AFAIK, you can not control an ActionScript 2 movie from ActionScript 3 movie. The possible ways are:- 1) Use LocalConnection 2) Use ExternalInterface (not recommended at all). #1 has been used by many folks (Yahoo! Maps and many others) and there are couple of projects around that

Re: [flexcoders] Accurate timing with flash

2007-04-11 Thread Abdul Qabiz
I want to be able to perform a particular operation on a number of separate, unconnected clients on exactly the same moment(e.g. they should start blinking a piece of info at exactly the same moment with the same blinking frequency). same moment relative to other unconnected clients or same

Re: [flexcoders] The difference...

2007-04-11 Thread Abdul Qabiz
There has been a lot of confusion among Flash developer/designers. Some of them even said, during early days of Flex, that Flex is flash killer. Which was totally misconception. I posted something around Macromedia MAX 2005,

Re: [flexcoders] Browser Print - Print Preview for Flex apps

2007-03-18 Thread Abdul Qabiz
Hi, You can use the PrintJob or FlexPrintJob API to allow printing. It's good to provide print button in your application. I am not sure, Flash Player has hooks for Print command from browser. I would love to see that in future version of Flash Player. Probably, hook for text-size from Browser

Re: [flexcoders] DB access in Apollo

2007-03-06 Thread Abdul Qabiz
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Abdul Qabiz *Sent:* Thursday, March 01, 2007 12:20 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] DB access in Apollo I can imagine of doing that with Apollo. I would post soon . On 3/1/07, Russell Sprague

Re: [flexcoders] DB access in Apollo

2007-03-01 Thread Abdul Qabiz
I can imagine of doing that with Apollo. I would post soon . On 3/1/07, Russell Sprague [EMAIL PROTECTED] wrote: I noticed a while back that there wasn't any kind of local database access in Apollos feature list. Is this something that will/has changed, or are the devs thinking this will be a

Re: [flexcoders] Trial Expiration Message with Flex SDK

2007-02-02 Thread Abdul Qabiz
Thing that you have been using with eclipse is FlexBuilder2, that is not free. Flex SDK is free, which is basically flex-framework, command-line tools (compiler, debugger) and other libraries. -abdul On 2/2/07, primemate10 [EMAIL PROTECTED] wrote: I'm using the Flex SDK with Eclipse. I

Re: [flexcoders] How I can to modify a xml with Flex and Php?

2007-02-02 Thread Abdul Qabiz
Right. You need to focus on PHP code that would read/write/manipulate XML. Once you are done with that, you can read how can Flex apps communicate with backend (PHP, JSP etc). Generally, there are following methods used:- 1) HTTPService class of Flex framwork - To communicate over standard HTTP

Re: [flexcoders] Print Preview Help

2007-02-02 Thread Abdul Qabiz
Hi, and the preview should be able to show the number of pages that would be present in the Printed hard copy. To show that you need to know the paper size, that is not known until you start printjob.start (..), once printjob.start (..) is called Print dialogue box is shown and Flash Player

Re: [flexcoders] ContextMenu in TextInput

2007-01-31 Thread Abdul Qabiz
Not sure you can do that? Did you trying hiding built-in items? -abdul On 1/31/07, Ju Aedis [EMAIL PROTECTED] wrote: Hi , I found the ContextMenu in TextInput has these function as copy,delete,paste... Have anyone know that how to delelte or hide these. I want that delete or

Re: [flexcoders] Crossdomain

2007-01-28 Thread Abdul Qabiz
There is Security Sandbox so you can not draw until you have right permissions, just having crossdomain.xml is not sufficient. You need to explictly set checkPolicyFile flag so that Flash Player 9 downloads the policy file (crossdomain.xml) and grants the access to your code, if it is allowed in

Re: [flexcoders] Crossdomain

2007-01-28 Thread Abdul Qabiz
Leonardo, Just having crossdomain.xml is not enough if you want to do Bitmap operations, as I mentione din my previous reply. I posted something on blog, you can see how can you fix this issue. http://www.abdulqabiz.com/blog/archives/flash_and_actionscript/enabling_bitmapdatad.php -abdul On

Re: [flexcoders] Flex working directory

2007-01-28 Thread Abdul Qabiz
Yeah, look at the base param of OBJECT/EMBED tag. By default, everything is loaded relative to html-wrapper (which hosts SWF). But you can change that by specifying the base path.. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_12701 On 1/28/07, Christoph Guse [EMAIL PROTECTED]

Re: [flexcoders] Crossdomain

2007-01-28 Thread Abdul Qabiz
, Abdul Qabiz [EMAIL PROTECTED] wrote: There is Security Sandbox so you can not draw until you have right permissions, just having crossdomain.xml is not sufficient. You need to explictly set checkPolicyFile flag so that Flash Player 9 downloads the policy file (crossdomain.xml) and grants

Re: [flexcoders] Setting LinkBar button size?

2007-01-28 Thread Abdul Qabiz
anything in the style of the link bar that controlled the buttons Abdul Qabiz wrote: I have never done that but I have feeling you can reduce the space around buttons using styles if LinkBar and LinkButton. And also setting horizontalGap of LinkBar to reduce the gap between individual buttons

Re: [flexcoders] variable change event

2007-01-28 Thread Abdul Qabiz
You can dispatch event from your custom MXML component... I suggest, having setters/getters functions in your custom component. Whenever a property is set, dispatch appropriate event. Read docs more about dispatching event. -abdul On 1/25/07, paperbyolga [EMAIL PROTECTED] wrote: Hi, i

Re: [flexcoders] Ogg Vorbis Tremor in AS3?

2007-01-27 Thread Abdul Qabiz
Cool! That's amazing.. -abdul On 1/26/07, Martin Wood-Mitrovski [EMAIL PROTECTED] wrote: Its been done. :) http://flash.j-ogg.de/ Hopefully the source will be released at some point. I know that its built on top of the audio engine made by Chris Sperry of FlashCodersBrighton fame.

Re: [flexcoders] Can't seem to customize Flash ContextMenu

2007-01-27 Thread Abdul Qabiz
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Abdul Qabiz *Sent:* Wednesday, January 24, 2007 3:02 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Can't seem to customize Flash ContextMenu It should work. But I am guessing that your Application has absolute width

Re: [flexcoders] Setting Initial NetStream Sound Volume

2007-01-26 Thread Abdul Qabiz
does adding [Bindable] metadata help? [Bindable] private var _volume:int = 100; -abdul On 1/26/07, John Kirby [EMAIL PROTECTED] wrote: I am trying to dynamically set the sound volume when different video is played via: stream = new NetStream(nc); var st:SoundTransform =

Re: [flexcoders] Re: Localization - URGENT

2007-01-26 Thread Abdul Qabiz
This is the question for Gordon and Roger, I am curious if we can use Modules/Shared-Libs to load localization-resources on runtime? I have not been doing much in Flex 2 for sometime. But just curious if we can come up something using new facilities in Flex 2.0.1 Thanks -abdul On 1/26/07,

Re: [flexcoders] Convert Videos to FLV via Web

2007-01-26 Thread Abdul Qabiz
could tap on to this thread, anyone know of anything that does the same using .NET? Jason Merrill Bank of America Learning Organizational Effectiveness -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Abdul Qabiz *Sent:* Thursday

Re: [flexcoders] Ogg Vorbis Tremor in AS3?

2007-01-26 Thread Abdul Qabiz
There are APIs (URLLoader, URLStream) to load binary data (file, stream etc), manipulate bits (ByteArray) and create also. I don't think there is out of box vorbis decoder in Adobe Flash Player. You can achieve what you want to do... There are APIs to do that... And I guess, once you are done

Re: [flexcoders] HTTPService Vs WebService

2007-01-25 Thread Abdul Qabiz
HTTPService is good for doing standard HTTP GET/POST stuff... Where as WebService can be used for SOAP, etc based webservices... -abdul On 1/25/07, theduderino82 [EMAIL PROTECTED] wrote: I've seen many tutorials and I just can't figure out what is the difference between this too

Re: [flexcoders] getObjectsUnderPoint Alternative?

2007-01-25 Thread Abdul Qabiz
You can attach your handler to mouseOver event of your component. mouseOver is triggered whenever mouse would be over the component. -abdul On 1/25/07, Steve Cox [EMAIL PROTECTED] wrote: All, I have the requirement to use mouse-over to cause a component to be highlighted. Effectively

Re: [flexcoders] Help needed in accesing files located in remote location

2007-01-25 Thread Abdul Qabiz
Security sandbox in Flash Player 8 onwards has changed. Which means SWF can be compiled with two different config:- 1) Either access local files but no data from network 2) Or access network data but no local data. I believe, FlexBuilder/MXMLC compiles with second config mentioned above. You

Re: [flexcoders] HTTPService Vs WebService

2007-01-25 Thread Abdul Qabiz
Yup! You can use HTTPService with backend-scripts that return text or name-value pairs...You can even use it for SOAP but you would need to do more work. Where as WebService can easily be used with SOAP but expects right input and result. -abdul On 1/25/07, Merrill, Jason [EMAIL PROTECTED]

Re: [flexcoders] File upload via JAVA

2007-01-25 Thread Abdul Qabiz
You can write simple servlet/jsp that does the uploading. If you can write a simple app with html front end and java backend for file uploading, you can transparently replace front-end with Flash based uploader. You have to take care of cases when multiple-files are being uploaded together, on

Re: [flexcoders] Convert Videos to FLV via Web

2007-01-25 Thread Abdul Qabiz
There is php hooks for ffmpeg: *http://ffmpeg*-*php*.sourceforge.net On 1/24/07, Steve Gustafson [EMAIL PROTECTED] wrote: ffmpeg should help you out. Here is a tutorial: http://soenkerohde.com/tutorials/ffmpeg/ Gus On 1/23/07, Marlos Carmo | 5clicks.com.br [EMAIL PROTECTED] wrote:

Re: [flexcoders] crossdomain.xml problem

2007-01-24 Thread Abdul Qabiz
Did you try to look at the HTTP requests made by Flash Player. Try using charles or fiddler to look at if request to load crossdomain.xml is being made or not? I am wondering, what could be the issue? On 1/25/07, Danko Kozar [EMAIL PROTECTED] wrote: I have a strange behavior of a policy

Re: [flexcoders] Can't seem to customize Flash ContextMenu

2007-01-24 Thread Abdul Qabiz
It should work. But I am guessing that your Application has absolute width/height specified in your MXML. And your html-wrapper has different (greater) width/height. That's the only case, in my opinion, when flash-player's stage gets exposed. Try to keep the dimensions specified in MXML and

Re: [flexcoders] What's in a name? That which we call Apollo by any other name would smell as sweet....

2007-01-24 Thread Abdul Qabiz
1) Adobe Desktop 2) Adobe Universal Runtime 3) Adobe One Runtime I had thought some more, gotta recall and post :) Something cool but easily understood by everyone (average users).. -abdul On 1/24/07, Matt Chotin [EMAIL PROTECTED] wrote: I don't know the latest, but we're still

Re: [flexcoders] runtime localization

2007-01-24 Thread Abdul Qabiz
Runtime localization, shouldn't it be easy to do with modules? I have not really worked on Localization stuff after I left Macromedia (Adobe), things must have changed a lot. What I remember, all resources were compiled in .swc files... I guess, we can use modules to load resources based on

Re: [flexcoders] Re: creating swf online

2007-01-23 Thread Abdul Qabiz
flexcoders%40yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: If I am right, you want to let user design something and then generate SWF... There are different ways, people do that:- 1) You write two pieces (editor and player), editor let users design and you serialize all information

Re: [flexcoders] Is Flash a single thread application?

2007-01-23 Thread Abdul Qabiz
Yes it is Single threaded -abdul On 1/23/07, saha.prasanta [EMAIL PROTECTED] wrote: Hi, I've read in some forum that Flash is a single thread application. I tried to find some document supporting that statement, But I couldn't find any document by Adobe or Macromedia regarding that.

Re: [flexcoders] playing two video simultaneously, seeking too slow especially when playing from dvd

2007-01-23 Thread Abdul Qabiz
Hi, 1. Is it possible to force the flash player to just load both videos into main memory (or PageFile) at start up? You can set the buffer-time to a large number, I suggest don't keep it too large. Should work fine on the cost of more memory consumption... Read more about bufferTime in

Re: [flexcoders] playing two video simultaneously, seeking too slow especially when playing from dvd

2007-01-23 Thread Abdul Qabiz
Depends, if you are streaming FLVs using Flash Media Server or Red5, you can do the seek thingy...It's quite cool... But if it's progressive, it all depends on how much video is downloaded, how much it is buffered, how big the video is.. Generally seek algorithms are kindda complex.. Also

Re: [flexcoders] Localizing Press Esc to exit full screen mode?

2007-01-22 Thread Abdul Qabiz
That's interesting, I guess Flash Player should detect the OS and show it. It is something that Flash Player shows.. I guess, resource-string for different locales must be there. -abdul On 1/22/07, Oleg Filipchuk [EMAIL PROTECTED] wrote: Hi guyz and girlz, is it possible to localize the

Re: [flexcoders] Socket Problem

2007-01-22 Thread Abdul Qabiz
I believe it might be something to do with permission (security-sandbox)? App works when it's in standalone mode but from plugin its not working. Is server running on port higher than 1024? Is it in same domain? Can you give us some more details? You can try adding the directory of swf from

Re: [flexcoders] Difference Between FDS and Flex SDK

2007-01-22 Thread Abdul Qabiz
Adobe Flex2 SDK is set of tools/libraries that allow you build Flex applications without using FlexBuilder2, yeah it requires more work.. Adobe FDS is server, which you can use for advanced Flex 2 data-services. Can I connect to Remote Object without FDS? Yes, you can use AMFPHP, OpenAMF or

Re: [flexcoders] Run time error ----- Netconnection must be connect.

2007-01-22 Thread Abdul Qabiz
Just replied to other mail of yours on ethe same subject. Please wait for sometime before sending twice. Most of folks on this list are busy, they reply whenever they get time... :) -abdul On 1/22/07, rsekar_005 [EMAIL PROTECTED] wrote: Dear Friends, in flex i am getting runtime error.

Re: [flexcoders] Setting LinkBar button size?

2007-01-22 Thread Abdul Qabiz
I have never done that but I have feeling you can reduce the space around buttons using styles if LinkBar and LinkButton. And also setting horizontalGap of LinkBar to reduce the gap between individual buttons in LinkBar... You might want to try that? -abdul On 1/22/07, Russell Sprague [EMAIL

Re: [flexcoders] creating swf online

2007-01-22 Thread Abdul Qabiz
If I am right, you want to let user design something and then generate SWF... There are different ways, people do that:- 1) You write two pieces (editor and player), editor let users design and you serialize all information on server in database, xml or whatever. Player loads XML and renders

Re: [flexcoders] Flex SDK configuration with JBoss?

2007-01-22 Thread Abdul Qabiz
What you want to do? Use Flex2 the way it worked in Flex 1.5 based, server-based stuff? I am sure you can achieve that...by creating a filter to handle .mxml files... Filter would invoke MXMLC (or use MXMLC libs) to compile mxml and cache SWF on server...Filter would then wrap the SWF in html

Re: [flexcoders] I want to know some statistics of flexcoders :)

2007-01-22 Thread Abdul Qabiz
- what term are you programmed on flex? I didn't get the question, sorry.. - Do you know some high-level program language like C#, Java etc before start to study and code on Flex? Well if you know it helps but if you don't know all these and familiar with any programming language

Re: [flexcoders] ActionScript Mozill

2007-01-22 Thread Abdul Qabiz
A better VM... Now community can also contribute to Virtual Machine...so things should be more standard, fast and good.. What does it mean to me as ActionScript developer? I can use my existing skills and write code in other environment which uses Tamarinhttp://www.mozilla.org/projects/tamarin/

Re: [flexcoders] sequential addition of sprite objects

2007-01-22 Thread Abdul Qabiz
If you understand how Flash Player works,you would probably do it differently. Flash Player executes the code in the frame before rendering the objects on the frame... You need to use Timer class or frame-event (enterFrame) instead of while-loop here... to update the screen (rendering or

Re: [flexcoders] AS3 code obfuscators

2007-01-22 Thread Abdul Qabiz
Security through obscurity is not true security On 1/22/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 18 January 2007 22:55, Daniel Wabyick wrote: Does anyone know of any AS3 code obfuscators out there? Whats the point ? If need by, just distribute it as a SWC. You can't stop

Re: [flexcoders] Need ur help

2007-01-22 Thread Abdul Qabiz
You are getting this error because NetConnection object is not yet connected, message is quite clear. The way you are doing things might not work on slow network or internet, because it takes time to make connection before you can use this object for any purpose. I suggest you using

Re: [flexcoders] Localizing Press Esc to exit full screen mode?

2007-01-22 Thread Abdul Qabiz
I hope someone from Flash Player team is listening to us... On 1/22/07, Oleg Filipchuk [EMAIL PROTECTED] wrote: I didn't find any docs about this issue. Our client is really disapointed in that, and why it just couldn't be modified -- Best regards, Oleg Filipchuk

Re: [flexcoders]

2006-09-27 Thread Abdul Qabiz
http://www.senocular.com/?id=1.373On 9/26/06, KP [EMAIL PROTECTED] wrote: Hi All, Below is the image which shows different coordinates for resizing. This image is taken from flex editor. Can we some how implement same thing at the run time for

  1   2   3   4   5   6   7   8   >