FM Design
Would you like to react to this message? Create an account in a few clicks or log in to continue.

IMPORTANT

FM Design is in read-only mode, please click here for more information.

Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49

» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21

» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28

» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15

» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11

» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24

» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58

» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50

» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22

» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12

» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10

» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51

» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11

» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19

» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34

Recent Tutorials
Top posting users this month

Who is online?
In total there are 25 users online :: 0 Registered, 0 Hidden and 25 Guests :: 1 Bot

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

Widget : Notepad

View previous topic View next topic Go down

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 17 Feb 2016, 10:16

With this widget you'll be able to jot down personal notes directly on your forumotion forum, so you can remind yourself about something later on. Wink

Widget : Notepad Captur10

Click to view demo

The notes are stored in your browser locally using the Storage API or Cookies. Before you install this widget here are some important things to note about this module :

  1. The notes are stored locally using the Storage API. If the Storage API is not supported the notes will be saved to a cookie.
  2. The amount of text that can be stored varies from browser to browser, but as long as your browser is up to date it should be able to save a lot of text.
  3. Your notes will disappear if you clear your browser cache / cookies or use another browser.
  4. Notes are stored individually between accounts, so you will have different notes saved if you log into another account.
  5. Notes are automatically saved as you type.

If you want to install this widget please continue. Smile


Installation


To install this widget go to Admin Panel > Modules > Forum widgets management and create a new widget

Widget name and Title : Notepad
Use a table type : Yes
Widget source :
Code:
<style type="text/css">
#fa_notepad {
  color:#333;
  background:#FFF;
  border:1px dotted #CCC;
  font-size:13px;
  font-family:Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  width:150px !important;
  height:150px !important;
  resize:none;
  overflow:hidden;
  overflow-y:auto;
  outline:none;
  display:block;
  padding:3px;
  margin:0 auto !important;
}
</style>
<textarea id="fa_notepad"></textarea>
<script type="text/javascript">//<![CDATA[
(function() {
  var notepad = document.getElementById('fa_notepad');
  if (notepad) {
    var key = 'fa_notepad_u' + _userdata.user_id,
        storage = window.localStorage,
        handler = function() {
          var key = 'fa_notepad_u' + _userdata.user_id,
              val = this.value,
              storage = window.localStorage;
         
          storage ? storage[key] = val : my_setcookie(key, val);
        };
   
    notepad.value = (storage ? storage[key] : my_getcookie(key)) || _userdata.username + '\'s personal notes...';
    notepad.oninput ? notepad.oninput = handler : notepad.onkeyup = handler;
  }
}());
// par ange tuteur
//]]></script>

Once you're finished click the save button and then drag and drop the widget into the column you want. After that you should be able to write yourself as many reminders or notes as you like ! cheers

Modifications


If you want to make some modifications to the colors of the notepad you can change them by modifying the CSS at the top of the widget :
Code:
<style type="text/css">
#fa_notepad {
  color:#333;
  background:#FFF;
  border:1px dotted #CCC;
  font-size:13px;
  font-family:Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  width:150px !important;
  height:150px !important;
  resize:none;
  overflow:hidden;
  overflow-y:auto;
  outline:none;
  display:block;
  padding:3px;
  margin:0 auto !important;
}
</style>

Note that the colors are at the very top :
Code:
  color:#333; /* FONT COLOR */
  background:#FFF; /* BACKGROUND COLOR */
  border:1px dotted #CCC; /* BORDER COLOR */
Change these values to suit your forum.


If you have any problems or questions feel free to leave a response below. Other than that, enjoy ! Very Happy


Notice
Tutorial written by Ange Tuteur.
Reproduction not permitted without consent from the author.


Last edited by Ange Tuteur on Wed 20 Apr 2016, 12:26; edited 3 times in total
Van-Helsing
Van-Helsing

Gender : Male
Age : 49
Posts : 853
Points : 4803
Reputation : 84
Location : Somewhere out there!
Language : English, Greek
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : punBB
http://itexperts.forumgreek.com/

PostVan-Helsing Wed 17 Feb 2016, 11:41

Very nice and very beautiful @Ange Tuteur. cheers
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 17 Feb 2016, 12:33

Dark-Avenger wrote:Very nice and very beautiful @Ange Tuteur. cheers
Thanks ! Thumb right
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3962
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Wed 17 Feb 2016, 13:09

great share ange !
you always comes up with new idea's

thanks !
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 17 Feb 2016, 13:38

mist3r0us_b0y wrote:great share ange !
you always comes up with new idea's

thanks !
No problem, but you have Andrei34 to thank for the idea, I only animated it. Wink
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3962
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Wed 17 Feb 2016, 13:51

Ange Tuteur wrote:
mist3r0us_b0y wrote:great share ange !
you always comes up with new idea's

thanks !
No problem, but you have Andrei34 to thank for the idea, I only animated it. Wink
ohh ya ... @Andrei34 thanks ....


anyway i have issue with database ( can u please redirect me where do i get help cause its locked i cnt reply to it Smile
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 17 Feb 2016, 14:00

mist3r0us_b0y wrote:anyway i have issue with database ( can u please redirect me where do i get help cause its locked i cnt reply to it Smile
I discontinued the database project, I'd recommend not using it because it's no longer supported.
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3962
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Wed 17 Feb 2016, 14:01

ohh no i was in need of a shoutbox ...

ok thanks for answring
Wolfuryo
Wolfuryo

Gender : Male
Posts : 256
Points : 3567
Reputation : 81
Language : Romanian and English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

PostWolfuryo Fri 19 Feb 2016, 09:19

Thanks Ange. It is working great on my forum.
Anonymous
Guest
Guest

PostGuest Fri 02 Dec 2016, 14:32

This looks interesting. If it had (a) button(s) like CLEAR (, COPY & PASTE), I'm willing to give it a try.
Michael_vx
Michael_vx

Gender : Male
Age : 32
Posts : 302
Points : 4066
Reputation : 76
Language : Arabic
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other
http://miccsoft.net https://www.facebook.com/Michaelvx2008

PostMichael_vx Sun 02 Jul 2017, 00:04

so this note will be different to each visitor
right ?
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12013
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Mon 03 Jul 2017, 11:25

Hi @Michael_vx,

Yes, the data is stored in your browser, so only you will be able to see your notes.
Sponsored content

PostSponsored content

View previous topic View next topic Back to top

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in

 
Permissions in this forum:
You cannot reply to topics in this forum