Comments in flash, Put it in comments secttion |
Comments in flash, Put it in comments secttion |
May 9 2008, 04:16 PM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Aug 2007 Member No: 565,680 |
<style>
.extendedNetwork { visibility:hidden; height:360px !important } </style> <div class="myDclassExtNet"; style="position:absolute; top:190px; left:50%; margin-left:-40px;"> ENTER ANYTHING YOU WANT HERE. [YOUTUBE VIDEOS, LINKS, IMAGES, ETC.] </div> Is there a way i can change the code properties not hide my Ext. Net. but be able to move what ever i put in the Anything you want here part? the code i want the move is below i want tp put it right Here <embed src='http://mocapoke.com/copetutorials/uploader/comments.swf' flashVars='id=FRIEND_ID_HERE&numComments=NUM_OF_COMMENTS' quality='high' menu='false' wmode='transparent' width='485' height='150'></embed> |
|
|
|
![]() |
May 9 2008, 09:21 PM
Post
#2
|
|
![]() Cornflakes :D ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 4,541 Joined: Dec 2005 Member No: 322,923 |
Alright, I'm slightly confused but I'm going to answer what I believe you want answered?
Okay with this code that you posted QUOTE <style> .extendedNetwork { visibility:hidden; height:360px !important } </style> To change it, so it does show up and so you can position it where you want it, change it to this: CODE <style> .extendedNetwork { position:absolute; top:200px; left:50%; margin-left:-250px; height:360px !important; } </style> With the changes, we took out the visibility:hidden; which was actually hiding it. We put in positioning values. So to position the extended network, change the Top numbers (200) to move it up and down and you can change the margin-left number (-250) to move it to the right or left. Okay and these flash comments your talking about, I'm guessing your talking about this codE? CODE <embed src='http://mocapoke.com/copetutorials/uploader/comments.swf' flashVars='id=RAWWRRRRR&numComments=######' quality='high' menu='false' wmode='transparent' width='485' height='150'></embed> Now with this code, remove the RAWWRRRRR and change that with your FRIEND ID. Next where you see all the ##### change that to the number of comments that you want to show. Since your deciding to use this code, there isn't any way to customize this just to let you know. Now if you want to take this code, and put it in a div so you can position it where ever you want change the code to this: And change the margin-left and Top numbers to position it where you want it: [code]<div class="comments" style="position: absolute; left:50%; margin-left:-250px; top:180px; width:485px; height:160px; overflow: auto;"> <embed src='http://mocapoke.com/copetutorials/uploader/comments.swf' flashVars='id=FRIEND_ID_HERE&numComments=NUM_OF_COMMENTS' quality='high' menu='false' wmode='transparent' width='485' height='150'></embed></div> |
|
|
|
caleb4992 Comments in flash May 9 2008, 04:16 PM
XTC Could you clarify?
I'm not sure what you... May 9 2008, 05:51 PM
caleb4992 i want tp put the comments in flash into the comme... May 9 2008, 06:52 PM
XTC Ok now I'm just more confused. May 9 2008, 06:54 PM
caleb4992 ok what part are you having trouble understanding? May 9 2008, 06:56 PM![]() ![]() |