SpellingCow.com Forum Index SpellingCow.com
Improving forum spelling since... well not very long
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister   ProfileProfile   Log in to check your PM'sLog in to check your PM's   Log inLog in 
Forums | Home

spelling cow on quick reply mod
Goto page 1, 2  Next
 
Post new topic   Reply to topic    SpellingCow.com Forum Index -> Suggestions
View previous topic :: View next topic  
Author Message
angst911



Joined: 20 Jul 2004
Posts: 11

PostPosted: Tue Jul 20, 2004 7:55 pm    Post subject: spelling cow on quick reply mod Reply with quote

Any way to make spelling cow activate for the quick reply mod for phpbb?
Back to top
View user's profile Send private message
nuttzy99
Site Admin


Joined: 23 May 2004
Posts: 1068

PostPosted: Tue Jul 20, 2004 7:56 pm    Post subject: Reply with quote

Good idea. Send me a link to the one you are using and I'll tell you what to do Wink

-Nuttzy Cool
_________________
<?php echo "something wicked awesome for my sig"; ?>
Back to top
View user's profile Send private message
fuelslut_spellingcow



Joined: 20 Jul 2004
Posts: 1

PostPosted: Tue Jul 20, 2004 8:04 pm    Post subject: Reply with quote

http://www.phpbb.com/phpBB/viewtopic.php?t=149936&highlight=
Back to top
View user's profile Send private message
angst911



Joined: 20 Jul 2004
Posts: 11

PostPosted: Tue Jul 20, 2004 8:39 pm    Post subject: Reply with quote

^^^^^

that was me.
Back to top
View user's profile Send private message
angst911



Joined: 20 Jul 2004
Posts: 11

PostPosted: Sun Jul 25, 2004 7:02 pm    Post subject: Reply with quote

anything?
Back to top
View user's profile Send private message
nuttzy99
Site Admin


Joined: 23 May 2004
Posts: 1068

PostPosted: Mon Jul 26, 2004 10:36 am    Post subject: Reply with quote

Sorry, I've been working on EasyMOD. Will be resuming work on Spelling Cow this week. I'll see what I can do Wink

-Nuttzy Cool
_________________
<?php echo "something wicked awesome for my sig"; ?>
Back to top
View user's profile Send private message
angst911



Joined: 20 Jul 2004
Posts: 11

PostPosted: Mon Jul 26, 2004 11:03 am    Post subject: Reply with quote

oh, what sort of progress on easymod are we actually seeing? Possible beta status?
Back to top
View user's profile Send private message
nuttzy99
Site Admin


Joined: 23 May 2004
Posts: 1068

PostPosted: Mon Jul 26, 2004 1:21 pm    Post subject: Reply with quote

You'll see Wink

/me grins evilly Twisted Evil

-Nuttzy Cool
_________________
<?php echo "something wicked awesome for my sig"; ?>
Back to top
View user's profile Send private message
angst911



Joined: 20 Jul 2004
Posts: 11

PostPosted: Fri Aug 06, 2004 5:46 pm    Post subject: Reply with quote

Question Question Question Question
Back to top
View user's profile Send private message
nuttzy99
Site Admin


Joined: 23 May 2004
Posts: 1068

PostPosted: Fri Aug 06, 2004 10:24 pm    Post subject: Reply with quote

Sorry, time has been at a premium lately. I should be able to do it this weekend. The more you remind me, the more likely I am to do it, so don't give up Razz

-Nuttzy Cool
_________________
<?php echo "something wicked awesome for my sig"; ?>
Back to top
View user's profile Send private message
odie3



Joined: 27 Aug 2004
Posts: 25

PostPosted: Fri Aug 27, 2004 4:08 pm    Post subject: Reply with quote

I am using Advanced Quick Reply Mod by RustyDragon <dev@RustyDragon.com> from http://www.phpbbhacks.com.

I truly would like this for the SpellingCow!

Thanks Odie3
Back to top
View user's profile Send private message
nuttzy99
Site Admin


Joined: 23 May 2004
Posts: 1068

PostPosted: Sat Aug 28, 2004 11:39 am    Post subject: Reply with quote

Heh, just letting you folks know that I've not forgotten about this. I just have to do a couple things that are really important before I can spend time on this.

-Nuttzy Cool
_________________
<?php echo "something wicked awesome for my sig"; ?>
Back to top
View user's profile Send private message
odie3



Joined: 27 Aug 2004
Posts: 25

PostPosted: Sat Aug 28, 2004 12:04 pm    Post subject: Reply with quote

Thanks for the update! I'll be ready when you have something to try out.
Back to top
View user's profile Send private message
Woody



Joined: 29 Aug 2004
Posts: 20
Location: England

PostPosted: Sun Aug 29, 2004 7:40 pm    Post subject: Reply with quote

HI, I know I'm new, so I hope ya don't mind me butting in, but I have just installed Spelling Cow and adapted it for use on my quick reply......

Here is how I did it:

Code:

####
#
# Adding Spelling Cow to Advanced Quick Reply Mod by RustyDragon
#
# Woody <woody@scoobler.com>
#
####


#
#-----[ OPEN ]---------------------------------
#

templates/subSilver/quick_reply.php


#
#-----[ FIND ]---------------------------------
#

function checkForm() {
   formErrors = false;   


#
#-----[ BEFORE, ADD ]---------------------------------
#

// SPELLINGCOW - begin
function auto_check_spelling()
{
   // if we are auto checking, set value to 2 so the submit from checkForm will fail; open the checker window
   if (document.post.auto_spell_check.value == 1)
   {
      document.post.auto_spell_check.value = 2 ;
      window.open('spell-gw.php?mode=load&form=post&auto=check&source=message&button=post&type=phpBB', '_spellcheck', 'HEIGHT=484,resizable=yes,scrollbars=yes,WIDTH=595');
   }
}
// SPELLINGCOW - end


#
#-----[ AFTER, ADD ]---------------------------------
#

// SPELLINGCOW - begin
   // if we set value to 2, then that means we are auto spell checking, so fail
   if (document.post.auto_spell_check.value == 2)
   {
      // reset our value
      document.post.auto_spell_check.value = 1 ;
      return false;
   }
// SPELLINGCOW - end

#
#-----[ FIND ]---------------------------------
#

 <input type='button' name='quoteselected' class='liteoption' value='{L_QUOTE_SELECTED}' onclick='javascript:quoteSelection()'></td>
 
#
#-----[ REPLACE WITH ]---------------------------------
#
#

 <input type='button' name='quoteselected' class='liteoption' value='{L_QUOTE_SELECTED}' onclick='javascript:quoteSelection()'>
 <!-- SPELL CHECKER -->
            <input type="hidden" name="auto_spell_check" value="{AUTO_SPELL}">
            <input type="button" name="spellcheck" class="liteoption" value="Spell Check"
               onClick="window.open('spell-gw.php?mode=load&form=post&source=message&button=post&type=phpBB', '_spellcheck', 'HEIGHT=484,resizable=yes,scrollbars=yes,WIDTH=595');"><br>

            <style type="text/css"><!-- .spellcow, a.spellcow { font-size : 8px; color : #FFFFFF; } --></style>
            <!-- Removal of the following line may result in suspension of the service by SpellingCow.  Come on, linking back to us is not asking much but means a lot to us.  Thanks! ;-) -->
            <span class="spellcow">by <a href="http://www.spellingcow.com" target="_blank" class="spellcow">SpellingCow.com</a><a href="spell-gw.php" target="_blank" class="spellcow"></a><br>
 <!-- SPELL CHECKER --></td>

#
#-----[ FIND ]---------------------------------
#
#

<input type='submit' name='post' class='mainoption' value='{L_SUBMIT}' >


#
#-----[ IN-LINE FIND ]---------------------------------
#

value="{L_SUBMIT}"


#
#-----[ IN-LINE AFTER, ADD ]---------------------------------
#
 onclick="javascript:auto_check_spelling()"

#
#-----[ SAVE/CLOSE ALL FILES ]---------------------------------
#
Back to top
View user's profile Send private message
odie3



Joined: 27 Aug 2004
Posts: 25

PostPosted: Mon Aug 30, 2004 12:06 am    Post subject: Reply with quote

Works Great. However, one small issue with your code to find.

This:
Code:
#-----[ IN-LINE FIND ]---------------------------------
#

value="{L_SUBMIT}"


#


Should Be This
Code:
#-----[ IN-LINE FIND ]---------------------------------
#


value='{L_SUBMIT}'


#


Unless I made a change to this file that I do not recall. In anycase, it works great!!! Thank you Woody!!!
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    SpellingCow.com Forum Index -> Suggestions All times are GMT - 5 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2002 phpBB Group :: Spelling by SpellingCow.

SpellingCow.com Privacy Policy | blueGray theme by Nuttzy

Sponsors:
Identity Theft Protection - Compare identity theft protection services
Structured Settlements - cash for structured settlements, sell annuity, lottery winnings, and more.
Barcode Scanner Manufacturer - taiwan manufacturer of scanners, swipe card reader, serial-ethernet converter, cash drawer, and other pos devices.
Advice, help & demonstrations for sign makers - Europe's leading sign makers website
Tattoo - we are a group of tattoo enthusiasts