Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: NateBro
  • Content: Threads
  • Order by date
  1. NateBro

    need help with: Detected uninstalled Perl.

    I've been out of the game for awhile now, and just started playing with PERL again... I installed strawberry PERL, but later installed the xampp web sever. I then uninstalled strawberry PERL, after making a copy for the xampp web sever. so now all my PERL scripts run from the strawberry PERL...
  2. NateBro

    Install libGD

    I'm haveing a lot of truble remembering how to install the GD lib on my computer, i installed it on my lap top a year ago, but have no idea how i did it. any help would be great! thanks!
  3. NateBro

    Use RGB color with Tk

    I have a canvas with squares, but i need to use RGB colors, but i'm not sure exactly how, i looked at google, but didn't find anything with the standerd distribution of PERL. thanks for your time! ~Nate_Bro
  4. NateBro

    Can PERL play a sound?

    I was looking at the audio Mod's on cpan.org and google, but didn't see anything about PERL playing a sound. is there a way to input a frecuency into PERL and output a sound? if not, what would be the best way to go about doing so? thanks for your time! Nate_Bro
  5. NateBro

    add # to URL useing javascript insted of <a href='#'>

    hey, thanks for your time, but i was wondering if there was a way to apend a # to a pages URL without reloading the page. basicly i would like this.. window.location = window.location + "#myMark"; but WITH OUT reloading the page. any ideas? I'm useing this on my website, and i have a main...
  6. NateBro

    Cookie Help

    this is what i would like the program to do, i'm using CGI:: and $q is a new CGI object :) # Cookie_Main(i/o, name(s), value(s), time(s)); sub Cookie_Main(){ my ($I_O, @Name, @Value, @Time) = @_; if ($I_O){ # Write Cookie my $I=0; my @cookies; foreach (@Name){ push(@cookies...
  7. NateBro

    Check File size Before Uploading

    hey, i'm not sure if i should put this in PERL or what, but i have a file up-loader and i wanted to make a progress bar, but i know you can't access the file client side, but i just noticed that myspace.com has a progress bar when you upload a picture. so how does it know the file size before...
  8. NateBro

    upload a file to server, no CGI?

    ok, i want to upload files with perl to my server from a perl script running on my desktop. is there an easy way to do this? i know how to use CGI to upload, but this will not be in a browser, just from a perl script. thanks for your time! :)
  9. NateBro

    Run a server side PERL script automatically

    is there a way to set a perl script to run automatically on a server? i want my web site to search, and index words/phrases, and different things. but i want it to run that script everyday at the same time. do i have to manually run the script via a browser, or is there another way? thanks for...
  10. NateBro

    join onmouseout and onmouseover together

    ok, i know this can be done, i had the code before but i lost it somehow :( its something like onmouseout:onmouseover="alert();" some how you can like the to events into one. any help on this would be great! thanks! :D ~Nate_Bro
  11. NateBro

    open file on remote URL

    ok, i'm trying to open a file though its URL, such as.. open(IMG, "http://www.myimg.com/myimg.gif"); now, in reality how would i do this? i know there is a .pm, but with my web server i can only use their stock .pm's so ya, any help would be amazing! :D
  12. NateBro

    need help picking text out of string

    hey, i was wondering if you guys could help me out getting some selected text out of strings. example, if i have a string: my $string = '<img width=12 id="as" src="myFile/img.gif" height=12>'; and i want to get pull just the picture path out.. my $string = '<img width=12 id="as"...
  13. NateBro

    search text and return a given string

    ok, i tried looking for this and have not found anything :( basicly i have a web site seach script, and i want this script to find a word and return the whole sentence that word is in like so. my $search_word = 'another'; my $text = "this is a sentance. this is another sentance."; if ($text...
  14. NateBro

    i forgot the how to call Perls timeout function

    i know in javascript to set a function time out is like.. [code] setTimeout(function(), milsec); [\code] i have done this once before in perl, but i have know idea how i did this, plz help thnx, ~Nate_Bro
  15. NateBro

    convert scalar to an array

    ok, i tried looking for a post on here and came up with nothing. what i'm trying to do is make an array inside of an array. basicly the same as this... $array = [ [1, 2, 3, 4] , [1, 2, 3, 4] ] but i need to do it some thing like... $array[1]...
  16. NateBro

    MSN, YIM, AIM Image Online Protocal

    At one point i had all three protocals, but I tried serching and i can't find any, cept AIM <img src="http://big.oscar.aol.com:80/natebrobg?on_url=http://www.setapartgraphics.com/PK-Forum/PK-Forum/GIFS/IM_AIM_ON.gif&off_url=http://www.setapartgraphics.com/PK-Forum/PK-Forum/GIFS/IM_AIM_OFF.gif"...
  17. NateBro

    Random while statement does not exit

    i'm trying to write a script that will generate 95 random numbers. basically i have a file that has 95 lines in it and i want it to randomly mix them up. i tried writing the below code, but it does not exit and keeps crashing. open(FILE, "Format.txt"); @Coded = <FILE>; close(FILE); @MyUsed...
  18. NateBro

    can't fugure out how to use Graphics::RGBManipulate

    the only code given is: use Graphics::RGBManipulate; my ($red, $green, $blue) = Graphics::RGBManipulate::tweak( hue => 40, red => 255, green => 0, blue => 0 ); # Changes the colour RGB(255, 0, 0) into...
  19. NateBro

    CSS set picture hue?

    I have a web page, and i have a button that is one color, with 3D edges, and i was wanting to know if there was a way with CSS or something else, that i could change the hue of the picture to match to page background. if you have any ideas please let me know, and thanks so much for your time...
  20. NateBro

    confirm(''); HELP!!!!

    I know i'm not crazzy, I'm looking for the code to add style to a confirm dialog box, I found a tut before and didn't realize what i found till i needed it and could not fine it again. I need to use bold text, and regular text in my confirm dialog, also text size would be amazing too, but i'm...

Part and Inventory Search

Back
Top