The nextFrame(); brings you to the next frame without using frame names or numbers and that does work for me but how do I then make it play the next 14 frames?
I cannot target a frame number or...
Type: Posts; User: EMT; Keyword(s):
The nextFrame(); brings you to the next frame without using frame names or numbers and that does work for me but how do I then make it play the next 14 frames?
I cannot target a frame number or...
nextFrame();
Can this be coded to make it play the next 15 frames instead of just advancing one?
Thanks.
The more I think about it a timer wouldn't work at all.
auntnini, thanks for the reply, I'm using AS2.
I thought of using a timer but that would be hit and miss for accuracy.
my actionscript is:
on(Release){
photosMC.gotoAndPlay("img12");
I have a rough Flash photo gallery that I'm designing with a "curtain" that opens and closes when each larger image is displayed.
My question is, how do I make my thumbnail buttons in there movie...
When a user clicks the browsers refresh/reload button I want my .html page to reload but also retain the current page inside an iframe? Is this possible?
I figured it out. I left all other code alone.
BEFORE:
< a onClick="switchMenu('pysotof');" title="Switch the Menu" style="cursor:pointer">
AFTER:
I'm thinking I can add a link with an onclick event handler that will close the menu and stop the video from playing when clicked. If so, where do I add the event handler to the following code to...
Did I not provide enough information? Please Help!
I am using switchmenu to open and play videos and then close them and stop the video. It works great for Opera, Safari and Firefox but with IE it does not stop the video from playing when closed. How...
I Figured it out.
[CODE]
echo "<a href=\"" . $row["bands_website"] . "\"><img src=\"IMAGEPATH/" . $row["log_filename"] . "\" border=0 alt=\"" . $row["text"] . "\"></a>";
[CODE]
EMT
Hell again, This is the closest I can get.
[CODE]
echo "<img src=\"mypath/".$row.">" .$row['bands_website']."\"></a>";
[CODE]
It displays an image place holder and of course doesn't link.
...
To further clarify, the line that I want to edit is:
[CODE]
echo "<img src=\"path/".$row['log_filename']."\" width=92 height=62 hspace=0 vspace=0 border=0></a>";echo "</td><td valign='middle'>";...
OK, this is driving me crazy. Can you help me with the above problem. I want to make the image that's displayed from the 'log_filename' field a link by using the data from the 'bands_website' (which...
OK, Thanks for your help. I will check out the links you provided. I'm now trying to link an image, then I will be done with this part and can use it on my site.
I looked around and pieced it together.
[CODE]
echo "Member: ";echo "<a href=".$row['bands_website'] . ">" .$row['login'] . "</a>";echo "<br />";
[CODE]
EMT
Hello again, I'm having a problem with displaying a link. I want my my 'login' data to display and link to my 'bands_website' data.
My Code is:
[CODE]
<LINK REL=STYLESHEET TYPE="text/css"...
I got those both to work.
My Newest Code:
[CODE]
<?php
// Make a MySQL Connection
mysql_connect("localhost", "database", "password") or die(mysql_error());
mysql_select_db("database") or...
Thanks for answering so fast. I am going to use this on my site for the "Related Videos" section on my members pages. I wont know the addresses and that' s why I'm setting up a database to handle it....
I have a mysql database set up and have uploaded image paths and various text fields to it. The images are being sent and stored in a folder. What I need help with is how to code my php page...