Forum Moderators: coopster

Message Too Old, No Replies

hide button

         

mclethe

11:47 am on Jul 21, 2006 (gmt 0)

10+ Year Member



Hi,

I have several buttons associated to swf-movies generated by a php-script.
What I would like to do:

Avoid giving the absolute information in the status bar but
only the information of the displayed movie.
So, instead of:
[site.com...]
only:
[site.com...]

Does anybody know a possibility to do this?

(I mean there is html-protector, in fact, but it doesn't work for php-frames. This either, any idea?)

Thanks a lot in advance for any suggestion,

mcLethe

omoutop

12:20 pm on Jul 21, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



make the link into a form, and pass the variables as hidden fields

use css code to set form background color to the same as page, set margins to 0px and make the text link into an image

mclethe

2:39 pm on Jul 21, 2006 (gmt 0)

10+ Year Member



Thank you for your reply,

do you mean <php? edit form action>?

Otherwise, could you explain more detailed?

jatar_k

4:23 pm on Jul 21, 2006 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



<form action="file.php" method="post">
<input type="hidden" name="button2" value="thisisthemoviename">
<input type="submit" value="Watch Movie">
</form>

something like the above would work

mclethe

1:15 pm on Jul 25, 2006 (gmt 0)

10+ Year Member



Hi,

It seems to work, but I am not yet absolutely sure. Thank you, however..