Re: [Flashcoders] thumbnail panel

2007-06-04 Thread Paul V.
Ben,

One problem I see with the code right away is this.  You are only going to
run your second level thumb nails though that if statement when the previous
thumb>_x  is > 400  That means after placing the first thumb on the second
row, your if(){ code } doesn't  get read.  I would have a look at that.
Maybe put in a mini  if(t._x>400) { levelCount +=1;};  And then use your
t._y var with a multiplier using levelCount.
Understand.  I am taking a five minute break.  I will come back and try to
write some of that idea out for you.

Vdst.



- Original Message - 
From: "ben deroo" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Monday, June 04, 2007 7:38 PM
Subject: [Flashcoders] thumbnail panel


> hi,
> I'm trying to create a simple sample thumbnail panel with movieclips,
which
> i'll later modify, but there seems to be something wrong in the code
>
>
> code:
> //
> for (var i:Number = 0; i<10; i++) {
> var t = attachMovie("box", "box"+i, i+1);
> var Xspacing:Number = 20;
> var Xreset:Number = 0;
> var Yspacing:Number = 20;
> var counter:Number = 1;
>
> t._x += (t._width+Xspacing)*i;
>
> if (t._x>400) {
> //counter++;
> t._y = (t._height+Yspacing);
> t._x = Xreset;
> t._x += (t._width+Xspacing)*(counter);
> } else {
> //counter++;
> }
> }
>
>
> //end code
>
> I'm trying to create several rows, but seem to be failing to do so, is
this
> a conditional logic error?
>
> thanks for any help
>
>
> Ben
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
>

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Record client's webcam without Flash Server

2007-06-04 Thread JulianG

Thanks!
I downloaded it. And I will try it.

So there's definitely no way to do this using just HTTP, right?

Thanks!
JulianG


Ruslan Shestopal wrote:

Hi!
Take a look at RED5
Red5 : Open Source Flash Server
http://www.osflash.org/red5


  

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] AS3.0 and C++

2007-06-04 Thread Bharat Varma

I have the Javascript to DLL communcation already working. I think I will
just use ExternalAPI to talk between AS and Javascript.

Thank you.

Bharat Varma

--
There are 2 kinds of people in this world -
1. Those who don't need closure.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] thumbnail panel

2007-06-04 Thread ben deroo

hi,
I'm trying to create a simple sample thumbnail panel with movieclips, which
i'll later modify, but there seems to be something wrong in the code


code:
//
for (var i:Number = 0; i<10; i++) {
   var t = attachMovie("box", "box"+i, i+1);
   var Xspacing:Number = 20;
   var Xreset:Number = 0;
   var Yspacing:Number = 20;
   var counter:Number = 1;

   t._x += (t._width+Xspacing)*i;

   if (t._x>400) {
   //counter++;
   t._y = (t._height+Yspacing);
   t._x = Xreset;
   t._x += (t._width+Xspacing)*(counter);
   } else {
   //counter++;
   }
}


//end code

I'm trying to create several rows, but seem to be failing to do so, is this
a conditional logic error?

thanks for any help


Ben
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Rotate in absolute center AS3

2007-06-04 Thread Jobe Makar

Hi,

The code below I copied from somewhere else and have saved it to eventually 
test. So, I cannot verify that it *definately* does the trick. However, 
using rotateAroundExternalPoint should allow you to rotate around the 
center. You'd just need to specify the clip's center. This example code that 
I copied is for a MovieClip, but I think it will work with any display 
object.


import fl.motion.*;
var m=mc1.transform.matrix;
MatrixTransformer.rotateAroundExternalPoint (m,100,100,5);
//transfrom original mc
mc1.transform.matrix=m;


Jobe Makar
http://www.electrotank.com
http://www.electro-server.com
phone: 252-627-8026
mobile: 919-609-0408
fax: 919-882-1121 



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] AS3.0 and C++

2007-06-04 Thread John Dowdell

Bharat Varma wrote:

I am developing an application where I would like to use Flex to talk to
some dlls / exe installed on the local machine, through a browser.
The DLLs (and or) EXE will be installed using an installer [snip]


Are you asking "How can a SWF in a browser talk to my native-code 
libraries installed on the viewing machine?"


If so, then here are possibilities:

(a)  use a completely remote connection, with the in-browser SWF talking 
to your server, and your on-machine DLLs also getting messages from your 
server (it sounds silly, but people have used this for years);


(b)  if your DLL can be invoked by the same webpage holding the SWF, 
then you can use ExternalInterface-type of work to have the browser's 
JavaScript intermediate the messages between the two codebases;


(c)  making a standalone application, rather than an in-browser page, 
can help you avoid the required browser sandboxing... Flash makes 
Projectors, and other firms host deeper native shells (Zinc, eg).


The Apollo angle I'm not really sure of, because we're still in alpha 
and local-access is such a hot issue. I've seen some example where 
people use a local server as the intermediary between processes, but I 
think we need to sit and wait a bit, to see the options the final 1.0 
delivery enables.


jd






--
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Record client's webcam without Flash Server

2007-06-04 Thread Ruslan Shestopal
Hi!
Take a look at RED5
Red5 : Open Source Flash Server
http://www.osflash.org/red5


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of JulianG
Sent: Monday, June 04, 2007 5:21 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Record client's webcam without Flash Server

Hi all!

I 'd like to know if there is a way to record the client's webcam or mic 
input, and send it to the server without using the Flash Server or other 
open source alternative services. I mean, sending the video over HTTP.

I need my users to record they webcam videos and send those videos to 
the server. what options do I have?

thanks in advance!
JulianG


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Rotate in absolute center AS3

2007-06-04 Thread sean
Presumably this is a programatically created bitmap. I don't know if you
can set the registration point of the movieclip or sprite within which I
assume it lives programatically within AS3 programatically (sorry, haven't
looked into this since AS2), however, even if you can, the principal is
the same as doing it manually.

Calculate the bitmap's width and height, divide them by 2 and position the
x and y to be minus these figures, as the default for the registration
point is x:0 and y:0 (top left hand corber). So, what ever the bitmap
width and hight, you would set (this is formula, not code btw):

bitmap x = bitmap x - (bitmap width / 2)
bitmap y = bitmap y - (bitmap height / 2)



S.

> Hey there, I need rotate  Bitmap texture in AS3.
>
> I use
>
> object.rotate = 45
>
> unhappyness the rotate is no absulute center. The rotate is corner high
> left. What is happends? How to set position pivot in center.
>
> I need the texture rotate in with the self center.
>
> Thank a lot
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Mac site check

2007-06-04 Thread eric e. dolecki

ditto. you probably didn't need me to reply though ;)

- eric

On 6/4/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:


Yup,

   stalled for me to


sean

> That's what I needed.
>
> Thanks,
>
> RT
>
>> -Original Message-
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] On Behalf
>> Of [EMAIL PROTECTED]
>> Sent: Monday, June 04, 2007 3:22 PM
>> To: flashcoders@chattyfig.figleaf.com
>> Subject: Re: [Flashcoders] Mac site check
>>
>> I didn't get a thing...it just stalled.
>>
>> > http://128.177.1.20/galvanic
>> >
>> > Please try logon with any username and password and see if
>> you get an
>> > error message.
>> >
>> > Thanks,
>> >
>> > RT
>> > ___
>> > Flashcoders@chattyfig.figleaf.com
>> > To change your subscription options or search the archive:
>> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>> >
>> > Brought to you by Fig Leaf Software
>> > Premier Authorized Adobe Consulting and Training
>> > http://www.figleaf.com http://training.figleaf.com
>> >
>> >
>>
>>
>> ___
>> Flashcoders@chattyfig.figleaf.com
>> To change your subscription options or search the archive:
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>> Brought to you by Fig Leaf Software
>> Premier Authorized Adobe Consulting and Training
>> http://www.figleaf.com http://training.figleaf.com
>>
>>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] commercial flash multi-touch projects?

2007-06-04 Thread Merrill, Jason
>>In relation to that, John Grden posted on his blog an 
>>experiment that can be seen as a multi-pointer control: he 
>>used two wiimotes (from the wii) with wiiflash and red5 to 
>>control two virtual pointers. With that he was able to play a 
>>virtual drum inside flash, using the wiimotes as if theu were 
>>the sticks.
>>
>>Check it out, second video:
>>http://www.rockonflash.com/blog/?p=52 

Freaking amazing - and Papervision 3D too!

Jason Merrill
Bank of America  
GT&O Learning & Leadership Development
eTools & Multimedia Team


 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Child Object positions

2007-06-04 Thread sean
I really don't think there is. You will have to move the labels to a new
parent display list.

S.

> Hi guys, I asked this in the newbie section since im new to actionscript.
> They tol dme to direct it here so here goes:
>
> I have a Sprite. The Sprite has several children who are also
> Sprites.
> Think of it as a planet with lots of little moons. Now each
> of these moons have a Child thats a Label.  These labels
> overlap each other in that the text, if its long, will end up
> behind another moon it runs into if the moon is a child thats
> layerd above it. I want all the labels to be brought to the
> front regardless of the moons layer. Is there a way to do this without
> disassociating the label with the moon?
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] commercial flash multi-touch projects?

2007-06-04 Thread zehfernando
> Hi Jason,
>   As I understand it, some multitouch systems (no idea about MS!) use
> a process to track and broadcast multitouch data to listeners on a
> socket.
>
>   There'd be nothing stop AS3 reading data from that socket,
> presumably... or (I guess) some container app interpreting the socket
> data and passing it to Flash via ExternalInterface or some other
> means...
>
>   You wouldn't be able to use standard mouse events.

In relation to that, John Grden posted on his blog an experiment that can
be seen as a multi-pointer control: he used two wiimotes (from the wii)
with wiiflash and red5 to control two virtual pointers. With that he was
able to play a virtual drum inside flash, using the wiimotes as if theu
were the sticks.

Check it out, second video:
http://www.rockonflash.com/blog/?p=52


Zeh

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Child Object positions

2007-06-04 Thread Cary Ho

Hi guys, I asked this in the newbie section since im new to actionscript. They 
tol dme to direct it here so here goes:

I have a Sprite. The Sprite has several children who are also 
Sprites. 
Think of it as a planet with lots of little moons. Now each 
of these moons have a Child thats a Label.  These labels 
overlap each other in that the text, if its long, will end up 
behind another moon it runs into if the moon is a child thats 
layerd above it. I want all the labels to be brought to the 
front regardless of the moons layer. Is there a way to do this without disassociating the label with the moon?


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Mac site check

2007-06-04 Thread sean
Yup,

   stalled for me to


sean

> That's what I needed.
>
> Thanks,
>
> RT
>
>> -Original Message-
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] On Behalf
>> Of [EMAIL PROTECTED]
>> Sent: Monday, June 04, 2007 3:22 PM
>> To: flashcoders@chattyfig.figleaf.com
>> Subject: Re: [Flashcoders] Mac site check
>>
>> I didn't get a thing...it just stalled.
>>
>> > http://128.177.1.20/galvanic
>> >
>> > Please try logon with any username and password and see if
>> you get an
>> > error message.
>> >
>> > Thanks,
>> >
>> > RT
>> > ___
>> > Flashcoders@chattyfig.figleaf.com
>> > To change your subscription options or search the archive:
>> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>> >
>> > Brought to you by Fig Leaf Software
>> > Premier Authorized Adobe Consulting and Training
>> > http://www.figleaf.com http://training.figleaf.com
>> >
>> >
>>
>>
>> ___
>> Flashcoders@chattyfig.figleaf.com
>> To change your subscription options or search the archive:
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>> Brought to you by Fig Leaf Software
>> Premier Authorized Adobe Consulting and Training
>> http://www.figleaf.com http://training.figleaf.com
>>
>>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Flashcoders Digest, Vol 6, Issue 7

2007-06-04 Thread misa
I just want to thank you for all the advice regarding site structure. 
I'll check all the frameworks I got from the list and I'll choose the 
one that's closest to my working habits. Thanks again!

Regards,
Mihajlo Nikolic
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] scrollwheel bug in AS3?

2007-06-04 Thread Michael Stuhr

Patrick Matte|BLITZ schrieb:

Well it seems you're right!



:-)

micha
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Mac site check

2007-06-04 Thread Randy Tinfow
That's what I needed.  

Thanks,

RT 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of [EMAIL PROTECTED]
> Sent: Monday, June 04, 2007 3:22 PM
> To: flashcoders@chattyfig.figleaf.com
> Subject: Re: [Flashcoders] Mac site check
> 
> I didn't get a thing...it just stalled.
> 
> > http://128.177.1.20/galvanic
> >
> > Please try logon with any username and password and see if 
> you get an 
> > error message.
> >
> > Thanks,
> >
> > RT
> > ___
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training 
> > http://www.figleaf.com http://training.figleaf.com
> >
> >
> 
> 
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training 
> http://www.figleaf.com http://training.figleaf.com
> 
> 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] scrollwheel bug in AS3?

2007-06-04 Thread Adam Mark

So be it -- but this isn't how AS2.0 works.

The behavior makes it virtually impossible to scroll within the SWF  
-- since the page keeps bumping up and down.


Adam



On Jun 4, 2007, at 3:27 PM, Patrick Matte|BLITZ wrote:


Well it seems you're right!


BLITZ | Patrick Matte - 310-551-0200 x214
-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders- 
[EMAIL PROTECTED] On Behalf Of Michael Stuhr

Sent: Monday, June 04, 2007 12:05 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] scrollwheel bug in AS3?

Patrick Matte|BLITZ schrieb:

Yes I've noticed that too, same thing here.



it seems you're not exactly correct here:

to me it seems like when sthe scrolling container reaches  
maxScroll, the

flashplugin seems to fire the scroll event (back) to the browser.

at least this is what it seems to me. it might be considered as a
feature if you want to, if you think of how html-scrollcantainers  
behave.


just my 0.2€

micha



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] scrollwheel bug in AS3?

2007-06-04 Thread Patrick Matte|BLITZ
Well it seems you're right!


BLITZ | Patrick Matte - 310-551-0200 x214
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr
Sent: Monday, June 04, 2007 12:05 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] scrollwheel bug in AS3?

Patrick Matte|BLITZ schrieb:
> Yes I've noticed that too, same thing here.
>

it seems you're not exactly correct here:

to me it seems like when sthe scrolling container reaches maxScroll, the
flashplugin seems to fire the scroll event (back) to the browser.

at least this is what it seems to me. it might be considered as a
feature if you want to, if you think of how html-scrollcantainers behave.

just my 0.2€

micha



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Re: [Flashcoders] Mac site check

2007-06-04 Thread gerry
I didn't get a thing...it just stalled.

> http://128.177.1.20/galvanic
>
> Please try logon with any username and password and see if you get an
> error message.
>
> Thanks,
>
> RT
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] scrollwheel bug in AS3?

2007-06-04 Thread Michael Stuhr

Patrick Matte|BLITZ schrieb:

Yes I've noticed that too, same thing here.



it seems you're not exactly correct here:

to me it seems like when sthe scrolling container reaches maxScroll, the 
flashplugin seems to fire the scroll event (back) to the browser.


at least this is what it seems to me. it might be considered as a 
feature if you want to, if you think of how html-scrollcantainers behave.


just my 0.2€

micha



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Mac site check

2007-06-04 Thread Randy Tinfow
http://128.177.1.20/galvanic

Please try logon with any username and password and see if you get an
error message.

Thanks,

RT
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] commercial flash multi-touch projects?

2007-06-04 Thread Merrill, Jason
Yeah, it's the event handling that would throw me for a loop - I mean
making/responding to a custom event is easy, but detecting and then
firing a USER created event that doesn't currently exist in the Flash
player is where I don't follow how it would be possible without some
third party solution.

Jason Merrill
Bank of America  
GT&O Learning & Leadership Development
eTools & Multimedia Team


 

>>-Original Message-
>>From: [EMAIL PROTECTED] 
>>[mailto:[EMAIL PROTECTED] On Behalf 
>>Of ben gomez farrell
>>Sent: Monday, June 04, 2007 2:05 PM
>>To: flashcoders@chattyfig.figleaf.com
>>Subject: Re: [Flashcoders] commercial flash multi-touch projects?
>>
>>I'm answering despite not knowing really anything about how 
>>the technology works - but as the Microsoft Surface links got 
>>passed around a few days ago, one of the links was a DIY 
>>multi touch table.  I only skimmed the forum link really, but 
>>it had some screen shots of the fingers being pressed on the 
>>glass and the area where the fingers were looked like blobs 
>>(hence they were talking about blob detection algorithms).  I 
>>think they were using some kind of camera to point up at the 
>>table to detect where the finger blobs were.
>>
>>If some kind of video camera that can work with flash can do 
>>whatever optically it needs to do, and AS3 is fast enough to 
>>perform whatever blob detection algorithms they need, then 
>>it's very much possible in flash.  But you know, those are 
>>big ifs. aren't they?
>>ben
>>
>>Merrill, Jason wrote:
>>> Curious, how are multi-touch events handled with Flash?  Currently 
>>> isn't even remotely possible is it?  Or maybe with an 
>>ActiveX wrapper 
>>> of some kind?
>>>
>>> Jason Merrill
>>> Bank of America
>>> GT&O Learning & Leadership Development eTools & Multimedia Team
>>>
>>>
>>>  
>>>
>>>   
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On 
>>Behalf Of Josh 
> Santangelo
> Sent: Monday, June 04, 2007 1:17 PM
> To: Flashcoders mailing list
> Subject: [Flashcoders] commercial flash multi-touch projects?
>
> Hello list -- this may be OT or rule-breaking, but please 
>>don't kill 
> me over it. I did a bit of work on the MS Surface project on a 
> temporary basis and had a great time with it (see 
>>endquote.com for 
> some info). Unfortunately due to some technology decisions in the 
> group, Flash devs are not really needed anymore. I'd love 
>>to do more 
> multi-touch work, but am not sure who's doing work in this area 
> combined with Flash.
>
> If anyone is involved in or aware of projects in this 
>>area in need 
> of dev help, I'd love to hear about it.
>
> thanks,
> -josh
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training 
> http://www.figleaf.com http://training.figleaf.com
>
>   
>>> ___
>>> Flashcoders@chattyfig.figleaf.com
>>> To change your subscription options or search the archive:
>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>
>>> Brought to you by Fig Leaf Software
>>> Premier Authorized Adobe Consulting and Training 
>>> http://www.figleaf.com http://training.figleaf.com
>>>
>>>   
>>___
>>Flashcoders@chattyfig.figleaf.com
>>To change your subscription options or search the archive:
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>Brought to you by Fig Leaf Software
>>Premier Authorized Adobe Consulting and Training 
>>http://www.figleaf.com http://training.figleaf.com
>>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] commercial flash multi-touch projects?

2007-06-04 Thread Josh Santangelo
If you cruise around the diy multitouch sites, you'll find that there  
is a lot of hardware and software involved to make it work. Flash  
doesn't have any kind of native multitouch support, but if you  
provide it with the appropriate API to the hardware, you can do it.


http://www.multitouch.nl/
http://mikewags.blogspot.com/
http://nuigroup.com/index.php/site/index/
http://www.whitenoiseaudio.com/touchlib/

I can't really say how it works in the MS product.

There are some rumors that an SDK will be released for the iPhone.  
Since the iPhone has some multitouch functionality, perhaps that will  
be the first place that normal people will get to play with the  
concepts without having to build their own hardware or work for an MS  
partner. (I would guess that the iPhone SDK will have nothing to do  
with Flash, though.)


-josh

On Jun 4, 2007, at 11:04 AM, ben gomez farrell wrote:

I'm answering despite not knowing really anything about how the  
technology works - but as the Microsoft Surface links got passed  
around a few days ago, one of the links was a DIY multi touch  
table.  I only skimmed the forum link really, but it had some  
screen shots of the fingers being pressed on the glass and the area  
where the fingers were looked like blobs (hence they were talking  
about blob detection algorithms).  I think they were using some  
kind of camera to point up at the table to detect where the finger  
blobs were.


If some kind of video camera that can work with flash can do  
whatever optically it needs to do, and AS3 is fast enough to  
perform whatever blob detection algorithms they need, then it's  
very much possible in flash.  But you know, those are big ifs.  
aren't they?

ben

Merrill, Jason wrote:
Curious, how are multi-touch events handled with Flash?  Currently  
isn't
even remotely possible is it?  Or maybe with an ActiveX wrapper of  
some

kind?

Jason Merrill
Bank of America  GT&O Learning & Leadership Development
eTools & Multimedia Team





-Original Message-
From: [EMAIL PROTECTED]  
[mailto:[EMAIL PROTECTED] On Behalf Of  
Josh Santangelo

Sent: Monday, June 04, 2007 1:17 PM
To: Flashcoders mailing list
Subject: [Flashcoders] commercial flash multi-touch projects?

Hello list -- this may be OT or rule-breaking, but please don't  
kill me over it. I did a bit of work on the MS Surface project  
on a temporary basis and had a great time with it (see  
endquote.com for some info). Unfortunately due to some  
technology decisions in the group, Flash devs are not really  
needed anymore. I'd love to do more multi-touch work, but am not  
sure who's doing work in this area combined with Flash.


If anyone is involved in or aware of projects in this area in  
need of dev help, I'd love to hear about it.


thanks,
-josh
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http:// 
www.figleaf.com http://training.figleaf.com




___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] commercial flash multi-touch projects?

2007-06-04 Thread Ian Thomas

Hi Jason,
 As I understand it, some multitouch systems (no idea about MS!) use
a process to track and broadcast multitouch data to listeners on a
socket.

 There'd be nothing stop AS3 reading data from that socket,
presumably... or (I guess) some container app interpreting the socket
data and passing it to Flash via ExternalInterface or some other
means...

 You wouldn't be able to use standard mouse events.

Ian

On 6/4/07, Merrill, Jason <[EMAIL PROTECTED]> wrote:

Curious, how are multi-touch events handled with Flash?  Currently isn't
even remotely possible is it?  Or maybe with an ActiveX wrapper of some
kind?

Jason Merrill
Bank of America
GT&O Learning & Leadership Development
eTools & Multimedia Team




>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf
>>Of Josh Santangelo
>>Sent: Monday, June 04, 2007 1:17 PM
>>To: Flashcoders mailing list
>>Subject: [Flashcoders] commercial flash multi-touch projects?
>>
>>Hello list -- this may be OT or rule-breaking, but please
>>don't kill me over it. I did a bit of work on the MS Surface
>>project on a temporary basis and had a great time with it
>>(see endquote.com for some info). Unfortunately due to some
>>technology decisions in the group, Flash devs are not really
>>needed anymore. I'd love to do more multi-touch work, but am
>>not sure who's doing work in this area combined with Flash.
>>
>>If anyone is involved in or aware of projects in this area in
>>need of dev help, I'd love to hear about it.
>>
>>thanks,
>>-josh
>>___
>>Flashcoders@chattyfig.figleaf.com
>>To change your subscription options or search the archive:
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>Brought to you by Fig Leaf Software
>>Premier Authorized Adobe Consulting and Training
>>http://www.figleaf.com http://training.figleaf.com
>>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] scrollwheel bug in AS3?

2007-06-04 Thread Patrick Matte|BLITZ
Yes I've noticed that too, same thing here.

http://labs.blitzagency.com/?p=315


BLITZ | Patrick Matte - 310-551-0200 x214
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adam Mark
Sent: Monday, June 04, 2007 7:34 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] scrollwheel bug in AS3?

I am migrating code from AS2 to AS3 and came across some unexpected
browser behavior -- both the SWF and the surrounding web page are
scrolling at the same time.


The following examples are both running in 9,0,28,0 (IE 7 and Firefox
2).

In AS2 (compiled to either v7 or v9), the surrounding web page does
NOT scroll while the embedded SWF has focus and captures wheel events.

var mouseListener:Object = new Object();
mouseListener.onMouseWheel = function (delta) {
 myMovieClip._x += delta;
}
Mouse.addListener(mouseListener);


In AS3 (compiled to v9), both the surrounding web page and the
embedded SWF scroll at the same time (while the SWF has focus).

myMovieClip.addEventListener(MouseEvent.MOUSE_WHEEL, handleMouseWheel);

private function handleMouseWheel(evt:MouseEvent):void {
 myMovieClip.x += evt.delta;
}


I am trying to prevent the web page from scrolling while the SWF has
focus and receives MOUSE_WHEEL events.  I have tried stopPropagation
() and stopImmediatePropagation() to no avail.

The behavior is the same whether I render the SWF object/embed code
via JavaScript or directly in the HTML.

Thoughts?

Thanks,
Adam


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Setting up loadVars onLoad handler within customclass

2007-06-04 Thread Muzak
That's how it was done before we had the Delegate class.
Even though it works, the scope within the function is still not correct, 
meaning "this" returns the movieclip instance.

There's no reason why you shouldn't use Delegate and plenty of why you should.

regards,
Muzak

- Original Message - 
From: "Jolyon Russ" <[EMAIL PROTECTED]>
To: 
Sent: Monday, June 04, 2007 7:20 PM
Subject: Re: [Flashcoders] Setting up loadVars onLoad handler within customclass


>I tend not to use Delegate and go for this easier/cleaner alternative
>
> private var scope : ClassName = this ;
>
> this.my_mc.onRelease = function ( ) {
> scope.doSomething ( "great!" ) ;
> }
>
> function doSomething ( id : String ) {
> trace("what's my id: " + id ) ;
> }
>
>
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] AS3.0 and C++

2007-06-04 Thread Holth, Daniel C.
You may want to explore Apollo.  It allows for RIAs to be developed for
the desktop.
http://labs.adobe.com/technologies/apollo/ 

Another option would be asking around on flexcoders.
http://tech.groups.yahoo.com/group/flexcoders/


~D.C. Holth


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bharat
Varma
Sent: Monday, June 04, 2007 10:08 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] AS3.0 and C++

Hi,

I am developing an application where I would like to use Flex to talk to
some dlls / exe installed on the local machine, through a browser.

The DLLs (and or) EXE will be installed using an installer.

The workflow I would like working on the client machine is the swf
(created
by Flex) getting loaded in the browser and communicating with the dlls
installed on the machine.

I guess one way would be to use External Interface and do a

Action Script <-> Java Script <-> ActiveX  (for IE) / np dll (for
FF)

I would like to avoid installing any new activex control for my
application.
I do not need any GUI for my application either.

Is there another way to directly communicate with the dlls and
completely
avoid activex (or equivalent in FF) ?

Also, material on ExternalInterface to Win32 C++ dlls communication
seems
really sparse. Can some one point me in the right direction ?

Regards,
Bharat Varma

-- 
There are 2 kinds of people in this world -
1. Those who don't need closure.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

This e-mail and its attachments are intended only for the use of the 
addressee(s) and may contain privileged, confidential or proprietary 
information. If you are not the intended recipient, or the employee or agent 
responsible for delivering the message to the intended recipient, you are 
hereby notified that any dissemination, distribution, displaying, copying, or 
use of this information is strictly prohibited. If you have received this 
communication in error, please inform the sender immediately and delete and 
destroy any record of this message. Thank you.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] commercial flash multi-touch projects?

2007-06-04 Thread ben gomez farrell
I'm answering despite not knowing really anything about how the 
technology works - but as the Microsoft Surface links got passed around 
a few days ago, one of the links was a DIY multi touch table.  I only 
skimmed the forum link really, but it had some screen shots of the 
fingers being pressed on the glass and the area where the fingers were 
looked like blobs (hence they were talking about blob detection 
algorithms).  I think they were using some kind of camera to point up at 
the table to detect where the finger blobs were.


If some kind of video camera that can work with flash can do whatever 
optically it needs to do, and AS3 is fast enough to perform whatever 
blob detection algorithms they need, then it's very much possible in 
flash.  But you know, those are big ifs. aren't they?

ben

Merrill, Jason wrote:

Curious, how are multi-touch events handled with Flash?  Currently isn't
even remotely possible is it?  Or maybe with an ActiveX wrapper of some
kind?

Jason Merrill
Bank of America  
GT&O Learning & Leadership Development

eTools & Multimedia Team


 

  

-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf 
Of Josh Santangelo

Sent: Monday, June 04, 2007 1:17 PM
To: Flashcoders mailing list
Subject: [Flashcoders] commercial flash multi-touch projects?

Hello list -- this may be OT or rule-breaking, but please 
don't kill me over it. I did a bit of work on the MS Surface 
project on a temporary basis and had a great time with it 
(see endquote.com for some info). Unfortunately due to some 
technology decisions in the group, Flash devs are not really 
needed anymore. I'd love to do more multi-touch work, but am 
not sure who's doing work in this area combined with Flash.


If anyone is involved in or aware of projects in this area in 
need of dev help, I'd love to hear about it.


thanks,
-josh
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training 
http://www.figleaf.com http://training.figleaf.com


  

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

  

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread Merrill, Jason
>>I tend not to use Delegate and go for this easier/cleaner alternative
>>this.my_mc.onRelease = function ( ) {

I now tend to not use anonymous functions like you have and use Delegate
instead.  Anonymous functions are bad practice in my opinion.  I think
your idea is actually messier than Delegate, no offense.  At least in
AS3, neither "'trick" is necessary any more.

Jason Merrill
Bank of America  
GT&O Learning & Leadership Development
eTools & Multimedia Team


 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] commercial flash multi-touch projects?

2007-06-04 Thread Merrill, Jason
Curious, how are multi-touch events handled with Flash?  Currently isn't
even remotely possible is it?  Or maybe with an ActiveX wrapper of some
kind?

Jason Merrill
Bank of America  
GT&O Learning & Leadership Development
eTools & Multimedia Team


 

>>-Original Message-
>>From: [EMAIL PROTECTED] 
>>[mailto:[EMAIL PROTECTED] On Behalf 
>>Of Josh Santangelo
>>Sent: Monday, June 04, 2007 1:17 PM
>>To: Flashcoders mailing list
>>Subject: [Flashcoders] commercial flash multi-touch projects?
>>
>>Hello list -- this may be OT or rule-breaking, but please 
>>don't kill me over it. I did a bit of work on the MS Surface 
>>project on a temporary basis and had a great time with it 
>>(see endquote.com for some info). Unfortunately due to some 
>>technology decisions in the group, Flash devs are not really 
>>needed anymore. I'd love to do more multi-touch work, but am 
>>not sure who's doing work in this area combined with Flash.
>>
>>If anyone is involved in or aware of projects in this area in 
>>need of dev help, I'd love to hear about it.
>>
>>thanks,
>>-josh
>>___
>>Flashcoders@chattyfig.figleaf.com
>>To change your subscription options or search the archive:
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>Brought to you by Fig Leaf Software
>>Premier Authorized Adobe Consulting and Training 
>>http://www.figleaf.com http://training.figleaf.com
>>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] AS3.0 and C++

2007-06-04 Thread Andy Herrman

Getting anything like this to work would probably be a serious pain.  Flash
is designed to not allow things like this, as letting someone do that would
be a serious security/privacy/stability problem.

Without using ActiveX or Signed Java Applets to load and communicate with
the DLL (using Javascript to talk to Flash) I doubt you'd be able to do it.

 -Andy

On 6/4/07, Bharat Varma <[EMAIL PROTECTED]> wrote:


Hi,

I am developing an application where I would like to use Flex to talk to
some dlls / exe installed on the local machine, through a browser.

The DLLs (and or) EXE will be installed using an installer.

The workflow I would like working on the client machine is the swf
(created
by Flex) getting loaded in the browser and communicating with the dlls
installed on the machine.

I guess one way would be to use External Interface and do a

Action Script <-> Java Script <-> ActiveX  (for IE) / np dll (for FF)

I would like to avoid installing any new activex control for my
application.
I do not need any GUI for my application either.

Is there another way to directly communicate with the dlls and completely
avoid activex (or equivalent in FF) ?

Also, material on ExternalInterface to Win32 C++ dlls communication seems
really sparse. Can some one point me in the right direction ?

Regards,
Bharat Varma

--
There are 2 kinds of people in this world -
1. Those who don't need closure.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread Jolyon Russ

I tend not to use Delegate and go for this easier/cleaner alternative

private var scope : ClassName = this ;

this.my_mc.onRelease = function ( ) {
scope.doSomething ( "great!" ) ;
}

function doSomething ( id : String ) {
trace("what's my id: " + id ) ;
}



On 6/4/07, Daniel Glue <[EMAIL PROTECTED]> wrote:


Thanks everyone, I've been reading through the article on scope and
using the Delegate Class that Alain reccomended which was very useful
and had just come round to code a very similar solution as written out
by Fernando, thanks everyone!
Danny

On 04/06/07, Fernando Castillo <[EMAIL PROTECTED]> wrote:
> Hi Daniel,
>
> Just something like this.
>
>
> 
> import mx.utils.Delegate;
> class VersionChecker{
> private var my_lv:LoadVars;
> private var xmlAdd:String;
> private var browserType:String;
> private var ipAddress:String;
>
> public function VersionChecker(xmlAddy:String) {
> my_lv = new LoadVars();
> my_lv.onLoad = Delegate.create(this, onXMLLoad);
> xmlAdd = xmlAddy;
> startCheck();
> }
>
> private function startCheck() {
> trace("version checker starting to check:"+xmlAdd);
> my_lv.load(xmlAdd);
> }
>
> private function onXMLLoad(success:Boolean):Void {
> if(success){
> trace("OK");
> }else{
> trace("ERROR");
> }
> }
> }
>
> 
>
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Daniel
Glue
> Sent: lunes, 04 de junio de 2007 16:21
> To: Flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] Setting up loadVars onLoad handler within custom
> class
>
> Hey there, I am creating a custom class with a loadVars object that
> gets data from a web page. My problem is I can't get my loadVars
> object to load! I think I am setting the onLoad handler in the wrong
> place. Might anyone have any ideas how I set this inside my custom
> class?
>
> Thanks in advance guys!
> Danny
>
>
> Here is my code:
>
> Class VersionChecker{
> private var my_lv:LoadVars;
>private var xmlAdd:String;
>   private var browserType:String;
>   private var ipAddress:String;
>
>
> //receives url to connect to sets onLoad handler
>  public function VersionCheck(xmlAddy:String {
> xmlAdd = xmlAddy;
> my_lv.onLoad = function(success:Boolean) {
> if (success) {
> trace("loaded");
> browserType = this.browser;
> ipAddress = this.ip;
> } else {
> trace("load failed");
> }
> };
> startCheck();
> }
>
>   private function startCheck() {
> trace("version checker starting to check:"+xmlAdd);
> my_lv.load(xmlAdd);
> }
> }
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Special font issue

2007-06-04 Thread joe
Tom,

>>
Yes it is correct. But it doesn't work...The whole text is displayed
correctly in the right font but euro signs are just leftout.
while plain static text displays the euro sign perfectly..
>>
I spent some time on this problem and eventually solved it. I can't remember
the details but the solution is based on two key bits of information

There are actually two character codes for the Euro symbol - a unicode one and
an ASCII one. Different typefaces have them in different places:

So I use character code \u20AC to put a Euro in the menu (AS2 menu component)
And character code \u00A4 to insert a euro character in Futura.

I found the only reliable way to embed the Euro character is to create a dummy
dynamic textfield with the Euro in it and set to your specified font and
typestyle (bold etc). Make sure the font is embedded and explicitly specify
the euro in the emded box.

Hope this is helpful

Joe


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] commercial flash multi-touch projects?

2007-06-04 Thread Josh Santangelo
Hello list -- this may be OT or rule-breaking, but please don't kill  
me over it. I did a bit of work on the MS Surface project on a  
temporary basis and had a great time with it (see endquote.com for  
some info). Unfortunately due to some technology decisions in the  
group, Flash devs are not really needed anymore. I'd love to do more  
multi-touch work, but am not sure who's doing work in this area  
combined with Flash.


If anyone is involved in or aware of projects in this area in need of  
dev help, I'd love to hear about it.


thanks,
-josh
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread Daniel Glue

Thanks everyone, I've been reading through the article on scope and
using the Delegate Class that Alain reccomended which was very useful
and had just come round to code a very similar solution as written out
by Fernando, thanks everyone!
Danny

On 04/06/07, Fernando Castillo <[EMAIL PROTECTED]> wrote:

Hi Daniel,

Just something like this.



import mx.utils.Delegate;
class VersionChecker{
private var my_lv:LoadVars;
private var xmlAdd:String;
private var browserType:String;
private var ipAddress:String;

public function VersionChecker(xmlAddy:String) {
my_lv = new LoadVars();
my_lv.onLoad = Delegate.create(this, onXMLLoad);
xmlAdd = xmlAddy;
startCheck();
}

private function startCheck() {
trace("version checker starting to check:"+xmlAdd);
my_lv.load(xmlAdd);
}

private function onXMLLoad(success:Boolean):Void {
if(success){
trace("OK");
}else{
trace("ERROR");
}
}
}





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Daniel Glue
Sent: lunes, 04 de junio de 2007 16:21
To: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Setting up loadVars onLoad handler within custom
class

Hey there, I am creating a custom class with a loadVars object that
gets data from a web page. My problem is I can't get my loadVars
object to load! I think I am setting the onLoad handler in the wrong
place. Might anyone have any ideas how I set this inside my custom
class?

Thanks in advance guys!
Danny


Here is my code:

Class VersionChecker{
private var my_lv:LoadVars;
   private var xmlAdd:String;
  private var browserType:String;
  private var ipAddress:String;


//receives url to connect to sets onLoad handler
 public function VersionCheck(xmlAddy:String {
xmlAdd = xmlAddy;
my_lv.onLoad = function(success:Boolean) {
if (success) {
trace("loaded");
browserType = this.browser;
ipAddress = this.ip;
} else {
trace("load failed");
}
};
startCheck();
}

  private function startCheck() {
trace("version checker starting to check:"+xmlAdd);
my_lv.load(xmlAdd);
}
}
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Special font issue

2007-06-04 Thread Tom Huynen

Yes it is correct. But it doesn't work...The whole text is displayed
correctly in the right font but euro signs are just leftout.
while plain static text displays the euro sign perfectly..





On 6/4/07, Jason Law <[EMAIL PROTECTED]> wrote:


Tom,

"35 Helvetica Thin" is the link identifier on the font symbol correct?
That should work


-Original Message-
From: [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] On Behalf Of Tom Huynen
Sent: Monday, June 04, 2007 11:16 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Special font issue

Hi Karina,

I tried two ways of embedding:

- Embedding trough the library making the font a library symbol.
- Embedding by creating a dynamic textfield (all character sets and
including the eurosign)

the first one goes by the code below.
Both don't seem to work

Tom

var root_p:MovieClip = _root;

var tf:TextFormat = new TextFormat();
tf.size = 22;
tf.color = 0x00;
tf.font = "35 Helvetica Thin";


var test_txt:TextField = root_p.createTextField("test_txt", 0, 50, 50,
500,
500);
test_txt.border = true;
test_txt.embedFonts = true;
test_txt.html = true;
test_txt.htmlText = "testing" +  "€" + "ok";
test_txt.setTextFormat(tf);





On 6/4/07, Karina Steffens <[EMAIL PROTECTED]> wrote:
>
> Hi Ton,
> What character sets are you embedding? Have you tried including the euro
> sign in the field next to the autofill button?
>
> Karina
>
> > -Original Message-
> > From: Tom Huynen [mailto:[EMAIL PROTECTED]
> > Sent: 04 June 2007 14:54
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: [Flashcoders] Special font issue
> >
> > Hi list,
> >
> > I'm developing a narrowcase project.
> > The euro sign (€) in the external xml data is encoded in this
> > way: "€"
> >
> > I use Helvetica Light to display the content. It can display
> > the eurosign perfectly when I create a static text field inb the fla.
> > However soon as I embed the font and try to create a
> > textfield dynamicly the eurosign disapears.
> >
> > The strange thing is that it works with some other fonts but
> > not with the one I need.
> >
> > I tried google all day but my problem isn't solved yet.
> >
> > Anybody some advice for me?
> >
> > Regards,
> >
> > Tom
> > ___
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training
> > http://www.figleaf.com http://training.figleaf.com
> >
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This email is intended only for the person or entity to which it is
addressed
and may contain information that is privileged, confidential or otherwise
protected from disclosure. Dissemination, distribution or copying of this
email or the information herein by anyone other than the intended
recipient,
or an employee or agent responsible for delivering the message to the
intended
recipient, is prohibited. If you have received this email in error, please
immediately notify us by calling our Help Desk at (415) 581-5552 or
by e-mailing us at [EMAIL PROTECTED]


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] External font loading - No shared libraries

2007-06-04 Thread Daniel Gregório

Does anybody has an ideia of how to load external fonts in ttf? or something
else instead of shared libraries?

thank you very much,


--
Daniel Gregório
Adobe Certified Professional
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread Fernando Castillo
Hi Daniel,

Just something like this.



import mx.utils.Delegate;
class VersionChecker{
private var my_lv:LoadVars;
private var xmlAdd:String;
private var browserType:String;
private var ipAddress:String;

public function VersionChecker(xmlAddy:String) {
my_lv = new LoadVars();
my_lv.onLoad = Delegate.create(this, onXMLLoad);
xmlAdd = xmlAddy;
startCheck();
}

private function startCheck() {
trace("version checker starting to check:"+xmlAdd);
my_lv.load(xmlAdd);
}

private function onXMLLoad(success:Boolean):Void {
if(success){
trace("OK");
}else{
trace("ERROR");
}
}
}





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Daniel Glue
Sent: lunes, 04 de junio de 2007 16:21
To: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Setting up loadVars onLoad handler within custom
class

Hey there, I am creating a custom class with a loadVars object that
gets data from a web page. My problem is I can't get my loadVars
object to load! I think I am setting the onLoad handler in the wrong
place. Might anyone have any ideas how I set this inside my custom
class?

Thanks in advance guys!
Danny


Here is my code:

Class VersionChecker{
private var my_lv:LoadVars;
   private var xmlAdd:String;
  private var browserType:String;
  private var ipAddress:String;


//receives url to connect to sets onLoad handler
 public function VersionCheck(xmlAddy:String {
xmlAdd = xmlAddy;
my_lv.onLoad = function(success:Boolean) {
if (success) {
trace("loaded");
browserType = this.browser;
ipAddress = this.ip;
} else {
trace("load failed");
}
};
startCheck();
}

  private function startCheck() {
trace("version checker starting to check:"+xmlAdd);
my_lv.load(xmlAdd);
}
}
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Special font issue

2007-06-04 Thread Jason Law
Tom,

"35 Helvetica Thin" is the link identifier on the font symbol correct? That 
should work


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Huynen
Sent: Monday, June 04, 2007 11:16 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Special font issue

Hi Karina,

I tried two ways of embedding:

- Embedding trough the library making the font a library symbol.
- Embedding by creating a dynamic textfield (all character sets and
including the eurosign)

the first one goes by the code below.
Both don't seem to work

Tom

var root_p:MovieClip = _root;

var tf:TextFormat = new TextFormat();
tf.size = 22;
tf.color = 0x00;
tf.font = "35 Helvetica Thin";


var test_txt:TextField = root_p.createTextField("test_txt", 0, 50, 50, 500,
500);
test_txt.border = true;
test_txt.embedFonts = true;
test_txt.html = true;
test_txt.htmlText = "testing" +  "€" + "ok";
test_txt.setTextFormat(tf);





On 6/4/07, Karina Steffens <[EMAIL PROTECTED]> wrote:
>
> Hi Ton,
> What character sets are you embedding? Have you tried including the euro
> sign in the field next to the autofill button?
>
> Karina
>
> > -Original Message-
> > From: Tom Huynen [mailto:[EMAIL PROTECTED]
> > Sent: 04 June 2007 14:54
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: [Flashcoders] Special font issue
> >
> > Hi list,
> >
> > I'm developing a narrowcase project.
> > The euro sign (€) in the external xml data is encoded in this
> > way: "€"
> >
> > I use Helvetica Light to display the content. It can display
> > the eurosign perfectly when I create a static text field inb the fla.
> > However soon as I embed the font and try to create a
> > textfield dynamicly the eurosign disapears.
> >
> > The strange thing is that it works with some other fonts but
> > not with the one I need.
> >
> > I tried google all day but my problem isn't solved yet.
> >
> > Anybody some advice for me?
> >
> > Regards,
> >
> > Tom
> > ___
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training
> > http://www.figleaf.com http://training.figleaf.com
> >
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This email is intended only for the person or entity to which it is addressed
and may contain information that is privileged, confidential or otherwise
protected from disclosure. Dissemination, distribution or copying of this
email or the information herein by anyone other than the intended recipient,
or an employee or agent responsible for delivering the message to the intended
recipient, is prohibited. If you have received this email in error, please
immediately notify us by calling our Help Desk at (415) 581-5552 or
by e-mailing us at [EMAIL PROTECTED]

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

[Flashcoders] Rotate in absolute center AS3

2007-06-04 Thread João Paulo Gino do Rego

Hey there, I need rotate  Bitmap texture in AS3.

I use

object.rotate = 45

unhappyness the rotate is no absulute center. The rotate is corner high
left. What is happends? How to set position pivot in center.

I need the texture rotate in with the self center.

Thank a lot
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Flash Developer Needed

2007-06-04 Thread Rob Kingyens

Our company is currently seeking a Flash developer to work with us on a
project (temp or contract basis).

Candidates must have existing experience working with Actionscript, XML,
CSS, sending data to a Windows Web Service and SCORM 1.2 compliance.

Please reply to [EMAIL PROTECTED] if interested in this opportunity.

Best regards.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] OT: Upgrading to Windows Vista

2007-06-04 Thread nik crosina

ebuyer.com I find has reasonable prices and a good mix of versions
(including OEM).
scan.co.uk is another option.

Nik

On 6/4/07, Paul Steven <[EMAIL PROTECTED]> wrote:

I can't find anywhere to download windows vista from. Microsoft only appear
to allow you to download it if you are in the US - I am in the UK..

Anyone know where I can download a copy from in the UK?

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com




--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Special font issue

2007-06-04 Thread Tom Huynen

Hi Karina,

I tried two ways of embedding:

- Embedding trough the library making the font a library symbol.
- Embedding by creating a dynamic textfield (all character sets and
including the eurosign)

the first one goes by the code below.
Both don't seem to work

Tom

var root_p:MovieClip = _root;

var tf:TextFormat = new TextFormat();
tf.size = 22;
tf.color = 0x00;
tf.font = "35 Helvetica Thin";


var test_txt:TextField = root_p.createTextField("test_txt", 0, 50, 50, 500,
500);
test_txt.border = true;
test_txt.embedFonts = true;
test_txt.html = true;
test_txt.htmlText = "testing" +  "€" + "ok";
test_txt.setTextFormat(tf);





On 6/4/07, Karina Steffens <[EMAIL PROTECTED]> wrote:


Hi Ton,
What character sets are you embedding? Have you tried including the euro
sign in the field next to the autofill button?

Karina

> -Original Message-
> From: Tom Huynen [mailto:[EMAIL PROTECTED]
> Sent: 04 June 2007 14:54
> To: flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] Special font issue
>
> Hi list,
>
> I'm developing a narrowcase project.
> The euro sign (€) in the external xml data is encoded in this
> way: "€"
>
> I use Helvetica Light to display the content. It can display
> the eurosign perfectly when I create a static text field inb the fla.
> However soon as I embed the font and try to create a
> textfield dynamicly the eurosign disapears.
>
> The strange thing is that it works with some other fonts but
> not with the one I need.
>
> I tried google all day but my problem isn't solved yet.
>
> Anybody some advice for me?
>
> Regards,
>
> Tom
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com http://training.figleaf.com
>

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] AS3.0 and C++

2007-06-04 Thread Bharat Varma

Hi,

I am developing an application where I would like to use Flex to talk to
some dlls / exe installed on the local machine, through a browser.

The DLLs (and or) EXE will be installed using an installer.

The workflow I would like working on the client machine is the swf (created
by Flex) getting loaded in the browser and communicating with the dlls
installed on the machine.

I guess one way would be to use External Interface and do a

   Action Script <-> Java Script <-> ActiveX  (for IE) / np dll (for FF)

I would like to avoid installing any new activex control for my application.
I do not need any GUI for my application either.

Is there another way to directly communicate with the dlls and completely
avoid activex (or equivalent in FF) ?

Also, material on ExternalInterface to Win32 C++ dlls communication seems
really sparse. Can some one point me in the right direction ?

Regards,
Bharat Varma

--
There are 2 kinds of people in this world -
1. Those who don't need closure.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread Alain Rousseau

To learn more about Delegate I'd suggest you read the following :
http://osflash.org/flashcoders/as2

Alain

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rákos Attila
Sent: 4 juin 2007 10:32
To: Daniel Glue
Subject: Re: [Flashcoders] Setting up loadVars onLoad handler within custom
class


Where did you instantiate LoadVars? I don't see it anywhere. But it almost
doesn't matter, since you will have scoping problems, look after some kind
of delegation (eg. mx.utils.Delegate).

  Attila

DG> Hey there, I am creating a custom class with a loadVars object that 
DG> gets data from a web page. My problem is I can't get my loadVars 
DG> object to load! I think I am setting the onLoad handler in the wrong 
DG> place. Might anyone have any ideas how I set this inside my custom 
DG> class?
DG> 
DG> Thanks in advance guys!
DG> Danny
DG> 
DG> 
DG> Here is my code:
DG> 
DG> Class VersionChecker{
DG> private var my_lv:LoadVars;
DG>private var xmlAdd:String;
DG>   private var browserType:String;
DG>   private var ipAddress:String;
DG> 
DG> 
DG> //receives url to connect to sets onLoad handler
DG>  public function VersionCheck(xmlAddy:String {
DG> xmlAdd = xmlAddy;
DG> my_lv.onLoad = function(success:Boolean) {
DG> if (success) {
DG> trace("loaded");
DG> browserType = this.browser;
DG> ipAddress = this.ip;
DG> } else {
DG> trace("load failed");
DG> }
DG> };
DG> startCheck();
DG> }
DG> 
DG>   private function startCheck() {
DG> trace("version checker starting to check:"+xmlAdd);
DG> my_lv.load(xmlAdd);
DG> }
DG> }


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

No virus found in this incoming message.
Checked by AVG Free Edition. 
Version: 7.5.472 / Virus Database: 269.8.7/830 - Release Date: 2007-06-03
12:47
 

No virus found in this outgoing message.
Checked by AVG Free Edition. 
Version: 7.5.472 / Virus Database: 269.8.7/830 - Release Date: 2007-06-03
12:47
 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread Daniel Portilla Heras
Hi Daniel, Don't you have this line in your code

my_lv = new LoadVars();

?

If you don't have this, your loadvars will not work.

Bye

Daniel Portilla Heras
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread Merrill, Jason
Where is your new LoadVars() statement for the my_lv variable?

Also, this:  

public function VersionCheck(xmlAddy:String {  

Should throw a compiler error

Jason Merrill
Bank of America  
GT&O Learning & Leadership Development
eTools & Multimedia Team


 

>>-Original Message-
>>From: [EMAIL PROTECTED] 
>>[mailto:[EMAIL PROTECTED] On Behalf 
>>Of Daniel Glue
>>Sent: Monday, June 04, 2007 10:21 AM
>>To: Flashcoders@chattyfig.figleaf.com
>>Subject: [Flashcoders] Setting up loadVars onLoad handler 
>>within custom class
>>
>>Hey there, I am creating a custom class with a loadVars 
>>object that gets data from a web page. My problem is I can't 
>>get my loadVars object to load! I think I am setting the 
>>onLoad handler in the wrong place. Might anyone have any 
>>ideas how I set this inside my custom class?
>>
>>Thanks in advance guys!
>>Danny
>>
>>
>>Here is my code:
>>
>>Class VersionChecker{
>>  private var my_lv:LoadVars;
>> private var xmlAdd:String;
>>  private var browserType:String;
>>  private var ipAddress:String;
>>
>>
>>//receives url to connect to sets onLoad handler
>> public function VersionCheck(xmlAddy:String {
>>  xmlAdd = xmlAddy;
>>  my_lv.onLoad = function(success:Boolean) {
>>  if (success) {
>>trace("loaded");
>>  browserType = this.browser;
>>  ipAddress = this.ip;
>>  } else {
>>  trace("load failed");
>>  }
>>  };
>>  startCheck();
>>  }
>>
>>  private function startCheck() {
>>  trace("version checker starting to check:"+xmlAdd);
>>  my_lv.load(xmlAdd);
>>  }
>>}
>>___
>>Flashcoders@chattyfig.figleaf.com
>>To change your subscription options or search the archive:
>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>Brought to you by Fig Leaf Software
>>Premier Authorized Adobe Consulting and Training 
>>http://www.figleaf.com http://training.figleaf.com
>>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] scrollwheel bug in AS3?

2007-06-04 Thread Adam Mark
I am migrating code from AS2 to AS3 and came across some unexpected  
browser behavior -- both the SWF and the surrounding web page are  
scrolling at the same time.



The following examples are both running in 9,0,28,0 (IE 7 and Firefox  
2).


In AS2 (compiled to either v7 or v9), the surrounding web page does  
NOT scroll while the embedded SWF has focus and captures wheel events.


var mouseListener:Object = new Object();
mouseListener.onMouseWheel = function (delta) {
myMovieClip._x += delta;
}
Mouse.addListener(mouseListener);


In AS3 (compiled to v9), both the surrounding web page and the  
embedded SWF scroll at the same time (while the SWF has focus).


myMovieClip.addEventListener(MouseEvent.MOUSE_WHEEL, handleMouseWheel);

private function handleMouseWheel(evt:MouseEvent):void {
myMovieClip.x += evt.delta;
}


I am trying to prevent the web page from scrolling while the SWF has  
focus and receives MOUSE_WHEEL events.  I have tried stopPropagation 
() and stopImmediatePropagation() to no avail.


The behavior is the same whether I render the SWF object/embed code  
via JavaScript or directly in the HTML.


Thoughts?

Thanks,
Adam


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread R�kos Attila

Where did you instantiate LoadVars? I don't see it anywhere. But it
almost doesn't matter, since you will have scoping problems, look
after some kind of delegation (eg. mx.utils.Delegate).

  Attila

DG> Hey there, I am creating a custom class with a loadVars object that
DG> gets data from a web page. My problem is I can't get my loadVars
DG> object to load! I think I am setting the onLoad handler in the wrong
DG> place. Might anyone have any ideas how I set this inside my custom
DG> class?
DG> 
DG> Thanks in advance guys!
DG> Danny
DG> 
DG> 
DG> Here is my code:
DG> 
DG> Class VersionChecker{
DG> private var my_lv:LoadVars;
DG>private var xmlAdd:String;
DG>   private var browserType:String;
DG>   private var ipAddress:String;
DG> 
DG> 
DG> //receives url to connect to sets onLoad handler
DG>  public function VersionCheck(xmlAddy:String {
DG> xmlAdd = xmlAddy;
DG> my_lv.onLoad = function(success:Boolean) {
DG> if (success) {
DG> trace("loaded");
DG> browserType = this.browser;
DG> ipAddress = this.ip;
DG> } else {
DG> trace("load failed");
DG> }
DG> };
DG> startCheck();
DG> }
DG> 
DG>   private function startCheck() {
DG> trace("version checker starting to check:"+xmlAdd);
DG> my_lv.load(xmlAdd);
DG> }
DG> }


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Special font issue

2007-06-04 Thread Tom Huynen

Hello Jason,

Thanks for your reaction.
I do embed the font as a library item. This normally always works. Today I
discoverd however that some fonts to display the eurosign and some don't.
The logical explanation would be that the sign isn't supported for those
specific fonts.

However, when I try to type the sign in the fla in a static form the font
does support the sign.

Any idea about  this situation?

Regards,

Tom


On 6/4/07, Jason Law <[EMAIL PROTECTED]> wrote:


You may need to add the font as a library item. When creating the text
field dynamically it has issues with embedding special characters in my own
tests.


-Original Message-
From: [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] On Behalf Of Tom Huynen
Sent: Monday, June 04, 2007 9:54 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Special font issue

Hi list,

I'm developing a narrowcase project.
The euro sign (€) in the external xml data is encoded in this way:
"€"

I use Helvetica Light to display the content. It can display the eurosign
perfectly when I create a static text field inb the fla.
However soon as I embed the font and try to create a textfield dynamicly
the
eurosign disapears.

The strange thing is that it works with some other fonts but not with the
one I need.

I tried google all day but my problem isn't solved yet.

Anybody some advice for me?

Regards,

Tom
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This email is intended only for the person or entity to which it is
addressed
and may contain information that is privileged, confidential or otherwise
protected from disclosure. Dissemination, distribution or copying of this
email or the information herein by anyone other than the intended
recipient,
or an employee or agent responsible for delivering the message to the
intended
recipient, is prohibited. If you have received this email in error, please
immediately notify us by calling our Help Desk at (415) 581-5552 or
by e-mailing us at [EMAIL PROTECTED]


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Special font issue

2007-06-04 Thread Karina Steffens
Hi Ton,
What character sets are you embedding? Have you tried including the euro sign 
in the field next to the autofill button?

Karina

> -Original Message-
> From: Tom Huynen [mailto:[EMAIL PROTECTED] 
> Sent: 04 June 2007 14:54
> To: flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] Special font issue
> 
> Hi list,
> 
> I'm developing a narrowcase project.
> The euro sign (€) in the external xml data is encoded in this 
> way: "€"
> 
> I use Helvetica Light to display the content. It can display 
> the eurosign perfectly when I create a static text field inb the fla.
> However soon as I embed the font and try to create a 
> textfield dynamicly the eurosign disapears.
> 
> The strange thing is that it works with some other fonts but 
> not with the one I need.
> 
> I tried google all day but my problem isn't solved yet.
> 
> Anybody some advice for me?
> 
> Regards,
> 
> Tom
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training 
> http://www.figleaf.com http://training.figleaf.com
> 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Record client's webcam without Flash Server

2007-06-04 Thread JulianG

Hi all!

I 'd like to know if there is a way to record the client's webcam or mic 
input, and send it to the server without using the Flash Server or other 
open source alternative services. I mean, sending the video over HTTP.


I need my users to record they webcam videos and send those videos to 
the server. what options do I have?


thanks in advance!
JulianG


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Setting up loadVars onLoad handler within custom class

2007-06-04 Thread Daniel Glue

Hey there, I am creating a custom class with a loadVars object that
gets data from a web page. My problem is I can't get my loadVars
object to load! I think I am setting the onLoad handler in the wrong
place. Might anyone have any ideas how I set this inside my custom
class?

Thanks in advance guys!
Danny


Here is my code:

Class VersionChecker{
private var my_lv:LoadVars;
   private var xmlAdd:String;
 private var browserType:String;
 private var ipAddress:String;


//receives url to connect to sets onLoad handler
public function VersionCheck(xmlAddy:String {
xmlAdd = xmlAddy;
my_lv.onLoad = function(success:Boolean) {
if (success) {
   trace("loaded");
browserType = this.browser;
ipAddress = this.ip;
} else {
trace("load failed");
}
};
startCheck();
}

 private function startCheck() {
trace("version checker starting to check:"+xmlAdd);
my_lv.load(xmlAdd);
}
}
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Special font issue

2007-06-04 Thread Jason Law
You may need to add the font as a library item. When creating the text field 
dynamically it has issues with embedding special characters in my own tests.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Huynen
Sent: Monday, June 04, 2007 9:54 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Special font issue

Hi list,

I'm developing a narrowcase project.
The euro sign (€) in the external xml data is encoded in this way: "€"

I use Helvetica Light to display the content. It can display the eurosign
perfectly when I create a static text field inb the fla.
However soon as I embed the font and try to create a textfield dynamicly the
eurosign disapears.

The strange thing is that it works with some other fonts but not with the
one I need.

I tried google all day but my problem isn't solved yet.

Anybody some advice for me?

Regards,

Tom
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This email is intended only for the person or entity to which it is addressed
and may contain information that is privileged, confidential or otherwise
protected from disclosure. Dissemination, distribution or copying of this
email or the information herein by anyone other than the intended recipient,
or an employee or agent responsible for delivering the message to the intended
recipient, is prohibited. If you have received this email in error, please
immediately notify us by calling our Help Desk at (415) 581-5552 or
by e-mailing us at [EMAIL PROTECTED]

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

[Flashcoders] Special font issue

2007-06-04 Thread Tom Huynen

Hi list,

I'm developing a narrowcase project.
The euro sign (€) in the external xml data is encoded in this way: "€"

I use Helvetica Light to display the content. It can display the eurosign
perfectly when I create a static text field inb the fla.
However soon as I embed the font and try to create a textfield dynamicly the
eurosign disapears.

The strange thing is that it works with some other fonts but not with the
one I need.

I tried google all day but my problem isn't solved yet.

Anybody some advice for me?

Regards,

Tom
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] OT: Upgrading to Windows Vista

2007-06-04 Thread Paul Steven
I can't find anywhere to download windows vista from. Microsoft only appear
to allow you to download it if you are in the US - I am in the UK..

Anyone know where I can download a copy from in the UK?

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] OT: Upgrading to Windows Vista

2007-06-04 Thread Ian Thomas

Hi Paul,
 The main problems we've had in migrating to Vista have all been to
do with installation - where you can (or more specifically can't)
write files to during the install process, and where you can write
files to at application runtime. The latter is very restrictive. (Our
disks write logfiles  etc. and store settings during use). We've as
yet had no problems with Flash itself.

Cheers,
 Ian

On 6/4/07, Paul Steven <[EMAIL PROTECTED]> wrote:

A client is reporting problems running a flash CDROM (packaged with Zinc) on
windows vista so I need to upgrade to Windows Vista to enable me to debug
the problem (I am currently on Windows XP Home edition).

Just wanted to know if there are any general problems relating to upgrading
to Vista I need to be aware of and what version of Vista is recommended.
Also where is the best place to purchase Windows Vista?

Thanks

Paul

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] OT: Upgrading to Windows Vista

2007-06-04 Thread Johannes Nel

we are having some issues with flex builder's plugin version and eclipse 3.2and
3.3 on vista

On 6/4/07, Paul Steven <[EMAIL PROTECTED]> wrote:


A client is reporting problems running a flash CDROM (packaged with Zinc)
on
windows vista so I need to upgrade to Windows Vista to enable me to debug
the problem (I am currently on Windows XP Home edition).

Just wanted to know if there are any general problems relating to
upgrading
to Vista I need to be aware of and what version of Vista is recommended.
Also where is the best place to purchase Windows Vista?

Thanks

Paul

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





--
j:pn
http://www.lennel.org
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] OT: Upgrading to Windows Vista

2007-06-04 Thread Paul Steven
A client is reporting problems running a flash CDROM (packaged with Zinc) on
windows vista so I need to upgrade to Windows Vista to enable me to debug
the problem (I am currently on Windows XP Home edition).

Just wanted to know if there are any general problems relating to upgrading
to Vista I need to be aware of and what version of Vista is recommended.
Also where is the best place to purchase Windows Vista?

Thanks

Paul

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] XMLSocket and problems

2007-06-04 Thread [EMAIL PROTECTED]
I use AS2.0 /  XMLSocket connections a lot and it's the onXML method I 
use to catch inbound stuff - not sure it this is your issue, but a 
thought anyhow

>Original Message
>From: [EMAIL PROTECTED]
>Date: 03/06/2007 23:28 
>To: "Flashcoders mailing list"
>Subj: [Flashcoders] XMLSocket and problems
>
>Hey got a problem and not sure where to look for hte issue,
>
>I using XMLSocket and trying to connect to a data port for
>information.. It does the same thing in the sandbox or running  from
>the server where it trying to connect too...
>
>I connect to the server  and the onconnect is executed... but the
>problem is I don't get andyOnData  data coming in...
>
>if i telnet to the server and port , the server spews out 
information.
>port is above 1024
>
>I am using flash 8
>___
>Flashcoders@chattyfig.figleaf.com
>To change your subscription options or search the archive:
>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
>Brought to you by Fig Leaf Software
>Premier Authorized Adobe Consulting and Training
>http://www.figleaf.com
>http://training.figleaf.com
>






___

Tiscali Broadband only £9.99 a month for your first 3 months! 
http://www.tiscali.co.uk/products/broadband/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com