convert

converting Adobe AIR to Flex application

Hi, We have a Adobe AIR desktop client which talks to a WAMP server. How can i convert this AIR app to a Flex app to be used in the browser. Please let me know. Thanks vish. ...

How to convert HTML ==> RTF in Java?

The basic API of JAVA that uses RTFEditorKit and HTMLEditorKit, is not able of recognize tags like <br/> and <table>. So I have searched on internet a better way of converting HTML to RTF and i have found two solutions that seem to work. JODConverter and HTML-to-RTFconverter. The first one needs OppenOffice installed to work and the seco...

How can I capture screen with sound in iphone, then convert to video and email?

Similar to "Talking Tom Cat" app. How can I possibly achieve this? Are there any API out there I can use? Sorry for this noob question..... >_< ...

Convert Recorded sound in iphone from one format to another say wav to mp3

Hi, I am trying to record some audio and convert them to other sound formats. I am using AVAudioRecorder class to record and these are the recording settings I used.. NSDictionary *recordSetting = [[NSMutableDictionary alloc] init]; [recordSetting setValue:[NSNumber numberWithInt:kAudioFormatLinearPCM] forKey:AVFormatIDKey];//kAudioF...

Comparison Operator using Reflection

I want to compare two values at runtime using reflection. I was using Comparer.Default.Compare(x,y) for this, but I have come to realize that this is not adequate. Let's say I want to compare a double to a single (1.0 == 10). Comparer.Default will throw an exception because it insists that both values must be the same type (double). Howe...

xcode project to visual studios

I do most of my home development in Xcode, however my classes require me to use visual studios 2010. I am curious if there is some tool that can convert my xcode project to visual studios projects and back and structure the files the way the ides want them to be? the programs I am writing are OS independent ...

strip_tags plus annotate links

Note: The input HTML is trusted; it is not user defined! I'll highlight what I need with an example. Given the following HTML: <p> Welcome to <a href="http://google.com/" class="crap">Google.com</a>!<br> Please, <a href="enjoy.html">enjoy</a> your stay! </p> I'd like to to convert it to: Welcome to Google.com[1] Please, enjoy[2...

CONVERT and CAST in MySQL query

When I'm trying to delete an entry from a MySQL table using phpMyAdmin, I always have CONVERT and CAST in the delete query. Why do they appear and how can I get rid of them? Example: DELETE FROM `table` WHERE `table`.`field_1` = 3 AND CONVERT(`table`.`field_2` USING utf8) = CAST(0x6338643263323430623864326531373436343263613537353165363...

How can I convert .strings files to and from .po and .pot files?

How can I convert .strings files to and from .po and .pot files? ...

jQuery: Convert TextArea content to html string and vice versa

Hello everyone, what I'm trying to do is converting a TextArea content into a valid html code. Suppose you type inside the TextArea and then you press a button that shows the typed text inside a element. If you typed something like inside the TextArea: Hi folks! Do you like jQuery? I do! The resulting string you have to put ins...

SQL Server numeric format

When I do the following: DECLARE @x float SET @x = 1234.5 SELECT CONVERT(varbinary, @x) What is the returned format? I need to get the original number back from .net somehow, and I only have the binary value available. Clarification: The statement above returns (no column name) 0x40934A0000000000 Somehow, I must get the value 123...

Convert emailadresses from excel into hyperlinks using dreamweaver or an alternative

I just received a large list of email addresses from a customer that want me to put it on a regular html page. I would appreciate it very much if there was some way to automatic convert those emails into email hyper-links: <td>[email protected]</td> ---> <td><a href="mailto:[email protected]">[email protected]</a></td> I was hoping there was a way ...

Python: create fixed point decimal from two 32-bit ints (one for int portion, one for decimal)

I have a 64-bit timestamp unpacked from a file with binary data, where the top 32 bits are the number of seconds and the bottom 32 bits are the fraction of the second. I'm stuck with how to actually convert the bottom 32 bits into a fraction without looping through it bit-by-bit. Any suggestions? For reference, the number 4ca1f350 948...

Converting single PDF document to JPG's named by page name

Hello, I need to take 1 PDF document that has about 92 pages inside, and make every page of it into a JPG file. But the JPG files need to be saved as the PDF's page name. Each page in the PDF is called say "Template: tpl_9043", and I want the JPG filenames stored as such. Is there such an application to use a page number macro? I kn...

Convert Flex Action Script project into a Flex project.

I've got a flex action script project that consists of 3 AS files. I'd like to use the Flex frame work so I can add some components and other functionality. How can I go about converting this Action Script project into a Flex project with a .mxml file? I'm using Flash Builder 4. thanks Here's a link containing the project files I'm ...

Convert Cognos Model to Microsoft SQL report model?

Is there any article or documentation describe converting Cognos model to Report Model for Microsoft reporting server? ...

[iPhone] Convert UIImage to CVPixelBufferRef

Hi @ll I want to convert a UIImage object to a CVPixelBufferRef object, but I have absolutly no idea. And I can't find any example code doing anything like this. Can someone please help me? THX in advance! C YA ...

Convert a double to fixed decimal point in C++

I have a double variable in C++ and want to print it out to the screen as a fixed decimal point number. Basically I want to know how to write a function that takes a double and a number of decimal places and prints out the number to that number of decimal places, zero padding if necessary. For example: convert(1.235, 2) would print ...

Converting a Jpeg into an uncompressed tiff image

Hello I found this code on StackOverflow import java.io.File; import java.io.FileOutputStream; import java.awt.image.RenderedImage; import com.sun.image.codec.jpeg.JPEGCodec; import com.sun.image.codec.jpeg.JPEGImageEncoder; import javax.media.jai.NullOpImage; import javax.media.jai.OpImage; import com.sun.media.jai.codec.SeekableStre...

Why does Convert.ChangeType take an object parameter?

The Convert class has been in existence since .NET 1.0. The IConvertible interface has also existed since this time. The Convert.ChangeType method only works on objects of types that implement IConvertible (in fact, unless I'm mistaken, all of the conversion methods provided by the Convert class are this way). So why is the parameter ty...