Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - MadSci

Pages: 1 2 3 [4] 5 6
46
Mods & Plugins (Requests & Discussions) / [MOD request] Picture compare
« on: November 04, 2006, 04:24:16 PM »
Hi guys,
is it possible to make a mod which compares pictures side-by-side ? for example:
I believe this would work like a lightbox but whitout storing the images in a database just in a temporary bin or something.
After the user leaves the pages this bin is emptied.
I kinda need this and I was hopping it will be usefull for the rest of the community as well.

thanx,
ms

47
Hey guys,
you know sometimes people upload images which are copywrited by someone and that someone figures that out and will request removal of the image ?
Can we have a button bellow each image like :request removal: which will lead to a form in which he will explain why the image should be removed and provide an email etc..etc..so when the image is removed and email is automatically sent back sayin bla blah appologies the image is removed...etc..etc.

you think thats a good idea ?

ms

48
Discussion & Troubleshooting / Zoom feature revisited
« on: July 01, 2006, 05:39:56 AM »
Hey guys,
may be someone already did this but anyway. A while ago I asked about how to implement zoom feature like http://www.zoomfactory.org..the idea came from this disscution http://www.4homepages.de/forum/index.php?topic=13485.0  as pointed out by mawenzi (thanx for that) so I played arround to make it a bit more simple to implement and easy to use:

1. go to:  http://valid.tjp.hu/zoom2/index_en.html copy and paste the  script and save it on your server like:
http://yourserver.com/zoom/zoom.js

2. open your header.html and find

</head>
paste above:
<script type="text/javascript" src="http://yourserver.com/zoom/zoom.js"></script>

3. Open your details.html

find: {image}
replace {image} with

[qcode]
 {if user_loggedout}{image} {endif user_loggedout}
{if user_loggedin}
<div style="float:left" onmouseover="zoom_on(event,{width},{height},'{media_src}');" onmousemove="zoom_move(event);" onmouseout="zoom_off();"><img src="{media_src}" alt="{image_name}" style="padding:0;margin:0;border:0" /></div>
<div style="clear:both;">
{endif user_loggedin}

[/qcode]

this feature will be visible only for the registered users if you want everyone to have a zoom effect just delete:
 {if user_loggedout},{image}, {endif user_loggedout}  ,{if user_loggedin} and {endif user_loggedin}


well thats it sory if its repetition.

ms

PS :
1. you can edit all the js options whitin the script itself..you dont have to alter the header.html
2. Tested with FF and IE works fine
3. and I think this guy deserves a big kudos for the script so dont forget to put a link to his site in your footer.html -->  http://valid.tjp.hu/zoom2/index_en.html

PSS:
You can also set the
var defzoomamount=1;
so when you roll the mouse over the image nothing will happen but pressing the left or right button will zoom in..

49
Mods & Plugins (Requests & Discussions) / Zoom Gallery like effect ?
« on: June 26, 2006, 03:53:22 PM »
Hey guys,
Will that be possible to implement zoom efect as a MOD like in the ZoomGallery?

here is a link:
http://www.zoomfactory.org

check the demo gallery..hover the mouse over an image to get the zoom effect (UP and Down arrows to zoom in and out)
ms

50
Mods & Plugins (Releases & Support) / Re: [MOD] 4images Quiz
« on: June 23, 2006, 10:31:52 PM »
How do we download or its not ready yet... 8O

ms

51
Mods & Plugins (Requests & Discussions) / Re: Joomla 4images bridge ?
« on: June 23, 2006, 02:59:17 PM »
I guess the problem is 2fold

1. if you have 4images installed and you want to add joomla then you have to use 4images usr database...
2. if you have Joomla installed and you add 4images then you need to use Joomla user database.

Even if someone comes with a bridge it will need a clean install..means that all of your users should re-register..which might be a pain.

One  solution:
Install Joomla with no user registration..then use the com component to include 4images where the people will need to register and can use the option remember me forever.

The cool thing is that SMF can be integrated easily with Joomla with (remember me forever option) so you can have 2 logins: one for Joomla/SMF and one for 4images. Tell the users to check the option remember forever...and problem solved.

I personaly think that all of the net softwares should have a standart..one DB usernames and passwords...so you can integrate back and forwards..

ms

52
Mods & Plugins (Releases & Support) / Re: [MOD] 4images Quiz
« on: June 23, 2006, 02:50:39 PM »
I guess I will give it a try and I will keep an eye for updates.
You may want to move that to the MODS and Plugins sections.

I have a pure selfish favor to ask:
is it easy to make: when you click on the thumb to make a pop-up window showing the full image with no link to 4images
can we use HTML tags to include links in the explanations ?

MS  :D

53
Mods & Plugins (Releases & Support) / Re: [MOD] 4images Quiz
« on: June 22, 2006, 04:29:09 AM »
How difficult will it be to:
1) load all the question in an array and the shuffle the array.
2) ask the user for number of questions to display
5) loop n times as per users choice..

now if you use xml for the questions you can assign an ID to any of the questins and then just use random numbers to display the approate question.
My background is not PHP unfortunatly but VB (no smiles kids... :lol:)

ok about the thumb here is what I do:

1 I read the question
2. I read the multiple choice answers..
3. I wonder which is correct
4. I click on the thimb and go the gallery to see the answer.
5. close the window and click the right choice.
6. I get 100 all the time wich makes the high score kinda useless..if you realy want to test the people.


I think this is going to become a big mod...thanx..great work.

54
Discussion & Troubleshooting / Re: Button help <Solved>
« on: April 15, 2006, 04:20:30 AM »
Awesome...works like a charm..
thanx gazilion times... :mrgreen:

Case closed...


55
Discussion & Troubleshooting / Re: Button help
« on: April 15, 2006, 03:59:21 AM »
are you sure that your program is not wraping it ?
..I checked the pod.html in Notepad and had no wraping at all...I uploaded it tested it it did not work so I downloaded it and reopen in Notepad and saw no wraping at all.
Can you look again..I put a long string which ends on EEEE just to check the lenght...

the buttons still dont show up..

ms

56
Discussion & Troubleshooting / Re: Button help
« on: April 15, 2006, 02:43:27 AM »
I fixed the wraping also expanded the table cell and still NO go...
I trued using IMG SCR= and just plain link still wont work...
ms

57
Discussion & Troubleshooting / Re: Button help
« on: April 15, 2006, 01:46:47 AM »
Hey V@no,
Sorry for the late reply i was quite busy now Im on vaccantion and have more time to do this..
here it goes:

this is the main page:
http://www.pathologyatlas.com/db
on the lefthand side you will see the main menu and a podcast button if you click that you will go here:
http://www.pathologyatlas.com/db/index.php?template=pod
this is basically the same template like home.html its just renamed to pod.html and I have removed the categories and images...etc..etc..
on this page you get just bellow the Stay Tuned:
1. just a plain image
2. --> here I have the following code:
{if is_loggedin}http://www.pathologyatlas.com/buttons/podcast.jpg{endif is_loggedin}
{if is_loggedout}http://www.pathologyatlas.com/buttons/podcast.jpg{endif is_loggedout}

now you should see 2 buttons..however you see only one which is the plain image...
The code shows no button at all and does not show as text as well. To me this means that the script tryes to execcute the code however cannot show the image for some reason.



58
Discussion & Troubleshooting / Re: Button help
« on: April 10, 2006, 04:15:09 AM »
boy Im still stuck..any other ideas.. :|

59
Discussion & Troubleshooting / Re: Button help
« on: April 07, 2006, 02:57:08 AM »
well I took the home.html file and renamed it to pod.html
then I deleted the contentent in the middle like {categories} etc..etc..and put my description of what podcasting is  blah blah..
Now I need to paste a button which basicaly points to the rss file however I want only the register users to use the rss so I can calculage the bandwidth usage..
The template pod.html I call from the front page home.htlm using index.php?template=pod
thnx
ms :mrgreen:

ps. BTW this is what I use:

{if is_loggedin} http://blablablab.com/buttons/image.jpg{endif is_loggedin}

60
Discussion & Troubleshooting / Re: Button help
« on: April 07, 2006, 02:28:42 AM »
Hey V@no,
Sorry to bring this up again but I spend few days trying to figure that out. Simply embeding the image in between the tags does nothing..actually nothing is displayed at all no matter logged in or not.
I believe Im missing a mod..or something.
Any idea ?
thnx
ms :mrgreen:

Pages: 1 2 3 [4] 5 6