1
richardb96
Is there a Newsletter module to work with 2.0.18.1
  • 2008/9/11 7:45

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


Hi Guys,

Is there a Newsletter module to work with 2.0.18.1

TIA

Richard



2
richardb96
Re: How do I add a flash movie an article in Smartsection? Urgent Please!
  • 2008/6/18 20:02

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


The only difference i can see is the addition of - allowScriptAccess="sameDomain".

It still does the same thing. I'll expalin a bit further. The flash movie is working but it hasdn't got all the features we have built in that work on the flash image on the index page as I added this one directly and the articles have been added via SmartSection. This is where i'm having probs. I can get all the features of the .swf to work.
Can i wrap the flash movie into a html? that way the features wil work as intended?



3
richardb96
Re: How do I add a flash movie an article in Smartsection? Urgent Please!
  • 2008/6/18 19:16

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


thanks but I had that. I removed the path for posting purposes!

It's the top piece of code I want to use....how tho?



4
richardb96
Re: How do I add a flash movie an article in Smartsection? Urgent Please!
  • 2008/6/18 18:54

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


I really want to put this code into an article......

<script language="JavaScript" type="text/javascript">
<!--
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) { // if we've detected an acceptable version
// embed the flash movie
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/sh ... ash/swflash.cab#version=7,0,0,0',
'width', '530',
'height', '255',
'src', 'atag',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'atag',
'bgcolor', '#333333',
'name', 'atag',
'menu', 'true',
'allowScriptAccess','sameDomain',
'allowFullScreen','false',
'movie', 'atag',
'salign', ''
); //end AC code
} else { // flash is too old or we can't detect the plugin
var alternateContent = '<img src="../imgs/atag.jpg">'
document.write(alternateContent); // insert non-flash content
}
}
// -->
</script>


but it doesn't work or I'm not sure if it's to go in tags etc. The code below is the only way i can get the flash image to show - by embeding it. But it looses some of the features we made the flash file have. i.e. a static image behind the flash if the user doesn't have flash installed + a loading image etc.
How can I add the above code?
We have the html file that the flash code above was in & it worked fine as a stand alone page (for testing).

<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="530" height="255">
<param name="movie" value="../atag.swf" />
<param name="quality" value="high" />
<embed src="../atag.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="530" height="255"></embed>
</object>

Q. I tried to pagewrap the html file - this didn't work or i got it wrong.
would that be an answer here?

Please help, it's the last thing on my site to do & I don't want to compromise as I'm sure it can be done.



5
richardb96
Re: How do I add a flash movie an article in Smartsection? Urgent Please!
  • 2008/6/18 15:07

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


New feature !!!Link a file to this article*
Select a file from your computer to attach it to this article. You will be able to add more files once the article has been created. Simply edit the article and scroll at the bottom of the page to see the Add file button.

For example, you could add a Word document or an Excel document. You can even upload a Flash file and it will be directly embeded into your article ! New feature !!!

Tried to upload a .swf file. Just isn't having it!



6
richardb96
Re: How do I add a flash movie an article in Smartsection? Urgent Please!
  • 2008/6/18 14:18

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


i'm not sure if that will give me just a flash image sitting in my article will it?



7
richardb96
Re: How do I add a flash movie an article in Smartsection? Urgent Please!
  • 2008/6/18 13:51

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


I added this

<script language="JavaScript" type="text/javascript">
<!--
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) { // if we've detected an acceptable version
// embed the flash movie
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0',
'width', '530',
'height', '255',
'src', 'atag',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'atag',
'bgcolor', '#333333',
'name', 'atag',
'menu', 'true',
'allowScriptAccess','sameDomain',
'allowFullScreen','false',
'movie', 'atag',
'salign', ''
); //end AC code
} else { // flash is too old or we can't detect the plugin
var alternateContent = '<img src="../imgs/atag.jpg">'
document.write(alternateContent); // insert non-flash content
}
}
// -->
</script>

but it leaves a blank space



8
richardb96
How do I add a flash movie an article in Smartsection? Urgent Please!
  • 2008/6/18 13:49

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


Hi Guys,

How do I add a flash movie an article in Smartsection? Urgent Please!

TIA



9
richardb96
Re: Where is the time zome listings??
  • 2008/6/6 17:32

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


thanks..



10
richardb96
Where is the time zome listings??
  • 2008/6/6 16:36

  • richardb96

  • Just popping in

  • Posts: 78

  • Since: 2008/4/29


Hi Guys,

Where is the time zome listings?? I want to reduce the size of the list as I onlu deal with the UK & the list is too long & it's pushing my page width out...

TIA




TopTop
(1) 2 3 4 ... 8 »



Login

Who's Online

241 user(s) are online (141 user(s) are browsing Support Forums)


Members: 0


Guests: 241


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits