For i=0 To l.Size-1
m=l.Get(i)
If m.Get("sembol") = "USD/TRL" Then
ok(0).visible=False
If m.Get("last")>usd Then
ok(0).Text=""
ok(0).TextColor=Colors.green
ok(0).SetvisibleAnimated(450,True)
fiyat(0).TextColor=Colors.green
else if m.Get("last")<usd Then
ok(0).Text=""
ok(0).TextColor=Colors.red
fiyat(0).TextColor=Colors.red
ok(0).SetvisibleAnimated(450,True)
Else
ok(0).Text=""
fiyat(0).TextColor=Colors.rgb(255,246,175)
End If
usd=m.Get("last")
If animasyon=False Then
fiyat(0).Text=NumberFormat2(usd,0,5,5,False) & " TRY"
Else
UpdateLabelAnimated(fiyat(0),usd,500)
End If
End If
If m.Get("sembol") = "EUR/TRL" Then
If m.Get("last")>eur Then
ok(1).Text=""
ok(1).TextColor=Colors.green
fiyat(1).TextColor=Colors.green
ok(1).SetvisibleAnimated(450,True)
else if m.Get("last")<eur Then
ok(1).Text=""
ok(1).TextColor=Colors.red
fiyat(1).TextColor=Colors.red
ok(1).SetvisibleAnimated(450,True)
Else
ok(1).Text=""
fiyat(1).TextColor=Colors.rgb(255,246,175)
End If
eur=m.Get("last")
If animasyon=False Then
fiyat(1).Text=NumberFormat2(eur,0,5,5,False) & " TRY"
Else
UpdateLabelAnimated(fiyat(1),eur,500)
End If
End If
If m.Get("sembol") = "GBP/TRL" Then
If m.Get("last")>gbp Then
ok(2).Text=""
ok(2).TextColor=Colors.green
fiyat(2).TextColor=Colors.green
ok(2).SetvisibleAnimated(450,True)
else if m.Get("last")<gbp Then
ok(2).Text=""
ok(2).TextColor=Colors.red
fiyat(2).TextColor=Colors.red
ok(2).SetvisibleAnimated(450,True)
Else
ok(2).Text=""
fiyat(2).TextColor=Colors.rgb(255,246,175)
End If
gbp=m.Get("last")
If animasyon=False Then
fiyat(2).Text=NumberFormat2(gbp,0,5,5,False) & " TRY"
Else
UpdateLabelAnimated(fiyat(2),gbp,500)
End If
End If