I'm working on something that has a set of images as different form submission buttons, and I have a floating text overlib to display the name of the button....
1434
Foteos Macrides
oldgreeky
Feb 21, 2010 9:56 pm
Import the overlibmws_filter.js plug-in module and include: FILTER, FADEIN,0, FADEOUT,0, FILTEROPACITY,# in your overlib call, where # is a number between 0...
1435
aighost_t3
Feb 22, 2010 4:00 am
Should have made this from the start :P http://www.undeadly.ca/index.php?p=overlib Basically I want to combine the left and right effects to work at the same...
1436
Foteos Macrides
oldgreeky
Feb 22, 2010 6:51 am
You can concatenate the overlib / nd calls and the opacity commands, separated by semi-colons, for the onmouseover / onmouseout events, but don't put the...
1437
aighost_t3
Feb 22, 2010 10:21 am
It works great now :) thank you very much. Can I ask why the return needed to be removed, or why it is there in the first place?...
1438
Foteos Macrides
oldgreeky
Feb 22, 2010 12:34 pm
The STATUS, AUTOSTATUS, and AUTOSTATUSCAP commands for setting strings to be displayed in the status bar depend on values returned by the overlib function....
1439
Ghost
aighost_t3
Aug 9, 2010 6:21 am
Tiny problem i've been having with iframes in the popups, is that there is a small space at the bottom of the popup below the iframe. I've used "textpadding,...
1440
Ghost
aighost_t3
Aug 9, 2010 6:36 am
Also it's currently set to refresh the page when the popup is closed, but if it's possible I'd like to have that only happen after the user is logged in (if...
1441
Foteos Macrides
oldgreeky
Aug 9, 2010 4:14 pm
You are including TEXTFONTCLASS, 'blank39; (and CAPTIONFONTCLASS, 'blank39;) commands in the overlib call, but I see nothing which provides access to CSS with a...
1442
Ghost
aighost_t3
Aug 10, 2010 5:01 am
I guess I should keep track of when the version is updated :) Anyways, I did that and made a proper class for it, the 'blank39; class was from a different...
1443
Foteos Macrides
oldgreeky
Aug 10, 2010 2:27 pm
In your overlib call with iframe content, get rid of the WRAP command and use only the WIDTH command (as you presently have that command with its parameter...
1445
Foteos Macrides
oldgreeky
Aug 11, 2010 4:33 pm
Try this. In the parent document use this script block: <script type="text/javascript"> var cClickOld=cClick,refreshFlag=false; function cClickNew(){ var...
1446
Foteos Macrides
oldgreeky
Aug 12, 2010 4:30 am
I modified overlibmws_modal.js and updated the overlibmws.zip distribution at: http://www.macridesweb.com/oltest/ to support a MODALCLICK command for primary...
1448
carloshhp777
Aug 13, 2010 3:53 pm
hi im using overlibmws with seondary pop-ups, it has worked great for all i've wanted to do, but now i need to make a third pop-up to come out from the...
1449
Foteos Macrides
oldgreeky
Aug 13, 2010 10:40 pm
If you need ability to display more than two popups simultaneously then take a look at cooltip: http://www.acooltip.com/ It is based on the Bosrup version of...
1450
philcrosoft
Oct 12, 2010 7:09 pm
Hallo! I cant solve one problem, so i have to links with overlibmws functions, so when i hover it has alt text and when i click it havs pop up window with...
1451
Foteos Macrides
oldgreeky
Oct 12, 2010 8:47 pm
Philip, What you are referring to as "alt text" in your markup is actually a non-STICKY onmouseover popup which emulates a system tooltip. For what you want...
1452
philcrosoft
Oct 13, 2010 5:05 pm
Thank you very much for solving this task! Best regards, Philip...
1453
philcrosoft
Oct 15, 2010 7:32 pm
Could you help with othe stuff? So i have the image inside of the pop up! I couldt find on the website how to make border color and thickness. something like...
1454
Foteos Macrides
oldgreeky
Oct 15, 2010 10:15 pm
Philip, That information is in the Command Reference: http://www.macridesweb.com/oltest/commandRef.html The command for border thickness is BORDER but it's...
The overlibmws library as distributed does not have ALIASDIVID or AUTOCLOSEPOP commands, so you appear to be using a version you modified, or someone else's...
1458
philcrosoft
Oct 26, 2010 5:28 pm
So my overlib looks like this: onclick="overlib(92;'Here is users Name\', CAPTIONFONTCLASS,\'olcap\', ... so instead of "Here is users Name" I need echo function...
1459
Ben Johansen
beninpurple
Oct 26, 2010 6:36 pm
if your using php, it would be onclick="overlib(92;'<?php echo $info['user_name']; ?>\39;, CAPTIONFONTCLASS,\'olcap\', ... ... Ben Johansen http://www.webspinr.com...
1460
philcrosoft
Oct 26, 2010 7:09 pm
... well i do so: <a href="#" onmouseover="var ovlb=(OLshowingsticky)?overlib2:overlib; return ovlb(\39;<?php echo $info['user_name']; ?>\39;, BGCOLOR,\'red92;',...
1461
Ben Johansen
beninpurple
Oct 26, 2010 7:18 pm
hey, I need more info to answer this. like more code around this ... Ben Johansen http://www.webspinr.com benj@... Phone: 360-597-3372 Mobile:...
1462
philcrosoft
Oct 26, 2010 7:25 pm
<?php // Connects to your Database mysql_connect("localhost", "root", "") or die(mysql_error()) ; mysql_select_db("users") or die(mysql_error()) ; //Retrieves...
1463
Foteos Macrides
oldgreeky
Oct 27, 2010 8:23 am
Philip, What you posted is missing the echo statement, and appears to have an extraneous </span>. Look at how the overlib first argument is constructed for a...
1464
philcrosoft
Oct 27, 2010 5:37 pm
Well I've read it all, but I don't exactly how to combine my php with overlib ((( ... So I need help ... this is my full php code: <html> <head> <meta...
1465
Ben Johansen
beninpurple
Oct 27, 2010 9:33 pm
ok, have you looked here for help http://us.php.net/manual/en/function.mysql-fetch-array.php notice how they used ASSOC flag while ($row =...