embedding windows media player - don't want autoplay

C

Cowtoon

I've embedded windows media player and set it up so that it plays on my
site, however, I can't get it to play with a single click. I can set it to
auto play, but I don't want that. Is there an easy way to do this?

Thanks.
 
J

John Malone

More information is needed
How (code) used to embed?
Have you set it to False?

<OBJECT ID="Player"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<PARAM name="autoStart" value="False">
</OBJECT>

Does it start on the second click?
This might be security settings.........

John Malone
===================
| I've embedded windows media player and set it up so that it plays on my
| site, however, I can't get it to play with a single click. I can set it
to
| auto play, but I don't want that. Is there an easy way to do this?
|
| Thanks.
|
|
 
J

John Malone

OK,

Here is one way to embed the video but no real control it just starts...

<p><embed width="350" height="350" src="salmon.asx"></p>
Demo Here...
http://www.xmas-i-am.com/test/video.htm

OR........ You can use the Object that lets you control much more!

<OBJECT ID="MediaPlayer" WIDTH="355" HEIGHT="300"
CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
STANDBY="Loading Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="salmon.asx">
<PARAM name="ShowControls" VALUE="true">
<param name="ShowStatusBar" value="false">
<PARAM name="ShowDisplay" VALUE="false">
<PARAM name="autostart" VALUE="false">
<EMBED TYPE="application/x-mplayer2" src="salmon.asx" NAME="MediaPlayer"
WIDTH="355" HEIGHT="300" ShowControls="1" ShowStatusBar="0" ShowDisplay="0"
autostart="0"> </EMBED>
</OBJECT>

Demo Here......
http://www.xmas-i-am.com/test/video2.htm

In IE 6 due to security you first click to activate the controls then they
will work.

John Malone
====================
| More information is needed
| How (code) used to embed?
| Have you set it to False?
|
| <OBJECT ID="Player"
| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
| <PARAM name="autoStart" value="False">
| </OBJECT>
|
| Does it start on the second click?
| This might be security settings.........
|
| John Malone
| ===================
| || I've embedded windows media player and set it up so that it plays on my
|| site, however, I can't get it to play with a single click. I can set it
| to
|| auto play, but I don't want that. Is there an easy way to do this?
||
|| Thanks.
||
||
|
|
 
T

Trevor L.

John said:
OK,

Here is one way to embed the video but no real control it just
starts...

<p><embed width="350" height="350" src="salmon.asx"></p>
Demo Here...
http://www.xmas-i-am.com/test/video.htm

I do it this way.
Add this to the HTML:
<span id="sound"></span>
<input type="button" value="Play/Stop
Music" onclick="playSound()"/>

Add this to your external JS file:
function playSound(fname)
{
if (!fname)
var fname = "audio/minuet.mid"
var x = document.getElementById("sound")
x.innerHTML = (!x.innerHTML )
? '<embed src="' + fname + '" loop=false autostart=true
hidden>' : ''
}
 
C

Cowtoon

Hi John
I installed the Frontpage add-in for WMP. This allows (in FP 2003) the
following, Insert | Windows Media Player ..., then I adjust the parameters,
i.e., looping (not selected), autostart (not selected) and browse for the
wmv file. I can also choose the size and what level of controls will be
available.

It does play on the second click. If I click anywhere on the WMP screen (on
the site), then click the play button, the video will play out. Right now,
I've had to put an instruction for a visitor to double-click the play
button.

On the code: When I put a value of "0" for autostart, it requires two
clicks, when I enter "1" or "T", it plays automatically. There must be a
value for a single click (no? yes?). This video is a product demo (<30 sec)
and it has sound. Because it has sound (just a short voice clip), I don't
want it to autostart. I want the visitor to choose to play the video, who
would then be prepared for sound (maybe I shouldn't think that way, but I
do).

I hope the above helps.
Diana

More information is needed
How (code) used to embed?
Have you set it to False?

<OBJECT ID="Player"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<PARAM name="autoStart" value="False">
</OBJECT>

Does it start on the second click?
This might be security settings.........

John Malone
===================
| I've embedded windows media player and set it up so that it plays on my
| site, however, I can't get it to play with a single click. I can set it
to
| auto play, but I don't want that. Is there an easy way to do this?
|
| Thanks.
|
|
 
J

John Malone

The double click is in IE browsers only if you have NN or FF or Opera it
only takes one click..
SO the problem is the browser settings witch you have no control over.
For those that view video a lot they should know.
If you hover over the player the tool tip says
"Click to activate and use this control"
Trevor had a unique JS script Play/Stop button that might over ride the
security settings and work...

John Malone
====================
| Hi John
| I installed the Frontpage add-in for WMP. This allows (in FP 2003) the
| following, Insert | Windows Media Player ..., then I adjust the
parameters,
| i.e., looping (not selected), autostart (not selected) and browse for the
| wmv file. I can also choose the size and what level of controls will be
| available.
|
| It does play on the second click. If I click anywhere on the WMP screen
(on
| the site), then click the play button, the video will play out. Right
now,
| I've had to put an instruction for a visitor to double-click the play
| button.
|
| On the code: When I put a value of "0" for autostart, it requires two
| clicks, when I enter "1" or "T", it plays automatically. There must be a
| value for a single click (no? yes?). This video is a product demo (<30
sec)
| and it has sound. Because it has sound (just a short voice clip), I don't
| want it to autostart. I want the visitor to choose to play the video, who
| would then be prepared for sound (maybe I shouldn't think that way, but I
| do).
|
| I hope the above helps.
| Diana
|
| | More information is needed
| How (code) used to embed?
| Have you set it to False?
|
| <OBJECT ID="Player"
| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
| <PARAM name="autoStart" value="False">
| </OBJECT>
|
| Does it start on the second click?
| This might be security settings.........
|
| John Malone
| ===================
| || I've embedded windows media player and set it up so that it plays on my
|| site, however, I can't get it to play with a single click. I can set it
| to
|| auto play, but I don't want that. Is there an easy way to do this?
||
|| Thanks.
||
||
|
|
|
 
C

Cowtoon

Yikes.
The message you wrote (below) to definitely is true for IE. Bummer!
I'll take a closer look at what Trevor wrote, tonight after work.
Thanks.

The double click is in IE browsers only if you have NN or FF or Opera it
only takes one click..
SO the problem is the browser settings witch you have no control over.
For those that view video a lot they should know.
If you hover over the player the tool tip says
"Click to activate and use this control"
Trevor had a unique JS script Play/Stop button that might over ride the
security settings and work...

John Malone
====================
| Hi John
| I installed the Frontpage add-in for WMP. This allows (in FP 2003) the
| following, Insert | Windows Media Player ..., then I adjust the
parameters,
| i.e., looping (not selected), autostart (not selected) and browse for the
| wmv file. I can also choose the size and what level of controls will be
| available.
|
| It does play on the second click. If I click anywhere on the WMP screen
(on
| the site), then click the play button, the video will play out. Right
now,
| I've had to put an instruction for a visitor to double-click the play
| button.
|
| On the code: When I put a value of "0" for autostart, it requires two
| clicks, when I enter "1" or "T", it plays automatically. There must be a
| value for a single click (no? yes?). This video is a product demo (<30
sec)
| and it has sound. Because it has sound (just a short voice clip), I don't
| want it to autostart. I want the visitor to choose to play the video, who
| would then be prepared for sound (maybe I shouldn't think that way, but I
| do).
|
| I hope the above helps.
| Diana
|
| | More information is needed
| How (code) used to embed?
| Have you set it to False?
|
| <OBJECT ID="Player"
| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
| <PARAM name="autoStart" value="False">
| </OBJECT>
|
| Does it start on the second click?
| This might be security settings.........
|
| John Malone
| ===================
| || I've embedded windows media player and set it up so that it plays on my
|| site, however, I can't get it to play with a single click. I can set it
| to
|| auto play, but I don't want that. Is there an easy way to do this?
||
|| Thanks.
||
||
|
|
|
 
S

Shirley

Cowtoon said:
Yikes.
The message you wrote (below) to definitely is true for IE. Bummer!
I'll take a closer look at what Trevor wrote, tonight after work.
Thanks.

The double click is in IE browsers only if you have NN or FF or Opera it
only takes one click..
SO the problem is the browser settings witch you have no control over.
For those that view video a lot they should know.
If you hover over the player the tool tip says
"Click to activate and use this control"
Trevor had a unique JS script Play/Stop button that might over ride the
security settings and work...

John Malone
====================
| Hi John
| I installed the Frontpage add-in for WMP. This allows (in FP 2003) the
| following, Insert | Windows Media Player ..., then I adjust the
parameters,
| i.e., looping (not selected), autostart (not selected) and browse for
the
| wmv file. I can also choose the size and what level of controls will be
| available.
|
| It does play on the second click. If I click anywhere on the WMP screen
(on
| the site), then click the play button, the video will play out. Right
now,
| I've had to put an instruction for a visitor to double-click the play
| button.
|
| On the code: When I put a value of "0" for autostart, it requires two
| clicks, when I enter "1" or "T", it plays automatically. There must be
a
| value for a single click (no? yes?). This video is a product demo (<30
sec)
| and it has sound. Because it has sound (just a short voice clip), I
don't
| want it to autostart. I want the visitor to choose to play the video,
who
| would then be prepared for sound (maybe I shouldn't think that way, but
I
| do).
|
| I hope the above helps.
| Diana
|
| | More information is needed
| How (code) used to embed?
| Have you set it to False?
|
| <OBJECT ID="Player"
| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
| <PARAM name="autoStart" value="False">
| </OBJECT>
|
| Does it start on the second click?
| This might be security settings.........
|
| John Malone
| ===================
| || I've embedded windows media player and set it up so that it plays on my
|| site, however, I can't get it to play with a single click. I can set
it
| to
|| auto play, but I don't want that. Is there an easy way to do this?
||
|| Thanks.
||
||
|
|
|
I'm noticing with mine that it starts after just a short delay after hitting
the play button....single click.
 
C

Cowtoon

Shirley,
Do you remember what your settings are for the value of autostart ... or
perhaps there are other settings that I'm not aware of. Perhaps we can
share websites ... but I don't need to post it here.
Let me know if this would work for you. If the email address below if real,
I can send you the link ... visa versa.
Diana


Cowtoon said:
Yikes.
The message you wrote (below) to definitely is true for IE. Bummer!
I'll take a closer look at what Trevor wrote, tonight after work.
Thanks.

The double click is in IE browsers only if you have NN or FF or Opera it
only takes one click..
SO the problem is the browser settings witch you have no control over.
For those that view video a lot they should know.
If you hover over the player the tool tip says
"Click to activate and use this control"
Trevor had a unique JS script Play/Stop button that might over ride the
security settings and work...

John Malone
====================
| Hi John
| I installed the Frontpage add-in for WMP. This allows (in FP 2003) the
| following, Insert | Windows Media Player ..., then I adjust the
parameters,
| i.e., looping (not selected), autostart (not selected) and browse for
the
| wmv file. I can also choose the size and what level of controls will be
| available.
|
| It does play on the second click. If I click anywhere on the WMP screen
(on
| the site), then click the play button, the video will play out. Right
now,
| I've had to put an instruction for a visitor to double-click the play
| button.
|
| On the code: When I put a value of "0" for autostart, it requires two
| clicks, when I enter "1" or "T", it plays automatically. There must be
a
| value for a single click (no? yes?). This video is a product demo (<30
sec)
| and it has sound. Because it has sound (just a short voice clip), I
don't
| want it to autostart. I want the visitor to choose to play the video,
who
| would then be prepared for sound (maybe I shouldn't think that way, but
I
| do).
|
| I hope the above helps.
| Diana
|
| | More information is needed
| How (code) used to embed?
| Have you set it to False?
|
| <OBJECT ID="Player"
| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
| <PARAM name="autoStart" value="False">
| </OBJECT>
|
| Does it start on the second click?
| This might be security settings.........
|
| John Malone
| ===================
| || I've embedded windows media player and set it up so that it plays on my
|| site, however, I can't get it to play with a single click. I can set
it
| to
|| auto play, but I don't want that. Is there an easy way to do this?
||
|| Thanks.
||
||
|
|
|
I'm noticing with mine that it starts after just a short delay after hitting
the play button....single click.
 
S

Shirley

Cowtoon said:
Shirley,
Do you remember what your settings are for the value of autostart ... or
perhaps there are other settings that I'm not aware of. Perhaps we can
share websites ... but I don't need to post it here.
Let me know if this would work for you. If the email address below if
real,
I can send you the link ... visa versa.
Diana



I'm noticing with mine that it starts after just a short delay after
hitting
the play button....single click.
My settings for autostart are "0" in the Name+ line, and "false" in the
Param line
Send me your email address to (e-mail address removed) if you want.
 
J

John Malone

There is a way!!!! Eureka!
http://msdn.microsoft.com/library/d.../author/dhtml/overview/activating_activex.asp

That's the ticket!!!

Now it can work without the double clicking...
js is the way around the active-X control problem

John Malone
=============

| Yikes.
| The message you wrote (below) to definitely is true for IE. Bummer!
| I'll take a closer look at what Trevor wrote, tonight after work.
| Thanks.
|
| | The double click is in IE browsers only if you have NN or FF or Opera it
| only takes one click..
| SO the problem is the browser settings witch you have no control over.
| For those that view video a lot they should know.
| If you hover over the player the tool tip says
| "Click to activate and use this control"
| Trevor had a unique JS script Play/Stop button that might over ride the
| security settings and work...
|
| John Malone
| ====================
| || Hi John
|| I installed the Frontpage add-in for WMP. This allows (in FP 2003) the
|| following, Insert | Windows Media Player ..., then I adjust the
| parameters,
|| i.e., looping (not selected), autostart (not selected) and browse for the
|| wmv file. I can also choose the size and what level of controls will be
|| available.
||
|| It does play on the second click. If I click anywhere on the WMP screen
| (on
|| the site), then click the play button, the video will play out. Right
| now,
|| I've had to put an instruction for a visitor to double-click the play
|| button.
||
|| On the code: When I put a value of "0" for autostart, it requires two
|| clicks, when I enter "1" or "T", it plays automatically. There must be a
|| value for a single click (no? yes?). This video is a product demo (<30
| sec)
|| and it has sound. Because it has sound (just a short voice clip), I
don't
|| want it to autostart. I want the visitor to choose to play the video,
who
|| would then be prepared for sound (maybe I shouldn't think that way, but I
|| do).
||
|| I hope the above helps.
|| Diana
||
|| || More information is needed
|| How (code) used to embed?
|| Have you set it to False?
||
|| <OBJECT ID="Player"
|| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
|| <PARAM name="autoStart" value="False">
|| </OBJECT>
||
|| Does it start on the second click?
|| This might be security settings.........
||
|| John Malone
|| ===================
|| ||| I've embedded windows media player and set it up so that it plays on my
||| site, however, I can't get it to play with a single click. I can set it
|| to
||| auto play, but I don't want that. Is there an easy way to do this?
|||
||| Thanks.
|||
|||
||
||
||
|
|
|
 
J

John Malone

Cowtoon,

Here is a sample page so you can check it out in IE.
No double clicking...
http://www.xmas-i-am.com/test/audio1.htm

John Malone
===================
| There is a way!!!! Eureka!
|
http://msdn.microsoft.com/library/d.../author/dhtml/overview/activating_activex.asp
|
| That's the ticket!!!
|
| Now it can work without the double clicking...
| js is the way around the active-X control problem
|
| John Malone
| =============
|
| || Yikes.
|| The message you wrote (below) to definitely is true for IE. Bummer!
|| I'll take a closer look at what Trevor wrote, tonight after work.
|| Thanks.
||
|| || The double click is in IE browsers only if you have NN or FF or Opera it
|| only takes one click..
|| SO the problem is the browser settings witch you have no control over.
|| For those that view video a lot they should know.
|| If you hover over the player the tool tip says
|| "Click to activate and use this control"
|| Trevor had a unique JS script Play/Stop button that might over ride the
|| security settings and work...
||
|| John Malone
|| ====================
|| ||| Hi John
||| I installed the Frontpage add-in for WMP. This allows (in FP 2003) the
||| following, Insert | Windows Media Player ..., then I adjust the
|| parameters,
||| i.e., looping (not selected), autostart (not selected) and browse for
the
||| wmv file. I can also choose the size and what level of controls will be
||| available.
|||
||| It does play on the second click. If I click anywhere on the WMP screen
|| (on
||| the site), then click the play button, the video will play out. Right
|| now,
||| I've had to put an instruction for a visitor to double-click the play
||| button.
|||
||| On the code: When I put a value of "0" for autostart, it requires two
||| clicks, when I enter "1" or "T", it plays automatically. There must be
a
||| value for a single click (no? yes?). This video is a product demo (<30
|| sec)
||| and it has sound. Because it has sound (just a short voice clip), I
| don't
||| want it to autostart. I want the visitor to choose to play the video,
| who
||| would then be prepared for sound (maybe I shouldn't think that way, but
I
||| do).
|||
||| I hope the above helps.
||| Diana
|||
||| ||| More information is needed
||| How (code) used to embed?
||| Have you set it to False?
|||
||| <OBJECT ID="Player"
||| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
||| <PARAM name="autoStart" value="False">
||| </OBJECT>
|||
||| Does it start on the second click?
||| This might be security settings.........
|||
||| John Malone
||| ===================
||| |||| I've embedded windows media player and set it up so that it plays on my
|||| site, however, I can't get it to play with a single click. I can set
it
||| to
|||| auto play, but I don't want that. Is there an easy way to do this?
||||
|||| Thanks.
||||
||||
|||
|||
|||
||
||
||
|
|
 
S

Shirley

John Malone said:
Cowtoon,

Here is a sample page so you can check it out in IE.
No double clicking...
http://www.xmas-i-am.com/test/audio1.htm

John Malone
===================
| There is a way!!!! Eureka!
|
http://msdn.microsoft.com/library/d.../author/dhtml/overview/activating_activex.asp
|
| That's the ticket!!!
|
| Now it can work without the double clicking...
| js is the way around the active-X control problem
|
| John Malone
| =============
|
| || Yikes.
|| The message you wrote (below) to definitely is true for IE. Bummer!
|| I'll take a closer look at what Trevor wrote, tonight after work.
|| Thanks.
||
|| || The double click is in IE browsers only if you have NN or FF or Opera
it
|| only takes one click..
|| SO the problem is the browser settings witch you have no control over.
|| For those that view video a lot they should know.
|| If you hover over the player the tool tip says
|| "Click to activate and use this control"
|| Trevor had a unique JS script Play/Stop button that might over ride the
|| security settings and work...
||
|| John Malone
|| ====================
|| ||| Hi John
||| I installed the Frontpage add-in for WMP. This allows (in FP 2003)
the
||| following, Insert | Windows Media Player ..., then I adjust the
|| parameters,
||| i.e., looping (not selected), autostart (not selected) and browse for
the
||| wmv file. I can also choose the size and what level of controls will
be
||| available.
|||
||| It does play on the second click. If I click anywhere on the WMP
screen
|| (on
||| the site), then click the play button, the video will play out.
Right
|| now,
||| I've had to put an instruction for a visitor to double-click the play
||| button.
|||
||| On the code: When I put a value of "0" for autostart, it requires two
||| clicks, when I enter "1" or "T", it plays automatically. There must
be
a
||| value for a single click (no? yes?). This video is a product demo
(<30
|| sec)
||| and it has sound. Because it has sound (just a short voice clip), I
| don't
||| want it to autostart. I want the visitor to choose to play the video,
| who
||| would then be prepared for sound (maybe I shouldn't think that way,
but
I
||| do).
|||
||| I hope the above helps.
||| Diana
|||
||| ||| More information is needed
||| How (code) used to embed?
||| Have you set it to False?
|||
||| <OBJECT ID="Player"
||| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
||| <PARAM name="autoStart" value="False">
||| </OBJECT>
|||
||| Does it start on the second click?
||| This might be security settings.........
|||
||| John Malone
||| ===================
||| |||| I've embedded windows media player and set it up so that it plays on
my
|||| site, however, I can't get it to play with a single click. I can set
it
||| to
|||| auto play, but I don't want that. Is there an easy way to do this?
||||
|||| Thanks.
||||
||||
|||
|||
|||
||
||
||
|
|
Wow, John :)))
You are something else! Great job....love it!
 
J

John Malone

Thank You!

--
John Malone
==============
|
| | > Cowtoon,
| >
| > Here is a sample page so you can check it out in IE.
| > No double clicking...
| > http://www.xmas-i-am.com/test/audio1.htm
| >
| > John Malone
| > ===================
| > | > | There is a way!!!! Eureka!
| > |
| >
http://msdn.microsoft.com/library/d.../author/dhtml/overview/activating_activex.asp
| > |
| > | That's the ticket!!!
| > |
| > | Now it can work without the double clicking...
| > | js is the way around the active-X control problem
| > |
| > | John Malone
| > | =============
| > |
| > | | > || Yikes.
| > || The message you wrote (below) to definitely is true for IE. Bummer!
| > || I'll take a closer look at what Trevor wrote, tonight after work.
| > || Thanks.
| > ||
| > || | > || The double click is in IE browsers only if you have NN or FF or Opera
| > it
| > || only takes one click..
| > || SO the problem is the browser settings witch you have no control
over.
| > || For those that view video a lot they should know.
| > || If you hover over the player the tool tip says
| > || "Click to activate and use this control"
| > || Trevor had a unique JS script Play/Stop button that might over ride
the
| > || security settings and work...
| > ||
| > || John Malone
| > || ====================
| > || | > ||| Hi John
| > ||| I installed the Frontpage add-in for WMP. This allows (in FP 2003)
| > the
| > ||| following, Insert | Windows Media Player ..., then I adjust the
| > || parameters,
| > ||| i.e., looping (not selected), autostart (not selected) and browse
for
| > the
| > ||| wmv file. I can also choose the size and what level of controls
will
| > be
| > ||| available.
| > |||
| > ||| It does play on the second click. If I click anywhere on the WMP
| > screen
| > || (on
| > ||| the site), then click the play button, the video will play out.
| > Right
| > || now,
| > ||| I've had to put an instruction for a visitor to double-click the
play
| > ||| button.
| > |||
| > ||| On the code: When I put a value of "0" for autostart, it requires
two
| > ||| clicks, when I enter "1" or "T", it plays automatically. There must
| > be
| > a
| > ||| value for a single click (no? yes?). This video is a product demo
| > (<30
| > || sec)
| > ||| and it has sound. Because it has sound (just a short voice clip), I
| > | don't
| > ||| want it to autostart. I want the visitor to choose to play the
video,
| > | who
| > ||| would then be prepared for sound (maybe I shouldn't think that way,
| > but
| > I
| > ||| do).
| > |||
| > ||| I hope the above helps.
| > ||| Diana
| > |||
| > ||| | > ||| More information is needed
| > ||| How (code) used to embed?
| > ||| Have you set it to False?
| > |||
| > ||| <OBJECT ID="Player"
| > ||| CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
| > ||| <PARAM name="autoStart" value="False">
| > ||| </OBJECT>
| > |||
| > ||| Does it start on the second click?
| > ||| This might be security settings.........
| > |||
| > ||| John Malone
| > ||| ===================
| > ||| | > |||| I've embedded windows media player and set it up so that it plays
on
| > my
| > |||| site, however, I can't get it to play with a single click. I can
set
| > it
| > ||| to
| > |||| auto play, but I don't want that. Is there an easy way to do this?
| > ||||
| > |||| Thanks.
| > ||||
| > ||||
| > |||
| > |||
| > |||
| > ||
| > ||
| > ||
| > |
| > |
| Wow, John :)))
| You are something else! Great job....love it!
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top