i have a small news ticker in flash that uses snippets of the ‘news’ and displays it with a link to more info.
the code i am using to pull in the DB info with ASP is as follows.
onClipEvent (data) {
strTitle = Title;
strDes = Des;
strLink = Link;
strPosition = "News Item" add String(CurrentRecord+1) add " of " add String(TotalRecords);
}
There is obviously a clip load etc to display the data… my problem is the Link this needs to be a dynamic ie use the asp link provided in a variable… the way i can think of doing it is using geturl and then using the link variable as i already have it avaliable to me…
so how i do get the button to use the ‘dynamic link’ basically!..