ColdFusion Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - MoreColdFusion Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old February 8th, 2005, 12:09 AM
izah_2 izah_2 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2004
Posts: 34 izah_2 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 2 m 48 sec
Reputation Power: 4
scrolling text

hi...i got problem here....in my system, i have a scrolling text at top of the page...however, the scrolling text is hardcoded which is i have to change the text in the source code often....so i want to do in dynamic which is user can fill in the form and upload the file (content)....then the title of the form will be the text that will be scroll at the top of the page...when user click on the scroll text, it will link to the content of the file that been uploaded by the user just now...so, i dont have to change the text in source code anymore and link it to the specific file..user will do it by themselves by fill in the form with uploding the file ...can it be done?is there any javascript souce code for this?is there any link that i can refer to?thank you

Reply With Quote
  #2  
Old February 8th, 2005, 07:52 AM
kiteless kiteless is offline
Moderator
Dev Shed Expert (3500 - 3999 posts)
 
Join Date: Jun 2002
Location: Raleigh, NC
Posts: 3,661 kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 1 Week 4 Days 14 h 23 m 22 sec
Reputation Power: 53
Folks, there is a whole forum devoted to Javascript here at Devshed. Please ask these sorts of questions there.
__________________
Ask if you have a question, but also help answer questions that you have knowledge of! Thanks, Brian.
How to Post a Question in the Forums

Reply With Quote
  #3  
Old February 8th, 2005, 08:15 AM
Shane_Z Shane_Z is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2005
Location: In denial
Posts: 22 Shane_Z User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 57 m 52 sec
Reputation Power: 0
Send a message via MSN to Shane_Z
it may be easier using something like:

Code:
<marquee>blah</marquee>


this gives you scrolling text and requires no javascript. you can dynamically populate it with whatever you like. hope that helped.

Reply With Quote
  #4  
Old February 10th, 2005, 05:49 AM
izah_2 izah_2 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2004
Posts: 34 izah_2 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 2 m 48 sec
Reputation Power: 4
scrolling text

i already ask in javascript development forum but they ask me to ask the question in here

Reply With Quote
  #5  
Old February 10th, 2005, 08:18 AM
kiteless kiteless is offline
Moderator
Dev Shed Expert (3500 - 3999 posts)
 
Join Date: Jun 2002
Location: Raleigh, NC
Posts: 3,661 kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 1 Week 4 Days 14 h 23 m 22 sec
Reputation Power: 53
Well then you are not explaining the problem very clearly. Can you describe in a more clear way what you want to do?

Reply With Quote
  #6  
Old February 10th, 2005, 10:27 AM
izah_2 izah_2 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2004
Posts: 34 izah_2 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 2 m 48 sec
Reputation Power: 4
scrolling text

in many homepage, we can see there are highlight news moving in front of the page....when user click on the text (news title)that are moving, they will bring direct to the content of the news....in my system, user will always upate the highlight news...so i want the authorise user upload the content (in a file save as .doc or .pdf or .htm) and fill in the form which they have to fill up the title of the news...so when they click button 'upload', automatic the title of the news will be on the homepage as moving text(marquee) and that title is in linking to the content that they save when they fill up the form....so when user click on that title of the news, they will be bring directly to the specific content that they upload before...i alredy have a form but i don't know how can i make the news moving and automatic be as a moving text at the homepage....

Reply With Quote
  #7  
Old February 10th, 2005, 02:45 PM
kiteless kiteless is offline
Moderator
Dev Shed Expert (3500 - 3999 posts)
 
Join Date: Jun 2002
Location: Raleigh, NC
Posts: 3,661 kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 1 Week 4 Days 14 h 23 m 22 sec
Reputation Power: 53
Then yes, this is more of a Javascript question. You will need to query the database, return the titles that you want to show up in the Javascript scrolling marquee, and then dynamically create a link for each title so that when they click it, it takes them to the page for that item. I would first do this without the scrolling part, just output a list of the titles that you'll want to have show up, and make sure that the links for each of those titles work. Once that all works, moving those into a Javascript-based scrolling marquee is a totally separate issue.

All that said, I must say that I think the idea of having a scrolling list of titles is a very non-user friendly way to do it. Some people turn off Javascript. Some people will miss a title that they want to see and will have to wait for it to display again. I would simply have a sidebar with the recent titles in it and let the user click it. I assure you that no major, reputable company like Yahoo, Google, Microsoft, Sun, Oracle, etc. would use such a scrolling list of elements because of the usability problems.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreColdFusion Development > scrolling text


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway