<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/1.0.1">
</HEAD>
<BODY>
Manuel Hendel wrote:
<BR>
> I try to get a single item out of a list, but after this, the single
<BR>
> item is stil a list item.
<BR>

<BR>
> domainfield = fields[3:4]
<BR>

<BR>
> I just want to get a new variable with a the value of the 3rd item of
<BR>
> the list fields.
<BR>

<BR>

<BR>
If I understand your question, you have two ways to make it work, from my point of view:
<BR>
a) Get the value from domainfield:
<BR>

<BR>
    domainfields = fields[3:4]
<BR>
    value = domainfields[0]
<BR>

<BR>
b) Get the value directly from the list:
<BR>

<BR>
    value = fields[3]
<BR>

<BR>
I hope it helps.
<BR>

<BR>
Bye,
<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%">
<TR>
<TD>
<PRE>-- 
   Andrés Meza
   Technical Manager
 __Nuevos Medios - NM S.A.____________________
   e-mail:         andres.meza@nuevosmedios.ws
   day time phone: (+572)6827794 ext.102
   url:            www.nuevosmedios.ws</PRE>
</TD>
</TR>
</TABLE>

</BODY>
</HTML>