live

[JQUERY] .live and textarea auto-resizer

Hi! I am using small plugin to jquery: jquery-plugin-autoresize But i have trouble with using it with .live. Does anyone know how to do it? I tried $('textarea .blog_comment').live('autoResize', function(e,{ // On resize: onResize : function() { $(this).css({opacity:0.8}); }, // After resize: animateCallback : function() { $(this).c...

drawing textures on live wallpaper using OpenGL in android

Hii, I want to make a simple live wallpaper using OpenGL in Android that will draw the textures. I have develop a simple OpenGL Activity that can work exactly for live wallpaper. But some problems are there like IllegleArgumentException. I am using GLWallpaperService from earth live wallpaper. Thanks.... ...

Any quick Python GUI to display live images from Camera

Hi, I am trying to display live images from my 1394 camera. Currently my code is able to obtain images in a loop from the camera and I was looking for any quick GUI that will update dynamically (as a separate thread). I can do this in PyQt maybe using QThreads but is there any recommendation or faster way of doing this?? Here's my code ...

tiny question about jquery's live()

How would I change the html of a tag like so: $('#someId').html('<p>foo bar</p>'); while using the live() or delegate() function? Just for clarification I don't want this to happen on hover or focus or click... I just want jquery to immediately change the html inside of a certain tag. Basically, I'm trying to change the logo in t...

jquery live() with mouseover not working

HI there This is my code $('.fc-event').live("mouseover",function(){ if (!$(this).data("init")) { $(this).data("init", true); $(this).draggable({ appendTo: 'body', ...

Count number of trails and live based on a month in SQL

Please HELP!!! I have the following table in my database where [start date] and [End date] data type is in datetime CompanyID ServiceStartDat BillingStartDate         1               03/01/2010              03/02/2010        2               12/01/2010       ...

Twitter Live Search

I was trying to reverse engineer Twitter-Live Search. Maybe we could discuss it here. I am talking about the feature where Tweets are shown even latest to "1 sec ago" etc. Trying to understand how the following might happen - There must be some layer between when the user tweets & when the index (updates) happen. Is this layer MySQL or...

jQuery unbind Live/Delegate events with namespace

Hi! I'm trying to unbind a live event (have tried with .live and with .delegate). When I want to unbind it I have 3 different options: unbind "click", unbind "click.namespace1" or unbind ".namespace1". They all do different things: first one unbind all click events (is not what I want), the second one unbind only the events at "click" ...

Problems decrypting HTTP Live Stream

I have a single key encrypted HTTP Live Stream which decodes fine in Quicktime and iPhone. I'm trying to create a simple client application to do the decryption of the ts files. Right now I've used openssl to decrypt. I believe I have the correct arguments to openssl and I'm inserting the key and the IV properly. I can successfully d...

Reading and appending form data live with javascript.

Hello. I have been searching for the solution to this problem for a while and have to come across an answer that is newbie-friendly enough for me to understand its implementation. Heres my situation: I am creating a simple, little, Web-based document numbering system that takes data entered into a form and combines it to form a document...

jquery - why do i need live() in this situation?

I have a somewhat odd situation. I understand the premise of the live() and bind() functions, yet in a situation where i believe i dont need them, i seemingly do. I will explain. I made an autosuggest in jquery. I included autosuggest.js at the top of my page. I then have an input field. The basis of the JS works around: $(".autosugg...

Android live wallpaper doesn't seem to quit?

I've tried running a variety of live wallpapers. When I set a different one to be live, the old one still shows up in the adb shell when I type 'ps': app_37 12107 1870 125356 16932 ffffffff afe0da04 S fishnoodle.aquarium_free app_50 12196 1870 109620 16804 ffffffff afe0da04 S com.geekyouup.android.snowpaper My own one that I...

Subversion planning for development, staging, live

Good evening everyone. I am in the planning stages of restructuring our subversion process and deployment in the attempt to minimize code loss and production deployment issues. Our current system simply consists of creating a sub domain name on a random server to test with before pushing live which drives me nuts. I wanted to hear som...

jQuery CSS() for dynamically created elements

I'm using jQuery CSS function to style some elements $element.css(style); This works, but a part of the elements are created dynamically after the page load. This should be $element.live ('created',function() { $(this).css(style); }); I'm stuck on the created event. Any ideas? ...

Assigning click event to dynamically added buttons

I am creating some buttons dynamically and giving ids to it too. When ever someone ll click that button I want to collect the ID and from there I ll do some task upon that............. Please any one ll help me........ My code is as below............ $(document).ready(function() { $('input:button').addClass("btnClass"); fill...

How can I present live audio data (updating buffer) as an audio file in C

Hi I am recieving live audio as floating points in an updating array. I want this live data to present as a file that can b read by vlc media player. Can someone guide me how can I do that in C language? /mudassar ...

Impossible issue connecting to Windows Live Messenger network

This issue is giving me serious headaches, I don't have a clue what's going on here. If you don't have any experience with the Windows Live network, I ask you to read this anyway, maybe it has nothing to do with it and am I overlooking something totally unrelated. In short: I wrote an Objective-C class that allows me to connect to the W...

What server side solution did Google Wave used?

I wonder what server side solution Google used for Google Wave. I have heard that they used Node.js for this. Is that true? Or did they use other non-open source solutions? ...

jquery, using API event issue, delegate, live event.

Hello everybody, I have a question what I try to understand for a wile. When I am using API feed with jquery I always have a problem, it is "click", "ready" ... events, which makes me to apply some hacks or to choose another way. For example Flickr API: $.each(data.photoset.photo, function(i, rPhoto){ var basePhotoURL =...

Jquery - Live position of block!

I have an element that moves on hover up or down. I need to know the position on that block and see in an text <script type="text/javascript"> var who = $(".back"); var pozitie = who.position(); $("p.pozitie").text("TOP:" + pozitie.top); </script> This script gives me only the start position. I need the position all the time. Can some...