0
votes
0answers
33 views

Running a OpenOffice BASIC macro in Calc using Java

I have a BASIC Macro in OpenOffice 3.3 stored in "My Macros > Standard > Module 1". I want to run the BASIC macro with Java in my OpenSUSE Linux PC. I have referred this SO question and OpenOffice ...
0
votes
1answer
39 views

ImageJ Rotation Macro Call Slows Down By Each Call

I have been working on a project in which I am trying to rotate images by ImageJ macros, basically the related part looks like: IJ.run(sourceImage, "Arbitrarily...", "angle=" + angle + " grid=1 ...
0
votes
0answers
22 views

Linking Applets and Excel by Macro

How do I write a macro in excel to feed in data and extract data to and from a java applet running on the internet explorer ? I have written a code to link it to normal websites but I am not able to ...
0
votes
0answers
31 views

How to access properties of an object with dynamic macros in Velocity templates

I have a velocity template defined as follows: #macro(aMacro $par1) $par1 $par1.id #end ##dynamic macro call ==================== #set($macroName = "aMacro") #set( $call = "#$macroName('$p1')" ...
0
votes
2answers
105 views

Create Java Annotation to replace a token with code

I'm doing a project which in essence is a way for a user to create macros for very long/repetitive code so they can then put these macros into a their code to increase readability and encourage ...
0
votes
1answer
188 views

How to copy data from xlsx file to a text file

How can I copy data from column A and B of an xlsx file to a text file using any of the following: Excel Macro PHP Java I am on ubuntu 12.04.1, using Libreoffice for xlsx. Also the words in the ...
0
votes
2answers
173 views

How can I run Excel Macro from Java?

I've .txt files generated by Java (with databases queries). I need to generate an excel with that (with graphics and other kind of information, is not just a pure csv). How can I call my excel macro ...
1
vote
2answers
84 views

Getting errors when using setText method

Here is my code: public class NoteView extends FragmentActivity implements CustomDialogFragment.CustomDialogListener { private Uri mUri; private String[] projection = { ...
3
votes
4answers
90 views

Can a string be converted to an instruction?

This code in Java: for (Integer x=1; x <= 3; x++) { y = "array[" + Integer.toString(x) + "] = a" + Integer.toString(x) + ".getText();"; System.out.println(y); } prints out: array[1] ...
0
votes
0answers
111 views

Is it possible to read and edit excel macro from java

I have an excel macro that i need to read from a java program. Then process something on the macro extracted in the java code. and update the new processed macro back into the excel. I did a few ...
0
votes
1answer
137 views

Atlassian Confluence: Macro type plugin that will display a popup window when the page is accessed

Pretty basic idea, i want to show a popup window when some one access the page. I have written a sample code. Actually what i want to do is create a Macro-type plugin which has a body so we could add ...
1
vote
0answers
162 views

Java and iMacros

I'm trying to follow this tutorial, regarding using Java with iMacros, but it isn't working. I'm getting an error saying "Could not find or load the main class" even though there is clearly a main ...
1
vote
1answer
67 views

Creating a jEdit macro, what is the proper way to find out how many instances SearchAndReplace wrote into a buffer

I am attempting to create a macro in jEdit. I am attempting to remove all the white space from the start of every line in a buffer. Here's the jEdit macro (i.e. Java) code I have attempting to do ...
-2
votes
1answer
130 views

How to enable macros through apache POI? [closed]

How to enable macros through apache POI API?.
0
votes
0answers
69 views

Create a macro to work on a Java Applet on a webpage

Basically, there is a Java Applet on a webpage, which displays a number and a random generate button. I am trying to create a macro to press this random button repeatedly until a number in the desired ...
0
votes
1answer
55 views

android java macros or “before compile time replacements” possible?

My goal is following: I want to use something like if (!checkLicense()) { ... close app and show some informations/links... } in some random places in my code... BUT I want to prevent someone ...
8
votes
2answers
506 views

Scala 2.10 macros compared to what is available in Java

I don't know this field so much. Can someone explain what is possible in Scala 2.10 with macros, compared to what is possible in Java with compilation preprocessors, and tools like CGLIB, ASM, ...
1
vote
1answer
337 views

Save word file as html in java

I try to save a word file as html using java. I save a word file as xml and its working for me Runtime rt1 = Runtime.getRuntime(); rt1.exec("C:/Program Files/Microsoft Office/Office12/WINWORD.EXE ...
0
votes
2answers
60 views

How do we simplify this kind of code in Java? Something like macros in C?

public static boolean diagonals(char[][] b, int row, int col, int l) { int counter = 1; // because we start from the current position char charAtPosition = b[row][col]; ...
0
votes
2answers
443 views

how to make cell as read-only in excel using apachi-POI

i have a drop down list contains some options, and for example two cells. what i need is regarding the selected option turn one of the cells to editable and the other to read-only and vise-versa. ...
0
votes
0answers
52 views

Clicking the unclickable window [closed]

I have been looking into making a macro type program that copy a string from an open application that contains a editable text field, edit the string, then paste a responce of sorts. For some reason, ...
1
vote
0answers
103 views

Add more than one method to Java class

I need to add a method to a class for some classes on c++ side. for example, i have class A B C D on c++ side and class A B C D on java side generated by swig, in class D(java side) i need to add 3 ...
0
votes
1answer
79 views

Changing value of a variable in the file to be imported; Freemarker

File testMacro.txt <#import "./importMe.txt" as my> <#assign a=0 > <@my.macro1 /> ${a} File importMe.txt <#macro macro1 > ${a} </#macro> Now from java file, when I ...
0
votes
1answer
254 views

Importing freemarker macros

My macros.txt file is <#macro macro1> Helloworld. </#macro> I have another file testMacro.txt. I want to use this macro inside the file testMacro.txt. I have tried the following ...
0
votes
3answers
172 views

Why doesn't Java have macros? [closed]

In class the prof said one reason he likes C better than Java is that C has a preprocesor, and in particular macros. Is there any benefit to macros over declaring afinal/const variable with the ...
0
votes
0answers
122 views

Is there a UI macro recorder for Eclipse Indigo?

Similar to this question, but I'm looking for a way to translate Eclipse UI actions into a single Eclipse command / keyboard shortcut (as opposed to acting on text blocks as in that question). ...
2
votes
1answer
115 views

IDE for java that support c preprocessor [closed]

I want to find a java IDE, or any way to config a popular code editor that can understand pure c preprocessor (say, '#if' but not athenna comment preprocessor like '//#if')in java code, some thing ...
-2
votes
2answers
116 views

which language is better to convert excel to xml [closed]

i need to write a script to arrange data in excel and convert into xml automaticlly which language is more suitable, java or VBA macro? or anything else? but VB looks a little ..confused anybody do ...
1
vote
2answers
56 views

convert macro plot to gwt

I have an excel Macro that takes log information and creats a plot out of this information. I was wondering if there is a way that I can convert this macro into GWT. Or is this evan possible? I ...
0
votes
0answers
75 views

java macro queing system

so i've been doing a text based macro system where it reads the file and process commands based on what is read, now i'm trying to expand it into something slightly bigger where it doesn't try to ...
2
votes
1answer
103 views

Keybinding keys to insert custom code Eclipse

How would I go about setting up a keybinding so when I press for example CTRL+SHIFT+T in eclipse it surrounds the selected lines with a time measurer. Like so: 1: CODE CODE CODE 2: Select three ...
0
votes
0answers
131 views

How to create mouse and keyboard listener for entire system in Java [closed]

Is there a way to create a mouse and keyboard listener for entire system other than as described in this thread?
2
votes
1answer
196 views

code::blocks doesn't support JNI macros?

JNIEXPORT jint JNICALL JNI_Func(....) { .... } I get unsatisfied link error when i try to run the java program with macros (JNIEXPORT and JNICALL) in the native code. But when i remove the ...
3
votes
1answer
2k views

LibreOffice UNO Java API: how to open a document, execute a macro and close it?

I'm working on LibreOffice server-side: on the server I run soffice --accept=... Then I use Java LibreOffice client API's to apply a macro on a document (calc or writer). The java execution does ...
0
votes
1answer
395 views

Call Excel Macro using java on a linux box

I am not really sure if this is possible but here it goes , I have written an excel macro and i am calling this macro through a vbs. Here is the snippet for the same. Dim objExcel, objWorkbook, ad, ...
3
votes
1answer
129 views

Display non-ASCII character in ImageJ

Simple question but I can't find the answer anywhere. No search strategy so far has worked for me. I have an ImageJ macro that opens a dialog for users to set the size of an image overlay. The dialog ...
7
votes
2answers
395 views

Clojure macro for calling Java setters based on a map?

I'm writing a Clojure wrapper for the Braintree Java library to provide a more concise and idiomatic interface. I'd like to provide functions to instantiate the Java objects quickly and concisely, ...
2
votes
3answers
218 views

Practices for managing complexity of meta-programming (AOP/reflection/macros) techniques

Aspects, Macros, Reflection, and other niceties - the good parts I've noticed that "meta programming" tricks (in the clojure world, functions have meta data, in the oo world, we have concepts like ...
1
vote
2answers
440 views

Java robot and image comparison

I'm toying with an idea for creating a Java application to automate a process that I have to do regularly and before I start any coding I thought I would seek advice as to the best way to approach it. ...
-3
votes
2answers
250 views

how to export excel macros to h2 database [closed]

i need to create a table in excel 2010 using macros.this table should be exported to h2 database.i have an icon called export but it remains disabled
0
votes
1answer
149 views

Eclipse Text Search, automating loop over a list of search terms?

I'm using Eclipse to do a text search on a Java Application. The list of references / search terms are stored procedures (SP). My goal is to see if these SP are being called in the Java App. I have ...
2
votes
1answer
147 views

What is the easiest way to extend Java syntax (hygienic macros)

I'm looking for a way to extend java syntax, basically I want to implement lispish "macro" system where I can have a preprocessor that will modify AST in compile-time. What is the easiest way to plug ...
0
votes
2answers
158 views

Syntax Preprocessors for Java

I'm looking for a Java macro language that provides for convenient ways of doing closures (that compile to anonymous inner classes) and list comprehension (that compiles down to basic java loops). An ...
1
vote
1answer
281 views

pre-compiler switches in java: how to change the path for an imported class

I need to use the same class on two diffwrent platform-SDKs. Although the class and its methods are the same the path to access the class is different. On one device I need to use: import ...
3
votes
4answers
2k views

Velocity Template auto-reload doesn't work

I want to reload velocity template as it's changed. For this I've set the followings, but reload doesn't work when I manually change a .vm file inside META-INF/template/ . ...
1
vote
1answer
432 views

java mouse and keyboard listener, macro recording

If i read correctly, the mouse and keyboard listeners are intended to capture movement within an application. what I want to do is capture movement system wide. Mouse movement/clicks and button ...
0
votes
1answer
145 views

Java and Macros project

Basically, for a project i'm thinking of making a macro recording application, with a gui. It doesn't have to be brilliant, just basically functional. Are there macro api's for java? Ideally i'd like ...
3
votes
2answers
255 views

Are Project-Specific DSLs a Liability? [closed]

I've forked this question from a similar question I made in a comment I made to one of the many great answers I recieved. I was originally asking about AST macros, which mostly provoked very detailed ...
3
votes
3answers
3k views

How to call a Macro from Apache POI library in Java?

I have : Macro named "process" that does all the processing work for my worksheets. I want my Java code that uses Apache POI, to call this macro so that it can process the sheets for me. ...
7
votes
7answers
4k views

Can I have macros in Java source files

In my program I'm reading integers form console many times. At every time , I need to type this line. new Scanner(System.in).nextInt(); Hence like in c/c++, if I define a macro like #define ...

1 2