[flexcoders] unsubscribe

2010-08-25 Thread Harald Dehn
 

 

Von: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] Im Auftrag 
von claudiu ursica
Gesendet: Mittwoch, 25. August 2010 14:29
An: flexcoders@yahoogroups.com
Betreff: Re: [flexcoders] retrieve row # from XMLList w/ Namespaces for combo 
selectedIndex?

 

  

Parse the xml into a custom class/collection, and upon insertion you can assign 
a custom id e.g. the number of the row.

C

 

  _  

From: MicC chigwel...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Wed, August 25, 2010 8:58:40 AM
Subject: [flexcoders] retrieve row # from XMLList w/ Namespaces for combo 
selectedIndex?

  

comboBox dataProvider named responseRows = XMLList with Namespace so row data 
looks like:


Central
/MEMBER_CAPTION
MEMBER_CAPTION xmlns=urn:schemas-microsoft-com:xml-analysis:rowset 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:ddl2=http://schemas.microsoft.com/analysisservices/2003/engine/2; 
xmlns:ddl2_2=http://schemas.microsoft.com/analysisservices/2003/engine/2/2; 
xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
Northwest
/MEMBER_CAPTION etc.

I need to set the combo to a default preference e.g. Northwest by searching 
its dataProvider for that value and then setting selectedIndex. The code

var msRS:Namespace= new Namespace( 
urn:schemas-microsoft-com:xml-analysis:rowset);
var temp1:Object = responseRows.(msRS::MEMBER_CAPTION == Northwest)

finds the Northwest row but I do not have the row number to use to set 
selectedIndex of combo. As always, TIA,

Mic

 





[flexcoders] Unsubscribe

2010-04-04 Thread Andres Serral
Can someone tell me how can i unsubscribe from this email list?

I sent some mails to flexcoders-unsubscr...@yahoogroups.com but I keep
receiving mails

 

thanks



[flexcoders] Unsubscribe

2010-03-21 Thread Chris Greener












  
_
Hotmail is redefining busy with tools for the New Busy. Get more from your 
inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID27925::T:WLMTAGL:ON:WL:en-US:WM_HMP:032010_2

[flexcoders] unsubscribe

2010-02-15 Thread Ikezi Kamanu



[flexcoders] unsubscribe

2009-11-01 Thread Raymond Brown
unsubscribe


  

[flexcoders] unsubscribe

2009-08-02 Thread Michael Paley



[flexcoders] unsubscribe

2009-05-28 Thread Scott Mulder
unsubscribe


[flexcoders] unsubscribe is not working

2008-09-10 Thread Link Mckinney
I don't know what to do know, I have been trying to unsubscribe to the
fucking group for the past 2-3 days with no luck! I am getting a little
impatient now. Don't get me wrong, I love this group but I do not want to
use this email address anymore with this group. I am now wanting to use a
feedreader instead of outlook to read these messages considering it is
overloading my email. Can anyone help me at all? Who is the moderator?
Should I contact yahoo for this or what?

 

Thanks Link



Re: [flexcoders] unsubscribe is not working

2008-09-10 Thread Sherif Abdou
K done!
--
Sherif Abdou
http://VadexFX.com
http://Sherifabdou.com
  - Original Message - 
  From: Link Mckinney 
  To: flexcoders@yahoogroups.com 
  Sent: Wednesday, September 10, 2008 11:54 PM
  Subject: [flexcoders] unsubscribe is not working



  I don't know what to do know, I have been trying to unsubscribe to the 
fucking group for the past 2-3 days with no luck! I am getting a little 
impatient now. Don't get me wrong, I love this group but I do not want to use 
this email address anymore with this group. I am now wanting to use a 
feedreader instead of outlook to read these messages considering it is 
overloading my email. Can anyone help me at all? Who is the moderator? Should I 
contact yahoo for this or what?



  Thanks Link


   

[flexcoders] unsubscribe

2008-05-06 Thread Tom Lee



[flexcoders] unsubscribe

2008-03-21 Thread h.


[flexcoders] unsubscribe me please...

2008-02-21 Thread ahorugav
I dont know why i am on this group...unsubscribe me!!!



[flexcoders] unsubscribe

2008-01-28 Thread Joseph Freemaker


- Original Message 
From: Jim Hayes [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, January 28, 2008 2:07:42 PM
Subject: RE: [flexcoders] Running a flex app from local file system










  





Try -use-network= false



Jim.



-Original Message-

From: [EMAIL PROTECTED] ups.com on behalf of Greg Hess

Sent: Mon 28/01/2008 19:39

To: [EMAIL PROTECTED] ups.com

Subject: RE: [flexcoders] Running a flex app from local file system

 

Thanks Guys,



Unfortunately, I am having difficulty getting both strategies to work.



1. Embed the xml file



- It seems xml file format (xml) is not specifically supported by Flex and will 
require me to set the MIME type and the embedded object is a ByteArrayAsset. Is 
this the only way?



- tried to embed both as a metadata tag and directive and the error states: no 
transcoder registered for mimeType



2. Use the compiler arg '-use-network false'

- it seems the argument -use-network does not support additional 
parameters such as 'false'. When I use just '-use-network' it does compile but 
errors at runtime loading the local XML file as before.



My mxml is as follows (loading 'images/gallery/ photos.xml is giving the 
problem'):



mx:HTTPService id=photosIn url=images/ gallery/photos. xml 
result=photosInHan dler(event)  /



The resulting ArrayCollection is used to bind as the dataProvider of a TileList.



Am I missing something? Just wanted an easy way to support launching off local 
file system and hoped I could have an easy strategy to toggle both deployment 
strategies (web server, local file system).



Any comments much appreciated.



-Greg



From: [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com] On Behalf Of 
Andrew D. Goodfellow

Sent: Monday, January 28, 2008 11:37 AM

To: [EMAIL PROTECTED] ups.com

Subject: Re: [flexcoders] Running a flex app from local file system



Hi Greg,



I think if you go to Project | Properties | Flex Compiler and add  
-use-network false to the Additional Compiler Arguments that might do the 
trick.



You'll need to rebuild. I think the problem you are having is due to security 
constraint built into the Flash player. It will allow the swf to either load 
external resources via HTTP from the network OR from the local filesystem. Both 
are not allowed, you have to choose a setting for one or the other when you 
build/publish.



-Andy

On Jan 28, 2008 9:38 AM, Greg Hess [EMAIL PROTECTED] commailto:[EMAIL 
PROTECTED] com wrote:



Hi All,



I am working with a remote team and I need to send them the application 
prototype for review. I thought all I need to do is add all the files in the 
output dir to a compressed file and send via email ect... The prototype is 
loading a local XML file to populate an UI component to simulate a remote 
HTTPService call and it seems to be generating security violations accessing 
the local file system. The client workstations are Windows Vista.



How do I build or configure the application so it can be launched from the 
local files system?



Any comments much appreciated.



Thanks,



-Greg



 _ _ _ _ _ _

This communication is from Primal Pictures Ltd., a company registered in 
England and Wales with registration No. 02622298 and registered office: 4th 
Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK. VAT 
registration No. 648874577.



This e-mail is confidential and may be privileged. It may be read, copied and 
used only by the intended recipient. If you have received it in error, please 
contact the sender immediately by return e-mail or by telephoning +44(0)20 7637 
1010. Please then delete the e-mail and do not disclose its contents to any 
person.

This email has been scanned for Primal Pictures by the MessageLabs Email 
Security System.

 _ _ _ _ _ _


  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{

[flexcoders] unsubscribe

2006-09-18 Thread tonih barrolle


--- Louis Ryan [EMAIL PROTECTED] wrote:

 Ive posted in the spirit of improving flex so find
 it here with a
 sample to play with...
 
 http://whittlin.blogspot.com/
 
 --- In flexcoders@yahoogroups.com, Louis Ryan
 [EMAIL PROTECTED] wrote:
 
  I have modified the DataGrid class to allow
 columns to be locked on
  the right. I posted this as an enhancement request
 to Adobe but its
  not so easy to include alot of text in their
 suggestion area so I
  didnt include the sample code I had for this. 
  
  Is it OK to post modified versions of the Flex
 framework code here? If
  not is there a better way to send suggested
 code/patches to Adobe for
  review?
  
  Thanks
  
  Louis Ryan
 
 
 
 
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] unsubscribe

2006-09-11 Thread Alfredo Laguia






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] unsubscribe

2006-07-28 Thread Harald Dehn
unsubscribe


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] unsubscribe

2006-07-26 Thread nik crosina
unsubscribe


 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/SktRrD/hOaOAA/yQLSAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Unsubscribe

2006-07-20 Thread Ferran Rosales




Be one of the first to try  Windows Live Mail.
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] unsubscribe.

2006-07-18 Thread Doug Hughes










Why the heck do I seem completely unable
to unsubscribe from this list?



Ive followed the instructions at
the bottom of the message (and replied to their reply) to no effect.
Arg! 



Doug




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





RE: [flexcoders] unsubscribe.

2006-07-18 Thread Shannon Hicks





You can go to http://groups.yahoo.com/ and unsubscribe 
that way.

Shan


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Doug 
HughesSent: Tuesday, July 18, 2006 4:57 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] 
unsubscribe.




Why the heck do I seem 
completely unable to unsubscribe from this list?

Ive followed the 
instructions at the bottom of the message (and replied to their reply) to no 
effect. Arg! 

Doug

--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.394 / Virus Database: 268.10.1/390 - Release Date: 
7/17/2006
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   



  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/390 - Release Date: 7/17/2006
 


Re: [flexcoders] Unsubscribe

2006-06-27 Thread Krishna


Ah, Thank you !- Original Message From: Steven Webster [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Monday, June 26, 2006 7:24:09 PMSubject: RE: [flexcoders] Unsubscribe








Click on the unsubscibe link that appears at the foot of 
every email ;)



  
  

  


  
  

Steven WebsterPractice Director (Rich 
Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs 
Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 
6108
m: +44 (0)7917 428 947[EMAIL PROTECTED] 
  


  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  KrishnaSent: 26 June 2006 07:09To: 
  flexcoders@yahoogroups.comSubject: [flexcoders] 
  Unsubscribe
  
  
  Hi All,Can anyone tell me how do I unsubscribe from this list? I no 
  longer work on flex and hence would not like these manu emails..Thanks 
  in advance.-Krish
  
  
  Do you Yahoo!?Everyone is raving about the all-new 
  Yahoo! Mail Beta.
  

  


 


__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___


[flexcoders] Unsubscribe

2006-06-26 Thread Krishna



Hi All,Can anyone tell me how do I unsubscribe from this list? I no longer work on flex and hence would not like these manu emails..Thanks in advance.-Krish 
		Do you Yahoo!? Everyone is raving about the  all-new Yahoo! Mail Beta.
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] Unsubscribe

2006-06-26 Thread Daniel Tuppeny





In the footer, it says:

To unsubscribe from this group, send an 
email to:[EMAIL PROTECTED]

:-)


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of KrishnaSent: 
26 June 2006 07:09To: flexcoders@yahoogroups.comSubject: 
[flexcoders] Unsubscribe
Hi All,Can anyone tell me how do I unsubscribe from this 
list? I no longer work on flex and hence would not like these manu 
emails..Thanks in advance.-Krish


Do you Yahoo!?Everyone is raving about the all-new 
Yahoo! Mail Beta.  [Inbound Mail Scanned by 
MessageLabs]

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] unsubscribe

2006-06-07 Thread Johan van Winden
unsubscribe 


 Yahoo! Groups Sponsor ~-- 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] UNSUBSCRIBE

2006-06-05 Thread John Dowdell



Grahame Oakland wrote:
 UNSUBSCRIBE
 
From: Tolulope Olonade [EMAIL PROTECTED]
 Just wondering why Adobe/Macromedia did not provide a download
link for the videos on this page:

Hey, he's entitled to his opinion, he shouldn't have to unsubscribe just 
for making a request ;-)


Tolulope, I'm not sure, but will forward your request along... might be 
in hopes of simplifying the interface and user choices, might be some 
other reason. I'll flag your post here for the production team, though.

Grahame, Yahoo! Groups offers unsubscription through a slightly 
different address than messages to the list itself, and it was in some 
of the material you auto-quoted in reply:
 [EMAIL PROTECTED]

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.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] unsubscribe

2006-03-17 Thread Ralf Rottmann











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] unsubscribe

2006-01-27 Thread jraben
how to unsubscribe?

the way written in footer doesn't work.




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] unsubscribe

2005-12-09 Thread Michel Jansen
unsubscribe


 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/u8TY5A/tzNLAA/yQLSAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] unsubscribe

2005-03-30 Thread Steven Webster

Hey Jasper   

I've pasted the bottom of your message back at ya  email
flexcoders-unsubscribe, not
flexcoders, to unsubscribe.

Steven

 -Original Message-
 From: Jasper Blues [mailto:[EMAIL PROTECTED] 
 Sent: 30 March 2005 06:34
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] unsubscribe
 
 
 unsubscribe
 
 
 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.8.5 - Release Date: 29/03/2005
 



 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] unsubscribe

2005-03-29 Thread Jasper Blues

unsubscribe



~~---
This e-mail may contain confidential information.  If you are not the intended 
recipient, please notify the sender immediately and delete this e-mail from 
your system.  You must not disclose this e-mail to anyone without express 
permission from the sender.  The contents of all e-mails sent to and received 
from Optus may be scanned, stored, or disclosed to others at Optus discretion.

Optus has exercised care to avoid errors in the information contained in this 
e-mail but does not warrant that the information is error or omission free.  
The information (including any pricing information) contained in this e-mail is 
subject to change.  This e-mail is not a quotation or proposal and no 
contractual obligations arise until you and Optus sign a formal written 
contract or formal variation to your existing contract.  

Any pricing contained in this e-mail is exclusive of GST unless otherwise 
stated.




 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/