This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Topics - flyingfisch
46
« on: December 09, 2011, 12:01:52 pm »
OK, here is the game. Each post consists of 2 lines. The first line has a cheapie solution to the last post. The second line has a problem.
Example problem: My TI calculator wont turn on.
Example Solution: No problem! Now go buy a PRIZM!
Problem for next poster: How do I do a google search?
47
« on: December 09, 2011, 10:54:25 am »
Howdy. Google just changed their navigation technique. Go to http://google.com/ to check it out! Tell us how you like it!
48
« on: December 08, 2011, 12:02:27 pm »
SYSTEM INFO: Windows XP pro and Ubuntu 11.10 dual boot nVidia Graphics card emachines T2482
OK, so today, i boot up my computer and i get the grub 2 boot menu as usual. I select Ubuntu and i get a black screen with a white cursor blinking in the corner. So i booted up my LiveCD and searched for the problem on the internet. I found that since I have nVidia graphics card, I can edit the boot script line that says:
splash quiet quiet splash
(idk if that was the exact code, but it was similar)
and replaced it with:
nomodeset
It showed text now and got hung up at:
Begin: Running /scripts/init-bottom ... done
Does anyone know whats going on? (it was working for a few days before this happened)
49
« on: December 04, 2011, 01:44:07 pm »
Ok, im running winXP and ubuntu 11.10 side-by-side, and i have a 40GB external USB drive. When i try to access it i get an error saying that its a hibernated volume da-da-da-da and to try inpputting some code in terminal. when i do the code, i get an error saying that only root can mount. not sure what thats supposed to mean . So, could someone please help me?
50
« on: December 02, 2011, 08:44:07 am »
Ubuntu 11.10 GNOME 3.2/Unity desktop
when i input this in terminal:
sudo apt-get remove gnome-screensaver
I get this (after inputting my password when prompted):
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
51
« on: November 29, 2011, 02:57:03 pm »
1984
52
« on: November 15, 2011, 04:17:22 pm »
I am working on a luaFX shell-style interface, kind of like Python's IDLE. Please tell me if you think this is a good idea. I will post screenshots later.
53
« on: November 14, 2011, 11:50:26 am »
54
« on: November 05, 2011, 03:57:49 pm »
How would I do tilemap collisions in LuaFX? I don't really want code, I just want to get a basic idea of how its done.
56
« on: October 25, 2011, 07:46:43 pm »
This topic will get random +1's.
57
« on: October 24, 2011, 07:42:21 pm »
58
« on: October 21, 2011, 06:36:23 pm »
59
« on: October 21, 2011, 12:17:15 pm »
60
« on: October 19, 2011, 01:19:09 pm »
Why won't this code work in luaFX? I am trying to make an iPhone type slider.
arrow_spr='0x1F, 0xFF, 0xF8, 0x3F, 0xFF, 0xFC, 0x40, 0x00, 0x02, 0xC0, 0x00, 0x03, 0xC0, 0x00, 0x03, 0xC7, 0x80, 0x03, 0xC3, 0xC0, 0x03, 0xC1, 0xE0, 0x03, 0xC0, 0xF0, 0x03, 0xC0, 0x78, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x1E, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x78, 0x03, 0xC0, 0xF0, 0x03, 0xC1, 0xE0, 0x03, 0xC3, 0xC0, 0x03, 0xC7, 0x80, 0x03, 0xC0, 0x00, 0x03, 0xC0, 0x00, 0x03, 0xC0, 0x00, 0x03, 0x40, 0x00, 0x02, 0x3F, 0xFF, 0xFC, 0x1F, 0xFF, 0xF8'
local line = graydraw.line local wait = misc.wait
function rectangle (x1, y1, x2, y2) -- rectangle is a function of four parameters lua line (x1, y1, x1, y2) -- draws the rectangle line (x1, y1, x1, y2) line (x1, y1, x1, y2) line (x1, y1, x1, y2) end
function slider (x) rectangle (6, 17, 120, 41) --Draws rectangle spritexy x+6,30,arrow_spr end
slider (0) wait(100)
|