generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Scripters
Home Search
 

Re: I didn't want to release this yet, but I guess I will.

Previous Thread :: Next Thread 
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:00 PM
Scripters, solemnly swear to not tell anyone about this. Keep this website to yourself, as it is not done yet.
I believe the idea is potentially worth quite a lot once I get done with it.

The site is not self-explanatory. I want you guys to venture into it.

Tell me what you think of it...

[I have noting to say.][1]

-metaplates, Master of JavaScript.


  [1]: http://www.spotblock.net/
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:01 PM


-metaplates, Master of JavaScript.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:02 PM
Heh, sorry. Whenever I post JUST my signature, it means either "excuse the typo", or "sorry for latetoasting."

-metaplates, Master of JavaScript.
Report Abuse
aboy5643a is not online. aboy5643a
Joined: 20 Nov 2010
Total Posts: 2785
30 Dec 2011 08:02 PM
I smell scam... Things that ask for my last name are sketchy
Report Abuse
SDuke524 is not online. SDuke524
Joined: 29 Jul 2008
Total Posts: 6267
30 Dec 2011 08:03 PM
Looks nice. Work on getting screen sizes though, everything is off in weird places on my screen. Plus you forgot to check for if the client was logged in for the login screen.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:04 PM
Thanks SDuke. I know, I have a 28" monitor. I'm working on that.

I'm trying to follow the footsteps of Mark Zuckerberg. ^.^

-metaplates, Master of JavaScript.
Report Abuse
aboy5643a is not online. aboy5643a
Joined: 20 Nov 2010
Total Posts: 2785
30 Dec 2011 08:05 PM
I actually love the idea. A giant blog wall. Although something like this exists (only for adult females to gossip about recipes and soap operas; my mom uses it. Google pinterest; it's really well done)
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:09 PM
-aboy
It's not necessarily JUST like Pintrest.

It's like this; take Facebook, smash it into the wall of Tumblr, and dip in Blogger.

-metaplates, Master of JavaScript.
Report Abuse
aboy5643a is not online. aboy5643a
Joined: 20 Nov 2010
Total Posts: 2785
30 Dec 2011 08:10 PM
"something like this" I did say LIKE :P I like the idea of a blog that's been all smashed into a feed though :)
Report Abuse
SDuke524 is not online. SDuke524
Joined: 29 Jul 2008
Total Posts: 6267
30 Dec 2011 08:11 PM
I believe the technical name for it is "Imageboard."
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:12 PM
SDuke
It's not an Imageboard either. ;)
It's an innovative idea, really. Nothing exactly like the others.

Aboy
Eh, yep I guess. Thanks for the feedback though.

-metaplates, Master of JavaScript.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:25 PM
Sorry if the Workdesk and Login were down, I just fixed.

-metaplates, Master of JavaScript.
Report Abuse
Charl3s7 is not online. Charl3s7
Joined: 07 Dec 2007
Total Posts: 4146
30 Dec 2011 08:27 PM
You may want to refine your design. It's kind of scattered.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:28 PM
@Charl3s7
It looks fine on my screen, I just need to figure out a way to adjust sizes to others' screens.

-metaplates, Master of JavaScript.
Report Abuse
SDuke524 is not online. SDuke524
Joined: 29 Jul 2008
Total Posts: 6267
30 Dec 2011 08:32 PM
Just use the `window.screen` object.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 08:40 PM
@SDuke
I knew I would use `window.screen`, but what would I adjust? Pixels, percentage, etc....?

-metaplates, Master of JavaScript.
Report Abuse
SDuke524 is not online. SDuke524
Joined: 29 Jul 2008
Total Posts: 6267
30 Dec 2011 09:01 PM
Use a percentage of course.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 09:03 PM
I'm going to go through hell to make all these style sheets.

    function checkHeight(win) {
        var valw = win.screen.width;
        var valh = win.screen.height;
        if (valw == 800 && valh == 600) {
            return '86';
        }
        if (valw == 1024 && valh == 768) {
            return '17';
        }
        if (valw == 1336 && valh == 768) {
            return '137';
        }
        if (valw == 1280 && valh == 800) {
            return '128';
        }
        if (valw == 1440 && valh == 900) {
            return '149';
        }
        if (valw == 1680 && valh == 1050) {
            return '161';
        }
        if (valw == 1920 && valh == 1080) {
            return '191';
        }
        if (valw == 1600 && valh == 900) {
            return '169';
        }
        if (valw == 1360 && valh == 768) {
            return '1376';
        }
        if (valw == 1024 && valh == 600) {
            return '1060';
        }
        if (valw == 1152 && valh == 864) {
            return '118';
        }
        if (valw == 1280 && valh == 768) {
            return '127';
        }
        if (valw == 1280 && valh == 720) {
            return '1272';
        }
    }

-metaplates, Master of JavaScript.
Report Abuse
SDuke524 is not online. SDuke524
Joined: 29 Jul 2008
Total Posts: 6267
30 Dec 2011 09:10 PM
Or couldn't you just do something like :

    var valw = win.screen.width;
    var valh = win.screen.height;
    var dispw=(valw/your_screen_width_here);
    var disph=(valh/your_screen_height_here);

then multiply all the pixels by those that way it'll automatically fit.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 09:11 PM
Good idea. I'll try it.
But wait.. wouldn't that increase the size of it for small-screen users?

-metaplates, Master of JavaScript.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 09:12 PM
Oh, nevermind. My mind isn't working today. :3

-metaplates, Master of JavaScript.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 09:25 PM
Can somebody test it and see if it works? Just uploaded the new files.

-metaplates, Master of JavaScript.
Report Abuse
Quenty is not online. Quenty
Joined: 03 Sep 2009
Total Posts: 9316
30 Dec 2011 09:27 PM
Remove all the 'extra' info stuff. No one wants to give info like that.
Report Abuse
metaplates is not online. metaplates
Joined: 20 Dec 2011
Total Posts: 423
30 Dec 2011 09:28 PM
@Quenty
'Extra' as in what? Fname & Lname?

-metaplates, Master of JavaScript.
Report Abuse
SDuke524 is not online. SDuke524
Joined: 29 Jul 2008
Total Posts: 6267
30 Dec 2011 09:33 PM
Really guys? For first and last name I just did "SDuke" and then "524". How hard is it to make stuff up?
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripters
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image