Subscribe: Subscribe to BigBlueBallRSSSubscribe to BigBlueBall by emailEmailSubscribe to BigBlueBallTwitter


Go Back   BigBlueBall Forums > Instant Messaging > Other Instant Messengers > ICQ
Forgot Password? Register
Connect with Facebook

Reply
 
LinkBack Topic Tools
  #1 (permalink)  
Old 06-20-2003, 12:00 PM
Junior Member
 

Join Date: Jun 2003
Location: .
Posts: 2
Freaky_T is on a distinguished road (10)
Send a message via ICQ to Freaky_T Send a message via AIM to Freaky_T Send a message via MSN to Freaky_T Send a message via Yahoo to Freaky_T
ICQ Lite: Is it possible to remove ads?

Is it possible to remove ads in the latest build of ICQ Lite? I've tried deleting and modifing the banner XML files, but the program simply replaces them. Does anyone know what to do?
Reply With Quote
 

 
  #2 (permalink)  
Old 06-20-2003, 08:25 PM
Brian's Avatar
Senior Member
 

Join Date: Mar 2003
Posts: 981
Brian is on a distinguished road (10)
I don't think this is possible. I know of a site ( http://www.ICQPlus.org ) but that only will work on ICQ 9x and 2x/Pro. AOL plans to work on the next ICQ build that would work like the latest ICQ Lite.
Reply With Quote
  #3 (permalink)  
Old 06-20-2003, 09:07 PM
Junior Member
 

Join Date: Jun 2003
Location: .
Posts: 2
Freaky_T is on a distinguished road (10)
Send a message via ICQ to Freaky_T Send a message via AIM to Freaky_T Send a message via MSN to Freaky_T Send a message via Yahoo to Freaky_T
I modified files and registry keys in an attempt to remove the ads. Interestingly, not only did the ads remain, but the registry keys were reset and the files I modified reverted to their original state. Quite strange...
Reply With Quote
  #4 (permalink)  
Old 06-22-2003, 04:53 PM
Junior Member
 

Join Date: Mar 2003
Location: .
Posts: 13
koma is on a distinguished road (10)
Send a message via ICQ to koma
Full anti-banner crack for ICQLite Alpha build #1211

description: removes all banners for that build including the google search thingy

download: http://www.allicq.com/index.php?op=getfile&id=35

enjoy...
Reply With Quote
  #5 (permalink)  
Old 07-07-2003, 12:43 PM
Junior Member
 

Join Date: Jul 2003
Location: .
Posts: 1
branque is on a distinguished road (10)
Send a message via ICQ to branque Send a message via MSN to branque
Hi everyone. I have solved the banner problem with icq lite by installing a personal firewall, zonealarm in this case and block ICQLite.exe from connecting to internet through port 80. That solved the banner problem and I have no problems connecting or talking to friends. I have a adsl modem but this might not work thourgh proxy.

// Patrick, Sweg, Sweden.
Reply With Quote
  #6 (permalink)  
Old 07-11-2003, 04:08 PM
Zargeus's Avatar
Member
 

Join Date: Jul 2003
Location: Brighton, Illinois, USA.
Posts: 55
Zargeus is on a distinguished road (10)
To remove the Ad's in 1253 goto your LiteDataFiles directory. Delete the files Banners.xml clbanner.xml and psearch.xml.

Next put a folder for each you deleted. Yes put .xml just as if it was a file. This will prevent ICQ from auto updating the file.

This will replace the WinAmp ad with an ICQ lite logo, and remove banner ad's from you message.

If you would like to make the ICQ lite logo blank. Also delete climage.html and create the folder climage.html in that place. This leaves and ugly white box though so I prefer just leaving the logo :-)

Hope this helps someone out there.

Jeremy
Reply With Quote
  #7 (permalink)  
Old 07-15-2003, 05:14 PM
Junior Member
 

Join Date: Jul 2003
Location: Knaresborough, United Kingdom.
Posts: 1
lejt is on a distinguished road (10)
Just wanted to say thank you very much to Jeremy for posting those instructions. It worked perfectly on my machine!

Now to get rid of the pop up when you load up ICQ....

Cheers,

Lois
Reply With Quote
  #8 (permalink)  
Old 07-21-2003, 08:00 PM
Junior Member
 

Join Date: Jul 2003
Location: Australia.
Posts: 1
grafikdezine is on a distinguished road (10)
Nice one Jeremy, excellent!!

Just a quick note - you can change the climage.gif to be whatever takes your fancy. I changed mine to be my company logo

joolz
Reply With Quote
  #9 (permalink)  
Old 07-23-2003, 08:05 PM
Junior Member
 

Join Date: Jul 2003
Location: .
Posts: 3
Thundar is on a distinguished road (10)
Jeremy's post worked fine for me also, the only thing the new box where the logo is like 2x as big as last ver of icqlite (running icqlite 1253 now) and so is the defualt lcq logo, I tried to make my own logo smaller but icq just streatched it to fit the box, is there a way to change the size back to small logo like last ver?

Thanks
Reply With Quote
  #10 (permalink)  
Old 07-24-2003, 05:44 AM
Junior Member
 

Join Date: Jul 2003
Location: .
Posts: 1
pabulum is on a distinguished road (10)
Thanks Jeremy. I was very sad to see such a big advertisment area. Also thanks joolz to inspire me about the use of that area. Now I change that box to a small slide show just like a photo gallery.

1. Replace the original climage.html by the following HTML:

<HTML>
<HEAD>
<SCRIPT>
// how long an image is shown, any transition time for IE is added
var delay = 6000;
// IE transition duration, specify as floating point in seconds
var transDuration = 2.0;
var transType = 23; // random change as needed
var images = new Array();
preloadImages( // use your images here
'image1.gif',
'image2.jpg',
'image3.jpg'
);
/* or do a loop for indexed images
for (var i = 0; i < 7; i++)
preloadImages ('img' + (i + 1) + '.gif');
*/
var cnt = 0;
function preloadImages() {
for (var i = 0; i < arguments.length; i++) {
images[images.length] = new Image();
images[images.length - 1].src = arguments[i];
}
}
var imgTag = '';
imgTag += '<IMG NAME="theImage" ';
imgTag += document.all ?
' STYLE="filter: revealTrans(duration='
+ transDuration + ',transition=' + transType + ');" ' :
'';
imgTag += ' SRC="' + images[0].src + '"';
imgTag += '>';
function nextImage () {
cnt = ++cnt % images.length;
var img = document.theImage;
if (img.filters && transType == 23) // get random type
img.filters.revealTrans.transition =
Math.floor(Math.random() * 23);
if (img.filters)
img.filters.revealTrans.apply();
img.src = images[cnt].src;
if (img.filters)
img.filters.revealTrans.play();
setTimeout('nextImage()',
delay + (img.filters ? Math.round(transDuration * 1000) : 0));
}
</SCRIPT>
</HEAD>
<BODY border="0" topmargin="0" leftmargin="0" scroll="no" ONLOAD="setTimeout('nextImage()', delay)">
<TABLE WIDTH="100%" BORDER="0">
<TR>
<SCRIPT>
document.write(imgTag);
</SCRIPT>
</TR>
</TABLE>
</BODY>
</HTML>

2. save the file and change the attribute to "read-only", "hidden" and "Archieve". It is necessary otherwise the html file will be restored by the original one when you start ICQLite.

I tried jpg file also and it works. remember to cut all images to right side that is 120x90 pixels. Have fun!

Polly - Hong Kong
Reply With Quote
Reply


Currently Active Users Viewing This Topic: 1 (0 members and 1 guests)
 
Topic Tools


Similar Topics
Topic Topic Starter Forum Replies Last Post
ICQ 5 Reviewed Jeff General / Other IM News 0 03-24-2005 01:21 PM
ICQ upgrades IM service with new voice features Jeff General / Other IM News 0 03-21-2005 10:09 AM
Comverse Partners with AOL Mobile for ICQ Access Jeff General / Other IM News 0 03-18-2005 09:13 PM
ICQ 5 Released Jeff General / Other IM News 0 02-09-2005 12:36 PM
ICQ Lite 1253 solution to remove ads completely Pilkis ICQ 17 01-27-2004 05:42 PM

 

All times are GMT -5. The time now is 10:09 PM.