Show Posts

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.


Messages - Eeems

Pages: 1 ... 74 75 [76] 77 78 ... 370
1126
Axe / Re: Specific Tutorials List (Axe)
« on: November 22, 2012, 11:42:37 am »
I'd have to do something to change how you grabbed the post and changed all the links to use _top as the target to get rid of the random characters at the start and the extra spaces at the end. Adding the Originally posted by to the top should be easy though.

EDIT: Done. Added the orignially posted by/on and I also added a link to the topic at the bottom in a better way then was there before :P

1127
OmnomIRC Development / Re: OmnomIRC acting up D:
« on: November 22, 2012, 11:40:44 am »
http://help.opera.com/Linux/9.52/en/devtools.html <- How to open the console in Opera.
https://developers.google.com/chrome-developer-tools/docs/overview#access <- Open console in Chrome.
Ctrl-shift-k <- open console in firefox for windows/linux Mac is (apple key)+shift_+k. You can also access it under tools->Web Developer->Web Console or Firefox Menu->Web Developer-> Web Console.
Everybody who reported this should check their console and see if there is anything abnormal going on. Post a log of all the errors/warnings they see. I'm wondering if it might have to do with omnomIRC not being hosted on omnimaga anymore.

1128
I'm pretty sure I've played it on my 84+ before. Unless it was a 84+SE rom in wabbit.

1129
I've run it on my 84+
Try compiling an app from the rom and see if it will work.

1130
OmnomIRC Development / Re: OmnomIRC acting up D:
« on: November 21, 2012, 04:21:42 pm »
What browser?
Have you tested in other browsers?
Can you see any errors on the console for the browser which is having this issue?
Have you tried clearing your cache/hard refreshing the page?

1131
Other Calc-Related Projects and Ideas / Re: ticalc.org "Package Manager"
« on: November 21, 2012, 04:17:44 pm »
wget is a command line file downloader. It in and of itself has nothing to do with hotlinking. People can use it to scrape files from sites though.

1132
Axe / Re: Specific Tutorials List (Axe)
« on: November 21, 2012, 04:14:08 pm »
Your issue with javascript was probably due to the fact that it adds <br/> tags on newlines, even in a <script> tag

anyways, here it is.
Spoiler For Spoiler:
Code: [Select]
[html]
<iframe id='tutframe' src="tutorialfetch.php?topic=<topic number>" style='width:100%;' name="tutorial" frameborder="0" onload="setTimeout(resizeIframe,0)"></iframe>
<script type="text/javascript">function resizeIframe(){var x=(new RegExp("[\\?&]height=([^&#]*)")).exec(document.getElementById('tutframe').contentWindow.location),f=document.getElementById('tutframe');x=(x==null?0:x[1])+10;f.height=x;f.style.height=x;f.scrolling="auto";f.style.margin=0;f.style.border=0;}</script>
[/html]
example of it in action: http://www.omnimaga.org/index.php?action=articles;sa=view;article=42

1133
Axe / Re: Specific Tutorials List (Axe)
« on: November 21, 2012, 02:25:27 pm »
If they support html tags, then they support JavaScript ;)
Well, I just tried using the width, and it fills out perfectly, just need to get the height dynamically done with some JavaScript.

EDIT: And done :)
Code: [Select]
[html]
<iframe id='tutframe' src="tutorialfetch.php?topic=1720" style="width:100%;margin:0;border:0;" name="tutorial" onload="iframeResize();"></iframe>
<script type="text/javascript">
function iframeResize(){
var frame = document.getElementById('tutframe');
frame.height = frame.contentWindow.document.body.scrollHeight;
}
</script>
[/html]

EDIT2: erm, nvm.... it inserts <br/> on newlines ofc. Also, I can't access the document variable.

1134
Web Programming and Design / Re: how much is 5M
« on: November 21, 2012, 02:24:00 pm »
Ah, well you could try to contact them about it.

1135
Web Programming and Design / Re: how much is 5M
« on: November 21, 2012, 01:48:44 pm »
I remember that DJ :(
I wonder if they would let you if you tried to monitize it again? I know that it's changed a little since I first started.

1136
Web Programming and Design / Re: how much is 5M
« on: November 21, 2012, 01:23:42 pm »
I have them blocked with adblock. Mainly due to porn ads appearing in the stranges places...
You do earn money though slowly. I have ads on some of my youtube videos, so far google owes me just under $4 :P

1137
Web Programming and Design / Re: how much is 5M
« on: November 21, 2012, 12:37:18 pm »
You could always add some ads to it if it does get popular enough.

1138
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 21, 2012, 12:11:42 pm »
People do that all the time on youtube to steal views... It's really annoying. You could probably do a copyright takedown of it or something.

1139
Axe / Re: Specific Tutorials List (Axe)
« on: November 21, 2012, 12:03:26 pm »
Ok, I took a look, you can set the width to automatically fill with a style="width:100%;". To automatically resize to the height of the iframe is easy too, I'd just have to write up a little javascript code.

1140
Other Calc-Related Projects and Ideas / Re: ticalc.org "Package Manager"
« on: November 20, 2012, 10:39:53 pm »
I should probably reboot into linux and rebuild the omni repo to include a more recent snapshot of this :P
http://omni.eeems.ca/ <- I've been keeping it semi up to date.

Pages: 1 ... 74 75 [76] 77 78 ... 370