This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#176 2011-07-21 11:37:13

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

Why so you are!

(note how the above statement remains true, just as yours in the post above does!  big_smile )


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#177 2011-07-21 11:39:12

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

veggieman001 wrote:

sparks wrote:

Cheers guys!

Yes VM, I'll work on a parser for _ to " " in a bit  tongue

Okay, great.

He's veggie.  wink

I don't know who I'm voting for. ^^

Offline

 

#178 2011-07-21 11:56:01

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

I know who you should vote for... http://www.weebly.com/uploads/8/1/3/6/8136364/244370015.gif

Last edited by sparks (2011-07-21 11:59:33)


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#179 2011-07-21 11:58:13

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

SeptimusHeap wrote:

This is epic. Ideas > code > generator > sig url!

smile  yep! i'm adding tinyurl now!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#180 2011-07-21 11:58:32

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

sparks wrote:

I know who you should vote for... http://www.pashnit.com/forum/images/smi … nocent.gif

Blocked.  sad
http://weebly.com/uploads/8/1/3/6/8136364/244370015.gif

Offline

 

#181 2011-07-21 12:00:03

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

yeah.. odd it's blocked for me too...


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#182 2011-07-21 12:06:43

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

sparks wrote:

I know who you should vote for... http://www.pashnit.com/forum/images/smi … nocent.gif

you  tongue

anyway, heres the new ver of apigen: http://www.mdn.fm/files/321239_2vhay/apigen.zip

*chrome chrashes*


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#183 2011-07-21 12:15:44

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

updated

Adding to first post also.

Last edited by sparks (2011-07-21 12:16:17)


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#184 2011-07-21 12:16:47

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

sparks wrote:

updated

Adding to first post also.

Thanks!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#185 2011-07-21 12:22:46

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

comp500 wrote:

sparks wrote:

updated

Adding to first post also.

Thanks!

Could you change it to "Create your custom link/image using this creator by comp500 or make it yourself using the uses list below."


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#186 2011-07-21 12:24:58

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

comp500 wrote:

comp500 wrote:

sparks wrote:

updated

Adding to first post also.

Thanks!

Could you change it to "Create your custom link/image using this creator by comp500 or make it yourself using the uses list below."

and here is the source code.


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#187 2011-07-21 12:26:33

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

http://www.blocks.scratchr.org/API.php?action=text&string=hopefully_this_has_spaces_not_underscores


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#188 2011-07-21 12:28:09

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#189 2011-07-21 12:30:23

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

This hasn't converted spaces at all!

Code:

$count = 1;
$string = $_GET['string'];
$parser = '';
while ($count < strlen($_GET['string'])){
    if(substr($string, $count, 1) == '_'){
        $parser = $parser . ' ';
    }
    else{
        $parser = $parser . (substr($string, $count, 1));
    }
    $count ++;
}

http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#190 2011-07-21 12:32:16

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

comp500 wrote:

comp500 wrote:

comp500 wrote:


Thanks!

Could you change it to "Create your custom link/image using this creator by comp500 or make it yourself using the uses list below."

and here is the source code.


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#191 2011-07-21 12:35:49

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

comp500 wrote:

comp500 wrote:

sparks wrote:

updated

Adding to first post also.

Thanks!

Could you change it to "Create your custom link/image using this creator by comp500 or make it yourself using the uses list below."


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#192 2011-07-21 12:36:27

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

fixed.


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#193 2011-07-21 12:39:16

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

comp500 wrote:

comp500 wrote:

comp500 wrote:


Could you change it to "Create your custom link/image using this creator by comp500 or make it yourself using the uses list below."

and here is the source code.

can you add it?


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#194 2011-07-21 12:41:30

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

^ home
Link/Image Generator v1.1 http://scratchloveit.netne.net/topicrate.php?id=841629&amp;ret=image&amp;type=post&amp;style=3
I've made a generator for use with this!  wink  Try it out here!
Source code can be downloaded here!

Developers
comp500
RUMCHEERYPOOPOO

Now Its A Collab!
Who Wants To Help?


Changes in version 1.1:
• Help added! click on the (?)s to see the help!
• Click on Click here to shorten url to shorten the link/image link with tinyurl.

How to use:
1. Select an API.
2. Type the username of the user you want to use in the user textbox.
3. Fill in all the details that you want to customise the link/image.
4. You can copy the code or click on "Click here to shorten url" and copy the tinyurl'd link and put in the code yourself.

Last edited by comp500 (2011-08-02 09:33:58)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#195 2011-07-21 12:43:19

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

It's in post#2 along with the source for the text renderer

Last edited by sparks (2011-07-21 12:44:14)


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#196 2011-07-21 12:44:20

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

sparks wrote:

It's in post#2 along with the source for the text renderer

Please don't reserve posts, You don't need to  smile

im reserving that post tho cos i need to use it


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#197 2011-07-21 12:44:49

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

Sorry  tongue  go for it!


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#198 2011-07-21 13:00:56

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

Alas, I have to go soon for a while  hmm  Back in a bit.


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#199 2011-07-21 13:35:38

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: ITopic: self-updating images and links in posts!

sparks wrote:

Alas, I have to go soon for a while  hmm  Back in a bit.

Ok. So do I.
Linktongue  and can u put that link on the main post?

Last edited by comp500 (2011-07-21 13:50:50)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#200 2011-07-21 15:43:42

woofwoof301
Scratcher
Registered: 2008-06-01
Posts: 100+

Re: ITopic: self-updating images and links in posts!

[reads text]

Mind.... BLOWN!

Offline

 

Board footer