PC Review


Reply
Thread Tools Rate Thread

changing picture

 
 
=?Utf-8?B?a2F0Z2FybmV0dA==?=
Guest
Posts: n/a
 
      27th Nov 2005
On FP2000, I designed a web component that had 2 pictures of a
jack-in-the-pulpit wildflower, one open and one closed. The picture would
change from one to the other every few seconds, and look like the flower was
opening and closing. I do not remember how I did this... I am using FP2003
now. Thanks! kat
 
Reply With Quote
 
 
 
 
=?Utf-8?B?Qm9hdFBlcnNvbg==?=
Guest
Posts: n/a
 
      27th Nov 2005
Kat

Do you mean something like this (?)...

http://www.yellowecho.com/

If so, then the free version is available here:

http://www.jeroenwijering.com/?item=Flash+JPG+Rotator

Harry
--
"A boat is a hole in the water into which you throw money"


"katgarnett" wrote:

> On FP2000, I designed a web component that had 2 pictures of a
> jack-in-the-pulpit wildflower, one open and one closed. The picture would
> change from one to the other every few seconds, and look like the flower was
> opening and closing. I do not remember how I did this... I am using FP2003
> now. Thanks! kat

 
Reply With Quote
 
=?Utf-8?B?a2F0Z2FybmV0dA==?=
Guest
Posts: n/a
 
      28th Nov 2005
Harry, thanks for the response - that is what I want to do, but I did it in
FP2000 without a download. It seems like I changed a banner or marquis to
fit the dimensions I wanted , added the pictures and set the time I wanted
them to change. I just can't seem to find what I used. Thank you again, kat

"BoatPerson" wrote:

> Kat
>
> Do you mean something like this (?)...
>
> http://www.yellowecho.com/
>
> If so, then the free version is available here:
>
> http://www.jeroenwijering.com/?item=Flash+JPG+Rotator
>
> Harry
> --
> "A boat is a hole in the water into which you throw money"
>
>
> "katgarnett" wrote:
>
> > On FP2000, I designed a web component that had 2 pictures of a
> > jack-in-the-pulpit wildflower, one open and one closed. The picture would
> > change from one to the other every few seconds, and look like the flower was
> > opening and closing. I do not remember how I did this... I am using FP2003
> > now. Thanks! kat

 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      28th Nov 2005
Kat,

This can be done using setinterval in javascript. Every x seconds it
executes a function which can be set to swap the pictures back and forth.

I can give more help when I think about it some more.

--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au

katgarnett wrote:
> Harry, thanks for the response - that is what I want to do, but I did
> it in FP2000 without a download. It seems like I changed a banner or
> marquis to fit the dimensions I wanted , added the pictures and set
> the time I wanted them to change. I just can't seem to find what I
> used. Thank you again, kat
>
> "BoatPerson" wrote:
>
>> Kat
>>
>> Do you mean something like this (?)...
>>
>> http://www.yellowecho.com/
>>
>> If so, then the free version is available here:
>>
>> http://www.jeroenwijering.com/?item=Flash+JPG+Rotator
>>
>> Harry
>> --
>> "A boat is a hole in the water into which you throw money"
>>
>>
>> "katgarnett" wrote:
>>
>>> On FP2000, I designed a web component that had 2 pictures of a
>>> jack-in-the-pulpit wildflower, one open and one closed. The picture
>>> would change from one to the other every few seconds, and look like
>>> the flower was opening and closing. I do not remember how I did
>>> this... I am using FP2003 now. Thanks! kat



 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      28th Nov 2005
Kat,

This is the code to swap 2 pictures every second
<html>
<head>
<script type="text/javascript">
var swapped = false,
delay = 1000 , run ,
pic1 = "images/1.jpg" ,
pic2 = "images/2.jpg"

function change()
{
document.getElementById('picture').src= (!swapped)?pic2ic1
swapped = !swapped
}
function doit()
{
if (!swapped)
run = setInterval("change()",delay)
else
window.clearInterval(run)
}
</script>
</head>
<body onload="doit()">
<img src="" id= "picture" alt="">
</body>
</html>

I have tested it and it works, but
You need to alter the value of delay to the number of seconds you want
(*1000)
and the names of pic1 and pic2
You also need to position the picture in the HTML to where you want it

Good luck
--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au


Trevor L. wrote:
> Kat,
>
> This can be done using setinterval in javascript. Every x seconds it
> executes a function which can be set to swap the pictures back and
> forth.
> I can give more help when I think about it some more.
>
> --
> Cheers,
> Trevor L.
> Website: http://tandcl.homemail.com.au
>
> katgarnett wrote:
>> Harry, thanks for the response - that is what I want to do, but I did
>> it in FP2000 without a download. It seems like I changed a banner or
>> marquis to fit the dimensions I wanted , added the pictures and set
>> the time I wanted them to change. I just can't seem to find what I
>> used. Thank you again, kat
>>
>> "BoatPerson" wrote:
>>
>>> Kat
>>>
>>> Do you mean something like this (?)...
>>>
>>> http://www.yellowecho.com/
>>>
>>> If so, then the free version is available here:
>>>
>>> http://www.jeroenwijering.com/?item=Flash+JPG+Rotator
>>>
>>> Harry
>>> --
>>> "A boat is a hole in the water into which you throw money"
>>>
>>>
>>> "katgarnett" wrote:
>>>
>>>> On FP2000, I designed a web component that had 2 pictures of a
>>>> jack-in-the-pulpit wildflower, one open and one closed. The picture
>>>> would change from one to the other every few seconds, and look like
>>>> the flower was opening and closing. I do not remember how I did
>>>> this... I am using FP2003 now. Thanks! kat



 
Reply With Quote
 
 
 
Reply

Thread Tools
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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing bullets to a picture Joe T Microsoft Powerpoint 1 13th May 2009 07:27 PM
Changing the look of a picture =?Utf-8?B?TWlzc0NfMUBtc24uY29t?= Microsoft Frontpage 2 15th Oct 2004 10:31 PM
Changing picture name =?Utf-8?B?RCBCYWlsZXk=?= Windows XP Internet Explorer 3 18th Jan 2004 01:20 AM
Changing Embedded to a Picture Brenda Hutton Microsoft Excel Misc 0 3rd Oct 2003 08:13 PM
Changing Picture for Account Uwe Windows XP Security 0 11th Jul 2003 11:46 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:09 AM.