Posts tagged some
Q&A: NEED SOME ANSWERS AS TO WHY CERTAIN ACTORS LEFT THE DANIEL BOONE SERIES YOUR HELP WILL BE APPRECIATED?
Nov 8th
Question by R J:
Need some answers as to why certain actors left the Daniel Boone series your help will be appreciated?
I never watched the Dan Boone series, but saw one a year ago and rated it a 5 star “Kentukee”.Since then I have found that the entire series is being remastered and have been able to find seasons 1-4 (although they were most of the time sold out). My question is why did Albert Salmi (Yadkin) leave the show. I know why Ed ames (Mingo) left as he wanted to sing and had a bunch of hits anad three number ones, but looks like he could have filmed ten or more shows a year. Also the Cartwright girl (Jemima) whose sister was on Lost in Space, was she written out of the script. Also later on even Dallas Mckinnon (Cinncinatus) is gone. Also some of the major Chiefs are replaced. Want to know if left for green pastures or greedy agents or just written out. Even Fess Parker stated he was upset when Ed ames left on one of the dvd special features. ON the Boone site they rate “Rope for Mingo” tops, but I enjoy Imposter and Traitor. Thanks for any help.
Read More >>
IN WHAT SITE CAN I FIND SOME SCRIPT OF FILIPINO PLAY?
Sep 19th
Question by ~`nodame:
In what site can I find some script of Filipino play?
In what site can I find some filipino play with script.
It’s a rush so I need someone’s help.
thanks!
particularly;
-Comedy
-Melodrama
^_^
Read More >>
STARTING AN ONLINE HORSE SIM GAME!! NEED SOME HELP…?
Sep 3rd
Question by kellyannettes:
Starting an on the web horse sim game!! Need some help…?
Does anyone have any recommendations on starting up a site like this? I have already contacted someone to do all of the scripting and codes for it
It is a very involved game, unlike any other horse sim on the web this day with coat color genetics and markings that you can produce when you breed horses. I am planning on offering 1 week free and then 24.00 for a year and 15.00 for 6 months. Do you think that is too expensive? Most horse sites are free unless you want to upgrade, but I would like to begin a buisiniess this way, and I also need to pay for the server costs and production cost of the game which will be about $ 5,000 when it is complete. Do you think it is ok to charge money? Would you pay that amount for a Horse Sim you really enjoyed? Thanks!
The name of it is Equisis
It will probably have the web address of http://www.equisis.net
Thank you all for your views this really helped!
Read More >>
I WANT TO CREATE A WEBSITE OR A GAME IVE GOT SOME SCRIPTS BUT NEED TO PUT THEM ON CRIMSON EDITOR HOW WOULD?
Aug 31st
Question by karla d:
I want to create a website or a game ive got some scripts but need to put them on crimson editor how would?
do that? please someone help and if anyone want to do an rpg game with me leave your msn addy
When i state scrips i mean they are on a web site and i need to transfer them to crimson editor
Read More >>
WHAT ARE SOME GOOD FREE HOSTING SITES THAT ALLOW .PHP SCRIPTS?
Aug 11th
Question by Kai:
What are some good free hosting sites that grant .php scripts?
A friend of mine is looking to create a .php based game, and is looking for a site with free hosting. What are some of the ideal free hosting sites (that grant .php) you have had experiences with?
Read More >>
IS THERE SOME SORT OF SCRIPT OF PERSON WHO CAN DO THIS JOB FOR ME?
Jul 12th

Question by John S:
Is there some sort of script of person who can do this job for me?
I have a website called www.gamersdestiny.com. This site is currently a on the web game website like miniclip. I want to change this site so that people can sell MMORPG accounts for free i.e Runescape, WOW (World of Warcraft), Tribal Wars etc.
I want to make it similar to www.dealasite.com, so it is like a private kind of sale and people can sell easily etc. I will make money from those who want featured listing or something like that. Can anyone design and program a site for me or is there any script that can help me out?
Please do post serious answers since I want this to be done as soon as possible.
Thanks!!
Read More >>
STARTING AN ONLINE HORSE SIM GAME, I HAVE SOME QUESTIONS ABOUT IT :)?
May 1st
Question by kellyannettes:
Starting an On the web Horse Sim Game, I have some questions about it
?
Does anyone have any recommendations on starting up a site like this? I have already contacted someone to do all of the scripting and codes for it
It is a very involved game, unlike any other horse sim on the web this day with coat color genetics and markings that you can produce when you breed horses. I am planning on offering 1 week free and then 24.00 for a year and 15.00 for 6 months. Do you think that is too expensive? Most horse sites are free unless you want to upgrade, but I would like to begin a buisiniess this way, and I also need to pay for the server costs and production cost of the game which will be about $ 5,000 when it is complete. Do you think it is ok to charge money? Would you pay that amount for a Horse Sim you really enjoyed? Thanks!
The name of it will be Equisis
It will probably have the web address of http://www.equisis.net
Thank you all for your views this really helped!
Read More >>
I HAVE A PHP WEBSITE SCRIPT, CAN SOME HELP ME INSTALL IT?
Mar 4th
Question by TOM N:
I have a PHP website script, can some help me install it?
I have a PHP website script, can some help me install it.
Thanks
Read More >>
Q&A: HOW TO MAKE CSS NOT APPLY TO A DIV/HOW TO MAKE EXCEPTIONS FOR SOME DIVS?
Jan 27th
Question by James:
How to make CSS not apply to a div/how to make exceptions for some divs?
Hi,
I am trying to insert some divs into a website. I want to control the div.style.top dynamically from a .js file. This works on some sites, but on other sites the style.top property gets set by the site to 0 pt all the time.
I think maybe the sites’ CSS scripts are overriding my dynamic setting of style.top. I tried setting the top property in my own CSS script, which I inject a link to after links to the site’s own CSS scripts, but the style.top for my div keeps getting set to 0 pt.
Is there a way I can put code in my CSS script so that none of the other sites’ CSS scripts affect my div, using ,my div’s id selectors? What is CSS code to specify that no other CSS should affect the div? Thanks!
I’m u sing an external .js file to create a div node which I append to an html file, I first set its properties such as var x=document.createElement(‘div’);x.style.position = “absolute”;x.style.right = “0px”; x.style.top=”40px”; I also have a function in the .js file with a repeated setInterval that keeps track of how far up or down the window has been scrolled and sets x.style.top to that number of pixels. However, for this some pages of html, whenever I append this new div I created to the document, the x.style.top gets set to top:0 pt no matter what I try to do. On other websites it works fine, initially x.style.top=”40px” like I set it, and then it will be set to whatever the number of pixels the window has been scrolled. Any idea why for some html pages the x.style.top gets permanently set to 0 pt?
Weird…it works when I set the div atrributes through x.innerHTML= …
And now it doesn’t matter whether it’s position: absolute or float:left or float:right, my div scrolls with the window…how does that work? I thought you could only have a div moving around if it was set to position:absolute, but it’s moving around if I set it to float too.
And this seems to only work in Firefox…wow, IE8 is so different. Firefox doesn’t seem to care if it’s position absolute or float, my div will scroll…
Okay, my div seems to be able to scroll in FF and IE when I set the div to position:fixed…
Read More >>
HOW CAN I MAKE A SIMPLE FLASH GAME AND LEARN SOME ACTION SCRIPT TOO?
Dec 26th
Question by chuckydies:
how can i make a easy flash game and learn some Action script too?
I want to learn how to make flash games and i would like to learn Action scrip too but i can not find a good tutorial. If you have a site where i can learn for free tell me please
Read More >>








