Yes, please: students can create their own courserelated Flashcards in a glossary!
I saw jMemorize.org and wished to have that as a student activity in Moodle. It is based on the Leitner principle:
A flashcard or flash card is a piece of paper that is used in schools as a learning aid (mainly in English-speaking countries). Flashcards can bear vocabulary, historical dates, formulas, etc. The purpose of using flashcards is memorization. You write a question on each card (and an answer overleaf), test yourself on them, and sort them into groups as you learn, according to your performance.
Re: Flashcard module add-on: Glossary Flashcard Module
For an activity module, where do I put the language file? It seems that the only place I can put it is in the root lang folder, but this seems wrong. Is there a way to put it in /mod/modulename/lang?
Re: Flashcard module add-on: Glossary Flashcard Module
To install you should just unzip the file into your mod directory and copy the language file to your language directory.
I'll try to help with questions and installation problems as fast as I am able.
Jacob
The 'No entries found' error looks to be caused by the table mdl_glossaryflashcard (or substitute your prefix if different).
I was having the same issue, and added the following field:
mode varchar(10) NOT NULL default 'normal'
Also, in /glossaryflashcard/view.php, I changed $cm->instance to $cm->id on line 233.
I've attached a screenshot of an issue that I'd like to figure out - when the definition is too long, it overflows. I'd like to have it resize the text or the box.
Thanks,
Matt
I truly appreciate your work. I had the reeived the following message after attempting installation:
Notice: Undefined variable: category in /home/newvisi/public_html/moodle/mod/glossaryflashcard/view.php on line 118
SELECT score, count(*) boxcount FROM mdl_glossaryflashcard_cardbox_entries lt WHERE lt.userid = 2 AND lt.mode = 'normal' GROUP BY lt.score ORDER BY lt.score ASC
Warning: Invalid argument supplied for foreach() in /home/newvisi/public_html/moodle/mod/glossaryflashcard/view.php on line 142
SELECT lt.entryid FROM mdl_glossaryflashcard_cardbox_entries lt WHERE lt.userid = 2 AND lt.mode = 'normal' ORDER BY lt.timemodified DESC LIMIT 0
Warning: Invalid argument supplied for foreach() in /home/newvisi/public_html/moodle/mod/glossaryflashcard/view.php on line 153
Notice: Undefined variable: category in /home/newvisi/public_html/moodle/mod/glossaryflashcard/view.php on line 178
SELECT e.* FROM mdl_glossary_entries e LEFT JOIN mdl_glossaryflashcard_cardbox_entries c ON c.entryid = e.id AND c.userid = 2 AND c.mode = 'normal' WHERE (e.glossaryid = 1 or sourceglossaryid = 1) AND e.id NOT IN (0) ORDER BY c.score ASC, rand(), c.timemodified ASC
Re: Flashcard module add-on: Glossary Flashcard Module
As far as the size of text in the display of the term description, I am open to suggestions. In my use, I am doing simple Greek/English vocabulary for a language course, so the current size is always fine. The display of the card is controlled by the stylesheet and can be modified for different types of terms/descriptions.
If necessary we could define styles with different text sizes for different lengths of descriptions and assign appropriate classes to the description div depending on the number of characters. If that sounds like a good solution I can implement it.
Re: Flashcard module add-on: Glossary Flashcard Module
I suspect I'm not putting the files in the right place. I seem to have several folders called "moodle" and "lang".
I put the glossary flashcard folder here:
/Applications/MAMP/htdocs/moodle17/moodle/mod/glossaryflashcard
Is that right?
As for the files in the lang folder of the glossaryflashcard folder, where should those go?
/Applications/MAMP/htdocs/moodle17/moodle/lang
or
/Applications/MAMP/htdocs/moodle17/lang
?
Thanks!
When you have a version I can test, I am very interested in it. I made with students a lot ofquestions in filemaker.
If there is a possibility to print cards. Question Answer side by side that would be very nice because Students like to work with cards not only online.
For me it is a kind of knowledge base.
Thanks very much.
There is no option to print cards. That might be something easier to do from another program after exporting your glossary to XML.
Not sure about Filemaker either. This module is designed specifically to quiz students on vocabulary from a glossary in Moodle. Although it shouldn't be hard to make an XML file for import if you have your data in Filemaker.
On A4 paper, four or six cards.
---------------------------------------------------------------------------
category____________ ¦
left the Question...... ¦ on the right side the answer
.............................¦
----------------------------------------------------------------------------
They can cut and use it for learning in the train.
Re: Flashcard module add-on: Glossary Flashcard Module
Re: Flashcard module add-on: Glossary Flashcard Module
Re: Flashcard module add-on: Glossary Flashcard Module
Hi Jacob,
I an really very sorry for the delay in getting back to you on this - I hope you are still there!
The display problem occurs on IE (7) - firefox (2) is fine. Im running my 1.8.1 site on Win Xp SP2.
Also, can you advise what parm to change to reduce font size for the flashcard 'definition" - some of mine can go to 20+ words and bleed into the "I knew it/missed it" area on the form.
thanks, and again I am very sorry for the delay in getting back to you !
Martin
Re: Flashcard module add-on: Glossary Flashcard Module
#flashcard #flashcardAnswer {
padding: 0;
width: 100%;
height: 40ex;
background: #000;
display: none;
margin: 0;
}
#flashcard #flashcardAnswer p {
padding-top: 2ex;
font-size: 350%;
color: #FFF;
margin: 0
}
Re: Flashcard module add-on: Glossary Flashcard Module
Hi Jacob,
thanks for your info and Ive updated my font size
Also my display problem with IE 1.7 goes away when I reduced 'width' in the 'flashcard .flashcardAction block' from 50% to 49%.
You'll have guessed Im not a php coder, but while its not too elegant, it appears to work for IE and firefox.
#flashcard .flashcardAction {
width: 49%;
height: 10ex;
float: left;
font-size: 200%;
border: none;
}
Martin
PS - fantastic activity - thank you!
Re: Flashcard module add-on: Glossary Flashcard Module
might have missed. I am getting this text for the activity name modulenameplural . I placed the language files in the root/lang folder but it still doesn't reflect the correct activity name. I don't know where else to place the files. Is there another lang folder somewhere else or something else I have to do.