beh non so risponderti in maniera esauriente... posso dirti cmq che ho scaricato questo esempio: http://flash-mx.html.it/guide/view_l...id=4&idguida=1
e di questo esempio ho modificato la pagina scroll_news.asp da così:

<%
Response.Expires = 0
Dim rs, cn, sql
Set rs = Server.CreateObject("ADODB.Recordset")
Set cn = Server.CreateObject("ADODB.Connection")
sql = "SELECT * FROM tbNews ORDER BY tbNews.IDNews DESC"
cn.Open "DSN=news;"

Set rs.ActiveConnection = cn
rs.CursorType = adOpenStatic
rs.LockType = adLockOptimistic
rs.Source = "tbNews"
rs.Open sql, cn

x = 0

Do until(x=5)
x = x + 1
Response.Write("titolo" & x & "=" & rs("Titolo") & "&link" & x & "=" & rs("Link"))
rs.MoveNext
If x<5 then Response.Write("&")
Loop

rs.Close
Set rs=Nothing
%>

a così:


<%
DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtemp=dsntemp & "DBQ=" & server.mappath("ordine.mdb")
sqlstmt = "SELECT * FROM giornale ORDER BY id DESC"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sqlstmt, DSNtemp, 3, 3

titolo = rs("titolo")
'id = rs("ID")
link = ""&rs("titolo")&""


'Response.Expires = 0
'Dim rs, cn, sql
'Set rs = Server.CreateObject("ADODB.Recordset")
'Set cn = Server.CreateObject("ADODB.Connection")
'sql = "SELECT * FROM tbNews ORDER BY tbNews.IDNews DESC"
'cn.Open "DSN=news;"

'Set rs.ActiveConnection = cn
'rs.CursorType = adOpenStatic
'rs.LockType = adLockOptimistic
'rs.Source = "tbNews"
'rs.Open sql, cn

x = 0

Do until(x=5)
x = x + 1
Response.Write("titolo" & x & "=" & rs("Titolo") & "&id" & x & "=" & rs("id"))
rs.MoveNext
If x<5 then Response.Write("&")
Loop

rs.Close
Set rs=Nothing
%>

ora per quanto riguarda il flash non so cosa fare... tu mi dici di creare un pulsante sul quale mettere l'azione getURl prendendoti la var che ti interessa... ma non so come fare... e a tal proposito ti invito quindi a vedere su quest'ulr: http://flash-mx.html.it/guide/view_l...id=4&idguida=1 di cosa si tratta... magari tu appena vedi il tutto ti rendi conto subito