truman69 0 Report post Posted April 2, 2005 Is there a way to make text flash on a webpage as i think it would be cool can anyone help???????i just want to be able to make text flashcheers chris Share this post Link to post Share on other sites
theRealSheep 0 Report post Posted April 3, 2005 I know there is the 'blink' property under text-decoration in CSS.eg. <a style="text-decoration: blink;">This text link should blink</a>But, this not implemented in some browsers. I know it does work in Firefox, therefore should work in other modern Mozilla-based browsers but I couldn't get any text blinking in my version of Internet Explorer 6. Share this post Link to post Share on other sites
mizako 0 Report post Posted April 4, 2005 "Blink" does not work in IE6. If you want my opinion i do not think blinking text is cool. :-( Share this post Link to post Share on other sites
zipple 0 Report post Posted April 4, 2005 "Blink" does not work in IE6. If you want my opinion i do not think blinking text is cool. :-( 68185[/snapback] the problem is also mine.. is there any good book write for how to make flash ?make web with Flash is so cool!!!! help us!! Share this post Link to post Share on other sites
clagnol 0 Report post Posted April 7, 2005 Tasteful uses of the <blink> are rare, but I find that Superbad does a pretty good job.If you want blinking text that will work in all browsers, you'd have to use animation, such as in a GIF image or a Flash movie. It might be possible to use javascript to do it, also, but I wouldn't know where to start.To make it work with a GIF, you could take two approaches. One, create a GIF image with text that flashes on and off. Two, create a gif that alternates between the background color and being completely transparent. Then, using CSS, position the blinking GIF over text so that it alternates between showing the text and covering it.So that's how you could do it. It's really not worth the trouble, if you ask me. Share this post Link to post Share on other sites
tariqrf 0 Report post Posted April 14, 2005 if you cant do any of the above .. consider using a sequence of images or GIF's .. one image with the text visible and the other with the text invisible.. create a sequence of images using Imageready or so..Voila,, flashing gifshope it helps,Tariq Share this post Link to post Share on other sites
ostgur 0 Report post Posted April 20, 2005 Dreamweaver have this function, but better use *.swf files. Share this post Link to post Share on other sites
BuffaloHelp 24 Report post Posted April 23, 2005 Is there a way to make text flash on a webpage as i think it would be cool can anyone help???????  i just want to be able to make text flash cheers chris 67522[/snapback] Hi there, How comfortable are you with java scripts? Link in ref: http://forums.xisto.com/no_longer_exists/  Follow the direction on that page. Replace the text to the display you need. Make sure to download the java applet and place them in the correct directory.  Although java may not run on all browsers or anyone who turns off the java, you will have at least fun wathing it work. I think I might add this to my own site...  Cheers. Share this post Link to post Share on other sites
ShetenshiSenshi 0 Report post Posted May 1, 2005 Use the above if you use IE, since blinking text is not compatible with IE. If you use Mozilla/Mozilla Firefox, or Netscape, the HTML tag is <blink>text</blink> Share this post Link to post Share on other sites
iGuest 3 Report post Posted November 29, 2007 Use <blink></blink> to work in IE 6-pradeep Share this post Link to post Share on other sites
strange-garden 0 Report post Posted December 4, 2007 You could use JASC animation shop. I think there's a free trial for it out there. It's amazing. What kind of flashing text are you looking for? a picture of text or actualy flashing text that you can copy and stuff?It's probably a little easier to use than flash, unless you are using a generator. Anyways, good luck with it! Share this post Link to post Share on other sites
keego 0 Report post Posted December 8, 2007 I think flash is definately amazing. im currrently designing a new flash file for my website. most likely the whole thing will be flash. there are heaps of tutorials on the net that you can find. It teaches you step by step to make the things you want such as flash image galleries. Or even preloaders.All you need to do is choose the type that is more simple for you .. try it.. it taught me alot. I didn't learn much flash in uni as much as i did with tutorials. There are also books called Flash for dummies. lol sounds silly but its pretty good. .. when im done with my site hope you guys drop by.. If anyone is interested to see what i have in future just check often on https://myspace.com/browser keegonguyen to see if i post new blogs regarding my site. Share this post Link to post Share on other sites
iGuest 3 Report post Posted August 22, 2009 Flashing TextFlashing Text?<body onload="flash1()"><script type="text/javascript" language="javascript"> var text = 'Hi'; function flash1(){ document.GetElementById('text').InnerHTML = '<font color="red">'+ text +'</font>'; setTimeout('flash2()',1000); } function flash2(){ document.GetElementById('text').InnerHTML = '<font color="black">'+ text +'</font>'; setTimeout('flash1()',1000); } </script> <span id="text">Hi</span></body> -reply by GLADIATORS Share this post Link to post Share on other sites
minimcmonkey 0 Report post Posted August 29, 2009 Well there is the blink tag. It was removed from IE6 because of how annoying it is. It lives on in browsers lie firefox. I would recommend not using it! Most web users hate it, its a good way to make people dislike your website! Share this post Link to post Share on other sites
iGuest 3 Report post Posted July 25, 2011 Blinking text is possible by using css file..In css file.blinktext { font-family: Arial, Helvetica, sans-serif; font-size: 1.2em; text-decoration: blink; font-style: normal; }<h1 class="blinktext">Your Text/copy that you want to blink</h1>Only just need to add TEXT-DECORATION as BLINK... Share this post Link to post Share on other sites