RE: [Flashcoders] swfs in pdfs

2007-05-16 Thread Nimrod Huberman
I don't know your specific goal, but remember that you can convert the pdf to swf using flashPaper, and then any combination is easier. The user will run one swf file that will load and handle (using the flashpaper's API) the converted swf. Nimrod -Original Message- From: [EMAIL PROTECTED]

[Flashcoders] splitting the list?

2007-05-16 Thread Nimrod Huberman
This list include very interesting and helpful subjects, but for me its large amount of posts each day make it less useable. Maybe is the time to split it to some lists by subject? i.e. flashcoders-XML and data, flashcoders-server communication, as3 specific, video, oo-architect. ??? Nimrod _

RE: [Flashcoders] Flash 8 OSX - Classpath woes

2007-05-06 Thread Nimrod Huberman
On pc, the "X conflicts with the name of another class X" appears when you declare and use variable of type A in class B and a variable of type B in class A. (To solve it you have add "import A;" before class B and "import B;" before class A, then to click check syntax button 2 or 3 time until the

RE: [Flashcoders] Localization issue with XML

2007-03-20 Thread Nimrod Huberman
Im not sure itÂ’s the right direction but you can try: system.useCodepage=true; Nimrod -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks | BLITZ Sent: Tuesday, March 20, 2007 8:32 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Lo

RE: [Flashcoders] correct way to set onRease of an arbitrary button

2007-03-13 Thread Nimrod Huberman
You can set pointer to the question class in the button, and use it later in function . Use this code in the your question class: answerButton.handleBy = this; answerButton.onRelease = function() { handleBy.GiveAnswer(aNum);} -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECT