[Flashcoders] send email from flash project (exe)

2011-05-05 Thread Bassam M
Hi Guys
I'm I want to send email from flash project file I tried to use sendAndLoad
but it's not working
this is the Code

var newLaodVars = new LoadVars();
newLaodVars.myName1 = main.name.txt_name.text;
newLaodVars.myEmail1 = main.email.txt_email.text;
newLaodVars.mySubject1 = main.subject.txt_subject.text;

newLaodVars.myMassage1 = main.msg.txt_msg.text;
newLaodVars.sendAndLoad(http://.sensemis.com/test/contact.aspx
,newLaodVars,POST);
trace(newLaodVars)

I need help please

Thanks
Bassam
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] send email from flash project (exe)

2011-05-05 Thread Cor
Hi Bassam,

Try this:

newLoadVars = new URLVariables();
loadvarSend=new URLRequest((http://.sensemis.com/test/contact.aspx;);
loadvarSend.method=URLRequestMethod.POST;
loadvarSend.data=newLoadVars;
loadvarLoader=new URLLoader  ;
loadvarLoader.dataFormat=URLLoaderDataFormat.VARIABLES;
loadvarLoader.addEventListener(Event.COMPLETE, completeLoginHandler, false,
0, true);
 newLoadVars.myName1 = main.name.txt_name.text;
newLoadVars.myEmail1 = main.email.txt_email.text;
newLoadVars.mySubject1 = main.subject.txt_subject.text;
newLoadVars.myMassage1 = main.msg.txt_msg.text;
loadvarLoader.load(loadvarSend);


Regards,
Cor van Dooren
The Netherlands


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Bassam M
Sent: donderdag 5 mei 2011 9:43
To: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] send email from flash project (exe)

Hi Guys
I'm I want to send email from flash project file I tried to use sendAndLoad
but it's not working this is the Code

var newLoadVars = new LoadVars();
newLoadVars.myName1 = main.name.txt_name.text;
newLoadVars.myEmail1 = main.email.txt_email.text;
newLoadVars.mySubject1 = main.subject.txt_subject.text;

newLoadVars.myMassage1 = main.msg.txt_msg.text;
newLoadVars.sendAndLoad(http://.sensemis.com/test/contact.aspx
,newLoadVars,POST);
trace(newLoadVars)

I need help please

Thanks
Bassam
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] send email from flash project (exe)

2011-05-05 Thread Bassam M
Thanks you Cor
my code now working the problem was in the server

Regard's
Bassam

On Thu, May 5, 2011 at 12:54 AM, Cor c...@chello.nl wrote:

 Hi Bassam,

 Try this:

 newLoadVars = new URLVariables();
 loadvarSend=new URLRequest((http://.sensemis.com/test/contact.aspx;);
 loadvarSend.method=URLRequestMethod.POST;
 loadvarSend.data=newLoadVars;
 loadvarLoader=new URLLoader  ;
 loadvarLoader.dataFormat=URLLoaderDataFormat.VARIABLES;
 loadvarLoader.addEventListener(Event.COMPLETE, completeLoginHandler, false,
 0, true);
  newLoadVars.myName1 = main.name.txt_name.text;
 newLoadVars.myEmail1 = main.email.txt_email.text;
 newLoadVars.mySubject1 = main.subject.txt_subject.text;
 newLoadVars.myMassage1 = main.msg.txt_msg.text;
 loadvarLoader.load(loadvarSend);


 Regards,
 Cor van Dooren
 The Netherlands


 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Bassam M
 Sent: donderdag 5 mei 2011 9:43
 To: Flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] send email from flash project (exe)

 Hi Guys
 I'm I want to send email from flash project file I tried to use sendAndLoad
 but it's not working this is the Code

 var newLoadVars = new LoadVars();
newLoadVars.myName1 = main.name.txt_name.text;
newLoadVars.myEmail1 = main.email.txt_email.text;
newLoadVars.mySubject1 = main.subject.txt_subject.text;

newLoadVars.myMassage1 = main.msg.txt_msg.text;
newLoadVars.sendAndLoad(http://.sensemis.com/test/contact.aspx
 ,newLoadVars,POST);
trace(newLoadVars)

 I need help please

 Thanks
 Bassam
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] E4X question: finding parent

2011-05-05 Thread Mendelsohn, Michael
Hi list...

I'm trying to find some xml's parent attribute.

I have pet name=Sugar/ and I want to find B.

var pets:XML = pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets;

I can't seem to find it.  Anyone know how?

Thanks,
- Michael M.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Matt Folkard

would help if I answer the question:

childnode.parent().@group

*__

**Plastic Martians Ltd.*
email: m...@plasticmartians.co.uk
web:www.plasticmartians.co.uk
mobile: 07763 986 485
phone: 01434 382 973

On 05/05/2011 16:42, Matt Folkard wrote:

parent() should do it, as in:

childnode.parent()

Cheers

matt

*__

**Plastic Martians Ltd.*
email: m...@plasticmartians.co.uk
web:www.plasticmartians.co.uk
mobile: 07763 986 485
phone: 01434 382 973

On 05/05/2011 16:32, Mendelsohn, Michael wrote:

Hi list...

I'm trying to find some xml's parent attribute.

I havepet name=Sugar/  and I want to find B.

var pets:XML =pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets;

I can't seem to find it.  Anyone know how?

Thanks,
- Michael M.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Matt Folkard

parent() should do it, as in:

childnode.parent()

Cheers

matt

*__

**Plastic Martians Ltd.*
email: m...@plasticmartians.co.uk
web:www.plasticmartians.co.uk
mobile: 07763 986 485
phone: 01434 382 973

On 05/05/2011 16:32, Mendelsohn, Michael wrote:

Hi list...

I'm trying to find some xml's parent attribute.

I havepet name=Sugar/  and I want to find B.

var pets:XML =pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets;

I can't seem to find it.  Anyone know how?

Thanks,
- Michael M.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Geografiek
Hi Michael,
how about the following (not tested):
var petsList:XMLList = pets.*;
var sugarDaddy:XMLList = petsList.(pet name == Sugar);
trace(sugarDaddy@group);
HTH
Willem van den Goorbergh

On 5 mei 2011, at 17:32, Mendelsohn, Michael wrote:

 Hi list...
 
 I'm trying to find some xml's parent attribute.
 
 I have pet name=Sugar/ and I want to find B.
 
 var pets:XML = pets group=A
   pet name=Rover/
   pet name=Buffy/
 /pets
 pets group=B
   pet name=Spot/
   pet name=Sugar/
 /pets;
 
 I can't seem to find it.  Anyone know how?
 
 Thanks,
 - Michael M.
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
Geografiek is a Dutch, Utrecht-based map and chart design company.
Willem van den Goorbergh can be contacted by telephone: (+31)30-2719512 or cell 
phone: (+31)6-26372378
or by fax: (+31)302719687
snail mail: Hooghiemstraplein 89 3514 AX UTRECHT
Visit our website at: www.geografiek.nl
twitter: @wvdgoorbergh
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Nathan Mynarcik
Perhaps

[code]
xml..GroupNodeName
[/code]

 should get the parent node for ya?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Mendelsohn, Michael
 childnode.parent().@group

Thanks, Matt.  Well, I'm getting stuck on finding the correct node then.

How do I find the node in the xml, given the node I have?

var myPet:XML = pet name=Sugar/

I get errors with a statements like these:
pets..(pet.toXMLString() == myPet.toXMLString());
pets..(* == myPet);

Once I have that, then I can do the parent() method call.

 var pets:XML =pets group=A
  pet name=Rover/
  pet name=Buffy/
 /pets
 pets group=B
  pet name=Spot/
  pet name=Sugar/
 /pets;

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Kenneth Kawamoto

var xml:XML = root
pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets
/root;

trace(xml.pets.pet.(@name == Sugar).parent().@group);

// B

Perhaps you don't want to call your XML pets as it's a node name as well.

Kenneth Kawamoto
http://www.materiaprima.co.uk/

On 05/05/2011 16:32, Mendelsohn, Michael wrote:

Hi list...

I'm trying to find some xml's parent attribute.

I havepet name=Sugar/  and I want to find B.

var pets:XML =pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets;

I can't seem to find it.  Anyone know how?

Thanks,
- Michael M.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Matt Folkard

Errr, my very limited E4X knowledge now deserts me, but try:

pets.pet.(@name ==Sugar).parent().@group

*__

**Plastic Martians Ltd.*
email: m...@plasticmartians.co.uk
web:www.plasticmartians.co.uk
mobile: 07763 986 485
phone: 01434 382 973

On 05/05/2011 16:50, Mendelsohn, Michael wrote:

childnode.parent().@group

Thanks, Matt.  Well, I'm getting stuck on finding the correct node then.

How do I find the node in the xml, given the node I have?

var myPet:XML =pet name=Sugar/

I get errors with a statements like these:
pets..(pet.toXMLString() == myPet.toXMLString());
pets..(* == myPet);

Once I have that, then I can do the parent() method call.


var pets:XML =pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets;

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Glen Pike

@name - will that cause problems because name is a property of XML nodes?

if it is maybe try attribute(name) instead?

On 05/05/2011 16:53, Kenneth Kawamoto wrote:

var xml:XML = root
pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets
/root;

trace(xml.pets.pet.(@name == Sugar).parent().@group);

// B

Perhaps you don't want to call your XML pets as it's a node name as 
well.


Kenneth Kawamoto
http://www.materiaprima.co.uk/

On 05/05/2011 16:32, Mendelsohn, Michael wrote:

Hi list...

I'm trying to find some xml's parent attribute.

I havepet name=Sugar/  and I want to find B.

var pets:XML =pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets;

I can't seem to find it.  Anyone know how?

Thanks,
- Michael M.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Mendelsohn, Michael
Thanks everyone.

I don't want to find the pet node by using just @name.  I need to match a 
node in xml.pets, given a full node, like so:
xml.pets.(pet.toXMLString() == myPet.toXMLString());

I can't seem to get part that working.

I think it should be easy to use parent() once I have that bit, right?

- Michael M.



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com 
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Kenneth Kawamoto
Sent: Thursday, May 05, 2011 11:54 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] E4X question: finding parent

var xml:XML = root
pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets
/root;

trace(xml.pets.pet.(@name == Sugar).parent().@group);

// B

Perhaps you don't want to call your XML pets as it's a node name as well.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Kenneth Kawamoto
trace(xml.pets.pet.(toXMLString() == 'pet 
name=Sugar/').parent().@group);


// B

--
Kenneth Kawamoto
http://www.materiaprima.co.uk/

On 05/05/2011 17:06, Mendelsohn, Michael wrote:

Thanks everyone.

I don't want to find thepet  node by using just @name.  I need to match a 
node in xml.pets, given a full node, like so:
xml.pets.(pet.toXMLString() == myPet.toXMLString());

I can't seem to get part that working.

I think it should be easy to use parent() once I have that bit, right?

- Michael M.



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com 
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Kenneth Kawamoto
Sent: Thursday, May 05, 2011 11:54 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] E4X question: finding parent

var xml:XML =root
pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets
/root;

trace(xml.pets.pet.(@name == Sugar).parent().@group);

// B

Perhaps you don't want to call your XML pets as it's a node name as well.




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Kenneth Kawamoto

This may be slightly more elegant than using toXMLString():

trace(xml.pets.pet.(contains(pet name=Sugar/)).parent().@group);

// B

Kenneth Kawamoto
http://www.materiaprima.co.uk/

On 05/05/2011 17:06, Mendelsohn, Michael wrote:

Thanks everyone.

I don't want to find thepet  node by using just @name.  I need to match a 
node in xml.pets, given a full node, like so:
xml.pets.(pet.toXMLString() == myPet.toXMLString());

I can't seem to get part that working.

I think it should be easy to use parent() once I have that bit, right?

- Michael M.



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com 
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Kenneth Kawamoto
Sent: Thursday, May 05, 2011 11:54 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] E4X question: finding parent

var xml:XML =root
pets group=A
pet name=Rover/
pet name=Buffy/
/pets
pets group=B
pet name=Spot/
pet name=Sugar/
/pets
/root;

trace(xml.pets.pet.(@name == Sugar).parent().@group);

// B

Perhaps you don't want to call your XML pets as it's a node name as well.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] E4X question: finding parent

2011-05-05 Thread Mendelsohn, Michael
Thanks everyone for your responses.  The real xml was actually more complicated 
than what I posted.  Is it me?  Sometimes it seems that E4X solutions are 
difficult to figure out.

The actual solution in my project is this, where rslt is an XMLList:
rslt = topics..descendants(*).(contains(XML(filter)));
rslt = new XMLList(rslt[0].parent());

I don't know why I had to have a parent() call on a separate line, but when I 
had it on one line, the first line was null.

Sometimes perplexed by E4X,
- Michael M.


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] interesting AS2 SharedObject bug

2011-05-05 Thread Andrew Sinning
I'm using an AS2 SharedObject along with Red5 to synchronize a group
of user in a real-time game.  I found an interesting bug.

I have an array:

  var someArray:Array = [1,2,3];

I have a dataObject that contains someArray and some other properties:

  dataObject = {
 someProperty: 1,
 someArray: someArray:Array,
 etc...
  }

Then, in my shared object I have references to both dataObject (which
contains someArray) AND someArray

  sharedObject.currentState = {
   dataObject: dataObject,
   someArray: someArray }

After making the change to sharedObject.currentState, when the
synchronized movie checks the value of

  sharedObject.currentState.someArray

its value is equal to

  sharedObject.currentState.dataObject

In conclusion, it appears that the SharedObject does not like it when
multiple references to the same object are included in a sharedObject.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Security error with LoaderMax

2011-05-05 Thread Kerry Thompson
Flex 4, FlashBuilder 4.

I am building and running an app on my Windows 7 machine. It runs fine here,
but when my client installs it on his machine, he gets a SecurityError:
Error #2148: Only local-with-filesystem and trusted local SWF files may
access local resources.

That's happening when I start the LoaderMax load() process. I have appended
about a dozen loaders, and they are accessing files on the local drive.

It happens on Windows 7 in IE and Firefox, and on the Mac. The odd thing is
that it was working for them two days ago, and I haven't changed the loading
process at all.

Any ideas?

Cordially,

Kerry Thompson
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Security error with LoaderMax

2011-05-05 Thread Julian Wilson
You probably have a trusted path in your Security Manager where your SWF is 
being viewed. His machine won't have this. Adding a crossdomain.xml file on the 
server you're loading from with localhost as a trusted site and allowDomain 
in Flash should work.

Cheers,

Julian Wilson
Web/Desktop/Mobile Developer
Hollywood, CA 
www.julianrwilson.com
m: +1 (310) 488-4336


On May 5, 2011, at 12:58 PM, Kerry Thompson wrote:

 Flex 4, FlashBuilder 4.
 
 I am building and running an app on my Windows 7 machine. It runs fine here,
 but when my client installs it on his machine, he gets a SecurityError:
 Error #2148: Only local-with-filesystem and trusted local SWF files may
 access local resources.
 
 That's happening when I start the LoaderMax load() process. I have appended
 about a dozen loaders, and they are accessing files on the local drive.
 
 It happens on Windows 7 in IE and Firefox, and on the Mac. The odd thing is
 that it was working for them two days ago, and I haven't changed the loading
 process at all.
 
 Any ideas?
 
 Cordially,
 
 Kerry Thompson
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Vedanayagam G has invited you to use Google Talk

2011-05-05 Thread Vedanayagam G
I've been using Google Talk and thought you might like to try it out. We can 
use it to call each other for free over the internet. Here's an invitation to 
download Google Talk. Give it a try!




Vedanayagam G has invited you to sign up for Google Talk so you can talk to 
each other for free over your computers.

To sign-up, go to:
http://www.google.com/accounts/NewAccount?service=talksendvemail=trueskipvpage=truereqemail=flashcoders@chattyfig.figleaf.comcontinue=http://www.google.com/talk/service/handleinvite?p%3DKWGukTEBAAA.dU0jqBZofkCDtHk6K27_OErk5UrCKmkHBd0OQyYj-bcDfMKtac4IKeNeMN5pgujr7zmQBQSLdeHRpVODj9fC6w.MRenwCUJVElsnzDM5C2Uqgfollowup=http://www.google.com/talk/service/HandleEmailVerified?ee%3DNGGukTEBAAA.pwD4uzz95JlxRt1Xoz_dXTnI2QSa3HwYq3et3xi8_V7YOJmSUyTHm_YfrIK72XWy.cVIVBzjHe7AigpQU6UHo4A%26p%3DKWGukTEBAAA.dU0jqBZofkCDtHk6K27_OErk5UrCKmkHBd0OQyYj-bcDfMKtac4IKeNeMN5pgujr7zmQBQSLdeHRpVODj9fC6w.MRenwCUJVElsnzDM5C2Uqg

Google Talk is a downloadable Windows* application that offers:
- Free calls over your computer anytime, from anywhere, and for as long as you 
want
- A simple and intuitive user interface for sending instant messages or making 
calls--no clutter, pop-ups or ads
- Superior voice quality through just a microphone and computer speaker
- Fast file transfers with no restrictions on file type

After signing-up, download Google Talk and sign in with your new Google Account 
username and password.
You can then begin inviting anyone you want to talk to for free.

Google Talk works with any computer speaker and microphone, such as the ones 
built-in to many PC laptops today,
as well as with wired and wireless headsets and USB phones. Google Talk also 
works across all firewalls.

Google Talk is still in beta. Just like with Gmail, we're working hard to add 
features and make improvements,
so we might also ask for your comments and suggestions periodically. We 
appreciate your help in making it even better!

Thanks,

The Google Talk Team

To learn more about Google Talk before signing up, visit:

http://www.google.com/talk/about.html

(If clicking the URLs in this message does not work, copy and paste them into 
the address bar of your browser).

* Not a Windows user? No problem. You can also connect to the Google Talk 
service from any platform using third-party clients
(http://www.google.com/talk/otherclients.html).

  
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Vedanayagam G has invited you to use Google Talk

2011-05-05 Thread Kerry Thompson
Doesn't this qualify as spam?

On Thu, May 5, 2011 at 6:05 PM, Vedanayagam G vedanaya...@nanonino.infowrote:

 I've been using Google Talk and thought you might like to try it out. We
 can use it to call each other for free over the internet. Here's an
 invitation to download Google Talk. Give it a try!

 


 Vedanayagam G has invited you to sign up for Google Talk so you can talk to
 each other for free over your computers.

 To sign-up, go to:

 http://www.google.com/accounts/NewAccount?service=talksendvemail=trueskipvpage=truereqemail=flashcoders@chattyfig.figleaf.comcontinue=http://www.google.com/talk/service/handleinvite?p%3DKWGukTEBAAA.dU0jqBZofkCDtHk6K27_OErk5UrCKmkHBd0OQyYj-bcDfMKtac4IKeNeMN5pgujr7zmQBQSLdeHRpVODj9fC6w.MRenwCUJVElsnzDM5C2Uqgfollowup=http://www.google.com/talk/service/HandleEmailVerified?ee%3DNGGukTEBAAA.pwD4uzz95JlxRt1Xoz_dXTnI2QSa3HwYq3et3xi8_V7YOJmSUyTHm_YfrIK72XWy.cVIVBzjHe7AigpQU6UHo4A%26p%3DKWGukTEBAAA.dU0jqBZofkCDtHk6K27_OErk5UrCKmkHBd0OQyYj-bcDfMKtac4IKeNeMN5pgujr7zmQBQSLdeHRpVODj9fC6w.MRenwCUJVElsnzDM5C2Uqg

 Google Talk is a downloadable Windows* application that offers:
 - Free calls over your computer anytime, from anywhere, and for as long as
 you want
 - A simple and intuitive user interface for sending instant messages or
 making calls--no clutter, pop-ups or ads
 - Superior voice quality through just a microphone and computer speaker
 - Fast file transfers with no restrictions on file type

 After signing-up, download Google Talk and sign in with your new Google
 Account username and password.
 You can then begin inviting anyone you want to talk to for free.

 Google Talk works with any computer speaker and microphone, such as the
 ones built-in to many PC laptops today,
 as well as with wired and wireless headsets and USB phones. Google Talk
 also works across all firewalls.

 Google Talk is still in beta. Just like with Gmail, we're working hard to
 add features and make improvements,
 so we might also ask for your comments and suggestions periodically. We
 appreciate your help in making it even better!

 Thanks,

 The Google Talk Team

 To learn more about Google Talk before signing up, visit:

 http://www.google.com/talk/about.html

 (If clicking the URLs in this message does not work, copy and paste them
 into the address bar of your browser).

 * Not a Windows user? No problem. You can also connect to the Google Talk
 service from any platform using third-party clients
 (http://www.google.com/talk/otherclients.html).


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Vedanayagam G has invited you to use Google Talk

2011-05-05 Thread Dave Watts
 Doesn't this qualify as spam?

Not really. It indicates the poster doesn't understand how address
books work, etc. But that is a forgivable (if tauntable) offense.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders