Log In · Register

 
swf files, text?
coolnammy1
post Oct 5 2004, 08:19 PM
Post #1


Senior Member
***

Group: Member
Posts: 49
Joined: Feb 2004
Member No: 2,998



heyy. I made a nice swf file for my layout, but the words to my blog are hidden by the picture. Does anybody know how to put the words on top? pinch.gif
 
 
Start new topic
Replies (1 - 7)
C.Lime.Jello.
post Oct 5 2004, 08:26 PM
Post #2


The voices talk too much... -.-u
******

Group: Member
Posts: 2,099
Joined: Aug 2004
Member No: 39,078



Your Xanga looks okay to me.
But... Like... Those word behind the blog make it hard to read.
 
sweetxsimplicity
post Oct 5 2004, 09:44 PM
Post #3


hi, my name is brianna! =]
*******

Group: Official Member
Posts: 5,764
Joined: Jun 2004
Member No: 22,114



Ermm..the words on your blog are fine.
If you're talking about a different Xanga, just put your div layer code after your image code.
 
coolnammy1
post Oct 6 2004, 09:27 PM
Post #4


Senior Member
***

Group: Member
Posts: 49
Joined: Feb 2004
Member No: 2,998



erhh.. its not for this layout. its for a one that i haven`t posted up yet. could someone please help me? cry.gif
 
sweetxsimplicity
post Oct 6 2004, 10:55 PM
Post #5


hi, my name is brianna! =]
*******

Group: Official Member
Posts: 5,764
Joined: Jun 2004
Member No: 22,114



I already posted what might be a solution, I'm assuming it's not working, so can you post your codes? It would help.
 
coolnammy1
post Oct 7 2004, 09:55 PM
Post #6


Senior Member
***

Group: Member
Posts: 49
Joined: Feb 2004
Member No: 2,998



here you go.. N0 J0CKING

CODE
<object type="application/x-shockwave-flash"
data="http://e.1asphost.com/coolnammy1/FilmLayout.swf"
width="670" height="488px">
   <param name="movie"
value="http://e.1asphost.com/coolnammy1/FilmLayout.swf" />
 </object>

<div align=center>
<div id="content" style="
margin-top:0px;
margin-left:-60px;
height:95px;
width:730px;
position:satic;
overflow:auto;">

<a href="http://www.xanga.com/signin.asp">sign in</a>
+  <a href="http://www.xanga.com/logout.asp">get out</a>
+ <a href="http://www.xanga.com/CLAF/default.asp">look<b>&</b>feel</a>
+ <a href="http://www.xanga.com/private/SubscribeTo.aspx?user=suburbanchopsticks">subscribe</a>
+ <a href="http://www.xanga.com/private/subscriptions.aspx">subs</a>
+ <a href="http://www.xanga.com/private">private</a>
+ <a
href="http://www.xanga.com/suburbanchopsticks">refresh</a>

<!-- begin code provided by createblog.com -->
<script language="JavaScript">
<!--


var fadeTo = "51a067";


var fiBy = 10;


var foBy = 10;


var speed = 40;


var ignoreClass = "ignore";

var opera, ie, dom, x = 0, oc, fader, ocs = new Array();

if (navigator.userAgent.indexOf("Opera") != -1) opera = true
else if (document.all && !opera) ie = true
else if (!document.all && document.getElementById) dom = true;

function convertRGB(z)
{
var newfcS = "", splitter = "";
splitter = z.split(",");
splitter[0] = parseInt(splitter[0].substring(4, splitter[0].length));
splitter[1] = parseInt(splitter[1]);
splitter[2] = parseInt(splitter[2].substring(0, splitter[2].length-1));
for (var q = 0; q < 3; q++)
 {
  splitter[q] = splitter[q].toString(16);
  if (splitter[q].length == 1) splitter[q] = "0" + splitter[q];
  newfcS += splitter[q];
 }
return newfcS;
}

function currentColour(index)
{
var temp, cc;
if (opera) cc = document.links[index].style.color
else if (ie) cc = document.links[index].currentStyle.color
else if (dom) cc = document.defaultView.getComputedStyle(document.links[index], '').getPropertyValue("color");
if (cc.length == 4 && cc.substring(0, 1) == "#")
 {
  temp = "";
  for (var a = 0; a < 3; a++)
   temp += cc.substring(a+1, a+2) + cc.substring(a+1, a+2);
  cc = temp;
 }
else if (cc.indexOf("rgb") != -1) cc = convertRGB(cc)
else if (cc.length == 7) cc = cc.substring(1, 7)
else cc = fadeTo;
return cc;
}


function convert2Dec(hex)
{
var rgb = new Array();
for (var u = 0; u < 3; u++)
 rgb[u] = parseInt(hex.substring(u*2, u*2+2), 16);
return rgb;
}

function newRGB(f, n, d)
{
var change;
if (d == 1) change = fiBy
else change = foBy;
for (var g = 0; g < 3; g++)
 {
  if (n[g] > f[g] && n[g] - change >= 0) n[g] -= change;
  if (n[g] < f[g] && n[g] + change <= 255) n[g] += change;
 }
return n;
}

function fade(index, d)
{
var fc, nc, temp = new Array(), finished = false;
nc = convert2Dec(currentColour(index));
if (d == 1) fc = convert2Dec(fadeTo)
else fc = convert2Dec(ocs[x]);
temp = convert2Dec(currentColour(index));
nc = newRGB(fc, nc, d);
if ((nc[0] == temp[0]) && (nc[1] == temp[1]) && (nc[2] == temp[2]))
 finished = true;
if (!finished) document.links[x].style.color = "rgb(" + nc[0] + "," + nc[1] + "," + nc[2] + ")"
else clearInterval(fader);
}

function findLink(over)
{
if (document.layers) return;
if (fader)
 {
  clearInterval(fader);
  document.links[x].style.color = "#" + ocs[x];
 }
if (over && !this.id) this.id = over;
x = 0;
while (!(this.id == document.links[x].id) && (x < document.links.length))
 x++;
if (this.id == document.links[x].id)
 {
  oc = currentColour(x);
  fader = setInterval("fade(" + x  + ", 1)", speed);
 }
}

function clearFade()
{
if (document.layers) return;
if (fader) clearInterval(fader);
fader = setInterval("fade(" + x + ", 0)", speed);
}

function init()
{
for (var i = 0; i < document.links.length; i++)
 {
  ocs[i] = currentColour(i);
  var currentOver = document.links[i].onmouseover;
  var currentOut = document.links[i].onmouseout;
  var ignoreIt = document.links[i] == ignoreClass;
  if (!ignoreIt) document.links[i].id = "link" + i;
  if (!currentOver && !currentOut && !ignoreIt)
   {
    document.links[i].onmouseover = findLink;
    document.links[i].onmouseout = clearFade;
   }
 }  
}

if (opera || ie || dom) window.onload = init;
-->
</script>

<!-- end code provided by createblog.com -->

<script language=JavaScript>
document.onmousedown=click
var times=0
var times2=10
function click() {
if ((event.button==2) || (event.button==3)) {
if (times>=1) { bye() }
alert("WhAt ArE yOu DoInG? iTs OkAy!!! Im SuRe It WaS aN aCcIdEnT =]");
alert("ThIs SiTe Is CoPyRiGhTeD bY cOoLnAmMy1");
alert("DoN't RiGhT cLiCk AgAiN O=)");
alert("OR YOU`LL BE SORRY >=O");
times++ } }
function bye() {
alert("OMG!!!! mwhahahahaha =D enjOy!");
bye() }
</SCRIPT>

<script type='text/javascript'>
document.title = ('Suburban Chopsticks');
</script>

<style type="text/css">
/* Moving Film Layout */
/* by Solid Oxygen ©  (xanga.com/suburbanchopsticks) */
body {
 background-color: #9fd98b;
 scrollbar-arrow-color: #ffffff;
 scrollbar-track-color: # transparent;
 scrollbar-shadow-color: # transparent;
 scrollbar-face-color: #51a067;
 scrollbar-highlight-color: # transparent;
 scrollbar-darkshadow-color: #ffffff;
 scrollbar-3dlight-color: #ffffff;
 }

.left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p {
/* edits main text */
 font:normal 11px arial;
 line-height:10px;
 color:# 51a067;
 letter-spacing:0px;
 text-align:justify;
 }

table.footer TD {
/* this makes the footer at the bottom centered */
/* leave it alone unless you know what to do*/
 text-align: center;
 }

div.blogheader, .caption {
/* edits the dates */
 font-family:Arial;
 text-transform:first letter uppercase;
 font-size:16px;
 line-height:11px;
 font-weight:bold;
 color:# 51a067;
 letter-spacing:0px;
 text-align: left;
 background-color: transparent;
 }

a:link, .footernav.link, a.footernav:link, a.footernav:active {
/* edits all links */
 color:# 51a067;
 font:normal 11px arial;
 text-decoration: none;
 }

a:visited, a.footernav:visited,  {
/* edits the links that the user has visited */
 color:# 51a067;
 text-decoration: none;
 font:normal 11px arial;
 filter:blur(add="0",direction="80",strength="5"); height:0;
 }

a:hover {
/* edits when user mouseovers the links */
 color:# 51a067;
 cursor: crosshair;
 text-decoration: none;
 font:normal 11px arial;
 }

input, select, textarea, .textfield, .button {
/* this edits the buttons, dropdowns, etc. */
 border: 1px solid #51a067;
 font:normal 11px arial;
 letter-spacing:0px;
 }

table.left {
/* this edits the menu module */
 border: 1px solid #51a067;
 width:210px;
 }

table.blogbody {
/* this edits the other place where the  blog is */
 border: 1px solid 51a067;
 width:600px;
 background-color: transparent;
 margin-left:0px;
 }

table.left th {
/* on your menu module, this edits the title part of it */
/* like BLOGRINGS, POSTING CALENDAR, etc */
 background-color: transparent;
 font: bold 11px arial;
 text-transform: first letter uppercase;
 color: #8B3E2F;
 border: none;
 }
table.left TD {
/* on your menu module, this edits the body part of it */
 background-color: transparent;
 border: none;
 }

table.search TD, table.search, table.announcements {
/* border of search bar (if you have it) */
 background-color: #51a067;
 border: 0px solid #51a067;
 }
table.search TD, table.announcements TH {
/* this should be left alone */
/* unless you know what to do */
 border: 0px solid #51a067;
 }
table.navigation, table.main, table.footer {
/* the width of your blog with modules */
 width: 600px;
 }
hr {
/* horizontal divider */
 border: 1px solid #FCEBFF;
 }

.leftmoduletitlebar, .leftmoduleborder, .leftmoduleinterior, table.left, table.left TH, table.left TD, table.navigation, table.footer {display: none;}

</style>
 
coolnammy1
post Oct 8 2004, 11:20 PM
Post #7


Senior Member
***

Group: Member
Posts: 49
Joined: Feb 2004
Member No: 2,998



Here`s the code. Could someone please tell me how to put the words ON TOP of the swf movie !?!?!?
 
sweetxsimplicity
post Oct 9 2004, 12:20 AM
Post #8


hi, my name is brianna! =]
*******

Group: Official Member
Posts: 5,764
Joined: Jun 2004
Member No: 22,114



Please don't double post wink.gif

Just put all the codes before the .SWF movie. xD
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: