User talk:YOSHIANDLINK1

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Welcome!

Hello, YOSHIANDLINK1, and welcome to Wikipedia! Thank you for your contributions. I hope you like the place and decide to stay. Here are some pages that you might find helpful:

I hope you enjoy editing here and being a Wikipedian! Please sign your name on talk pages using four tildes (~~~~); this will automatically produce your name and the date. If you need help, check out Wikipedia:Questions, ask me on my talk page, or ask your question and then place {{helpme}} after the question on your talk page. Again, welcome!  - A Link to the Past (talk) 01:42, 16 April 2007 (UTC)[reply]

Image captioning[edit]

I'll tell you, as well as tell you how to make the image bigger or smaller as well.

Type: [[(image)|###px|thumb|image]]; replace (image) with the image file, and ### with the number of pixels you want the image to be. - A Link to the Past (talk) 17:44, 16 April 2007 (UTC)[reply]

Reply to your question at the Help Desk[edit]

The only way that I know of is to check off the image namespace checkbox on the search page. --LuigiManiac 21:52, 16 April 2007 (UTC)[reply]

Reply to Status[edit]

Okay, lets see if I can remember where I got it from. If I remember correctly, it was User:Misza13/Status switcher that I got it from. *checks preview* No? *checks Misza13's user page* I was close, anyway. Check out User:Misza13/Scripts/Status switcher, and follow the instructions. One thing it doesn't tell you though is to replace the "example's status" section of the first script you add to your status template subpage with "YOSHIANDLINK1's status" . I think that should be it. As long as you don't make that same mistake as I did, you should be fine. --LuigiManiac 00:44, 18 April 2007 (UTC)[reply]

I would do this myself, but only you and admins can edit your monobook.js. I checked over everything else, and all you should need to do is put the following into your monobook.js.

// STATUS CHANGER addOnloadHook(function (){ var subpage = "/Status"; var scheme = "/StatusTemplate"; var subpagelink = wgServer + "/w/index.php?title=User:" + encodeURIComponent(wgUserName + subpage); var logout = document.getElementById( 'pt-logout' ); //Add the links addPortletLink("p-personal", subpagelink + "&action=edit&newstatus=in", "In", "pt-status-in", "I'm in!", "", logout); addPortletLink("p-personal", subpagelink + "&action=edit&newstatus=busy", "Busy", "pt-status-busy", "I'm busy!", "", logout); addPortletLink("p-personal", subpagelink + "&action=edit&newstatus=out", "Out", "pt-status-out", "I'm out!", "", logout); if (location.href.indexOf("&action=edit&newstatus=") == -1) return; //Are we here to auto-edit the status? //Get new status var statusRegExp = /&action=edit&newstatus=(.*)/; var status = statusRegExp.exec(location.href)[1]; //Modify the form document.getElementById('wpTextbox1').value = "User:"+wgUserName+scheme+""; document.getElementById('wpSummary').value = "Status: "+status; document.getElementById('wpMinoredit').checked = 'checked'; //Submit it! document.getElementById('editform').submit(); });

//

Click the edit button and copy this in, from the end of the first blockquote to the start of the second blockquote and it should work. --LuigiManiac 12:14, 18 April 2007 (UTC)[reply]