My site, http://www.homexchangenetwork.com, currently has a scrolling text box.
I think this is the scrit here. What like to do is convert this to be able to pull house images from a database and show them here. This would be just our featured listing. I am using open-realty.org as the real estate script.
Any suggestions on how I can pull images for the OR database and show them on the home page of my flash template.
This is the txtcont for the box on my homepage
http://www.homexchangenetwork.com
I reviewed the tutorial at actionscript.org but wasn't able to pull things together to convert this to pull images from a php file.
onClipEvent(load){
perem=0;
step=0.5;
}
onClipEvent(enterFrame){
m_scroll=_parent.txtcont.maxscroll;
//trace("m_scroll - " + m_scroll)
if(_root.txt_up=="true" and perem<=m_scroll ) {
perem+=step;
_parent.txtcont.scroll = perem;
}
if(_root.txt_down=="true" and perem>=0 ) {
perem-=step;
_parent.txtcont.scroll = perem;
}
}
This is on layer 7 frame 1 (text that appears in box) wasn't sure if I should put the new script here or edit the above.
txt="<FONT COLOR='#64A33C'>» </FONT> <FONT COLOR='#5D5D5D'><b>28.07.2005</b></font><br><FONT COLOR='#64A33C'><u><a href='http://www.yourcompanynamesite.com'>Lorem ipsum dolor</a></u><FONT COLOR='#64A33C'><br><FONT COLOR='#5D5D5D'>adipiscing elit. Praesent vestibulum molestie lacus. Aenean nonummy hendrerit mauris. Phasellus porta.</font>";
txt+="<br><br><FONT COLOR='#64A33C'>» </FONT> <FONT COLOR='#5D5D5D'><b>28.07.2005</b></font><br><FONT COLOR='#64A33C'><u><a href='http://www.homexchangenetwork.com/residential'>Lorem ipsum dolor sit amet</a></u><FONT COLOR='#64A33C'><br><FONT COLOR='#5D5D5D'>adipiscing elit. Praesent vestibulum molestie lacus. Aenean nonummy hendrerit mauris. Phasellus porta.</font>";
txt+="<br><br><FONT COLOR='#64A33C'>» </FONT> <FONT COLOR='#5D5D5D'><b>28.07.2005</b></font><br><FONT COLOR='#64A33C'><u><a href='http://www.yourcompanynamesite.com'>Lorem ipsum dolor sit amet</a></u><FONT COLOR='#64A33C'><br><FONT COLOR='#5D5D5D'>adipiscing elit. Praesent vestibulum molestie lacus. Aenean nonummy hendrerit mauris. Phasellus porta.</font>";
txt+="<br><br><FONT COLOR='#64A33C'>» </FONT> <FONT COLOR='#5D5D5D'><b>28.07.2005</b></font><br><FONT COLOR='#64A33C'><u><a href='http://www.yourcompanynamesite.com'>Lorem ipsum dolor sit amet</a></u><FONT COLOR='#64A33C'><br><FONT COLOR='#5D5D5D'>adipiscing elit. Praesent vestibulum molestie lacus. Aenean nonummy hendrerit mauris. Phasellus porta.</font>";
txt+="<br><br><FONT COLOR='#64A33C'>» </FONT> <FONT COLOR='#5D5D5D'><b>28.07.2005</b></font><br><FONT COLOR='#64A33C'><u><a href='http://www.yourcompanynamesite.com'>Lorem ipsum dolor sit amet</a></u><FONT COLOR='#64A33C'><br><FONT COLOR='#5D5D5D'>adipiscing elit. Praesent vestibulum molestie lacus. Aenean nonummy hendrerit mauris. Phasellus porta.</font>";
any ideas on a potential edit of this script to get images to appear in this box. the images im tryin to place there comes from homexchangenetwork.com/residential
Thanks in advance for any help
George