Curtis Thompson
Forum Replies Created
-
hello…
a basic text editor and ftp software will be all you need. and probably not even the former. if you want to just share clips, you can upload them to your site via ftp and then give others the url to the direct file – so if your domain is foo.com and your movie is movie.mov, you can ftp the file up to your domain and then your url will be https://foo.com/movie.mov
if you want to build out pages then you can either use a plain text editor and pick up some basic html or use a wysiwyg editor like dreamweaver…
hope that helps!
sitruc
-
Curtis Thompson
January 30, 2006 at 3:39 pm in reply to: thanks for the quick response–one more thing !hello…
not that i know of but i’m not a video streaming expert – there’s a lot you can do with quicktime, so perhaps…
might want to try our web video forum:
https://forums.creativecow.net/cgi-bin/new_view_posts.cgi?forumid=117
sitruc
-
hello…
not sure what you’re referring to, unfortunately – do you have a link we can look at? the only thing i can think that you might be seeing are the active link dashed lines – if so, here’s a thing on those:
https://www.htmlgoodies.com/beyond/javascript/article.php/3471171
if that’s not it then let us know!
sitruc
-
i think he’s talking about the preview image link…
aaron – that’s just a js popup…thought you wanted something fancier! sorry…you can get code for that from this example:
https://www.sitruc.com/cow/popup/page.html
sitruc
-
hmm – i guess i did miss the boat…doh!
you can just paste in plain text php or if you have it in brackets, replace the “<” char with “<” and paste it…stick it in PRE tags to preserve formatting if you want to…
sitruc
-
hello…
can’t answer your question specific to golive, but this is an old example i had used for another question:
https://www.sitruc.com/cow/popup/page.html
it has a link to a popup with a movie, which is sorta what you’re looking to do – feel free to swipe the html from this!
sitruc
-
hello…
well – with either javascript or a server-side scripting language, you can retrieve the day of the week from a date object – it’s either typically returned as a numer (0-6) or you can return it as a string value in some date functions (like in php)…but that will give you the power you need to show something based on what day it is…
if you had a schedule file to show, you have a few options. one would be to use a server-side script like php and just test with that script and show the appropriate schedule. another would be to use javascript and an iframe with either name jumps or separate schedule files. i made an example of that (with the latter) here:
https://sitruc.com/cow/dyn_schedule/index.html
hope that helps!
sitruc
-
hello…
not really just a single function. you have to update the style of the link itself…so something like this:
<A HREF=”whatever.html” onClick=”this.style.fontWeight=’bold’;”>link</A>
or you could give it a css class and change that with the className (google that) so that you could do multiple styles at once…
make sense?
sitruc
-
hello…
i had an example here of this for another question:
https://www.sitruc.com/cow/popup/page.html
that should do ya…
sitruc
-
hello…
i’d just swipe one of theirs – you can write a calendar like that in javascript and you can make it dynamic, so they likely have the script in their source. just grab that and use it as a base for writing your own…
sitruc