Quantcast
Channel: JetBrains Developer Community : Thread List - IntelliJ IDEA Users
Viewing all 5661 articles
Browse latest View live

App Not Looking Right In FullScreen

$
0
0

I ran a test with an as3 example, but it is not working correctly in fullScreen mode.

Not in FullScreen

nonFullScreen.png

FullScreen

FullScreen.png

How can I get this fixed to work in fullscreen also?


Export Inspection Results

$
0
0

How can i export inspection results in an exchangable format? The Export to html (which is in fact invalid html with no <html>,<body> tag only body content) is useless if i have to send the result to another person. Due to it is no valid html, all pdf converters i have checked failed. Why is there no export to pdf?

 

Has anyone a solution how to convert thes weird htmt to a pdf containing all crosslinks/content of the html export?

Freezes when using "Find Usages"

$
0
0

Hello,

I've been having these freezes lately. They definitely happened more than once when I tried to find usages of some class or method, I'm not sure if I experienced it in other cases as well.

Attached is the freeze folder I found under ~/.IntelliJIdea14/system/log/threadDumps-20150716-140102-IU-141.1532.

I'm using IDEA 14.1.4.

 

Thanks,

Guy

How do I get IDEA to use SceneBuilder

$
0
0

I downloaded the latest SceneBuilder jar and it opens/runs fine stand alone.   I tried tell JetBrains its location but it shows as grayed out and can't be selected (see attached image)

 

Anyone know what's wrong?

 

Thanks,

D

IntelliJ gives error "access denied" when I try to do perform “reload changed classes” from run menu

$
0
0

I posted this question on SO but I think this might be more appropiate place:

 

I am using IntelliJ version 14.1.4 on Windows 7 64bit with oracle JDK 1.8.45.

When I change a method logic etc and click on "reload changed classes" from run menu, I get attached error.

 

I've tried running IntelliJ as admin also, invalidating cache but that doesn't seem to help. Note that I am using Jetty maven plugin to run my web application.

How to disable ""This file is indended with.." inspection message?

$
0
0

Hello,

 

Does anyone know how to disable the message that pops up such as "This file is indented with tabs instead of 4 spaces"? When I click on the 'show settings' link,  under Code Style I see that 'Detect and use existing file indents for editing' is checked, and I really like this feature. Then under 'Inspections' settings, I see a listing called General -> Problematic whitespace, which seems like it should be the one responsible however it is unchecked and the message continues to pop up whenever I open a source code file that isn't in the 'preferred' format.

 

I'm seeing this in Webstorm 10.0.4, however I figured it was a general IntelliJ feature so thought it best to ask here.

 

Thanks,

Rich

First time setting up - invalid haxe toolkit for module xyz

$
0
0

Hi everyone !

 

I was following tutorial here to make the initial setup : http://jasonsturges.com/2014/11/28/openfl-and-haxe-in-intellij-14/

The problem is when I try to run the project I get error "Invalid Haxe toolkit for module"...

 

So instead of trying random things, I wanted to ask here few questions that could help me narrow down the problem.

 

Inside of Project Settings -> Project -  is it okay if I chose no SDK and then I set the SDK for module ? Reason is that when I am setting up SDK in Project, it doesn't allow me to select SDK from Desktop folders, after selecting the folder, and choosing it, the sdk doesn't appear in list. Only the default one in usr/lib folder appears after being selected. I tried adding Haxe folder from Desktop there, but it still didn't work after I selected it...

 

But it seems all works fine in Modules.

Inside of Modules folder, I have Compile with set to OpenFL , .xml file is chosen, and for Flex SDK for Flash app debugging I have selected [none] since this is Haxe, and not AS3.

Inside of Dependencies Haxe 3.1.3. is selected, and I also tried checking Library 1.7.5, but it didn't change anything...

 

Any idea what to do ?  I would really like to use this on my Macbook, and so far I didn't find good IDE , this one seems good so far... Thanks !

Gradle and artifacts question

$
0
0

I have an IDEA project with two modules. One module is a Gradle based module, the other IDEA. Using IDEA I can configure the IDEA based one to create an artifact. What I would like to do is have the artifact in the IDEA based module include an artifact from the Gradle based module. Is this possible? So far I can only see how to have it include the compiled sources of the Gradle based one, but I would like it to see and include the artifacts from the Gradle one. Thanks,

 

-Noah


Reply to IDEABKL-7249

$
0
0

Hi

 

I can't seem to be able to comment on the bug report I opened

https://youtrack.jetbrains.com/issue/IDEABKL-7249

Probably because I don't have comment priviliges in the project IDEABKL, where it was moved to lately.

 

So I thought I'd reply here. Hope to reach out to @Egor Ushakov

 

First of all thanks for your reply.

 

I can't see any harm in adding a condition in order to break the recursion (sort of an infinite loop, btw) in the very specific scenario where a variable has a field whose value is `this`.

 

I'll try to explain myself with code.

https://gist.github.com/alb-i986/dcdc682c9239457ffa5e#file-varinspector-java

 

This program prints the following output:

 

VarInspector$SelfObj@7440e464

   selfField: VarInspector$SelfObj@7440e464

   integerField: 1

   VarInspector$NonSelfObj@78308db1

      numField: 2

 

As you can see, the self reference is printed only once.

Yet, everything is printed correctly.

 

So, translating the concept into IDEA's GUI, it should read more or less like this:

 

def drawVar(var):

  drawExpandable(var);

  for
(Field field : fields) {

    [...]

    Object fieldValue = field.get(var);
    // break the recursion if var has a field whose value is `this`
    if (fieldValue == var) {
        drawNotExpandable(field, var);
        continue;
    }
   
    drawVar(fieldValue); // recursive call
  }
}

Cannot resolve taglib with uri

$
0
0

I've some JSP pages in src/main/webapp that reference a TLD file, also in src/main/webapp - and IntelliJ 14.1.4 Ultimate is reporting the error "Cannot resolve taglib with uri taglib.tld" (though the ant-based command line build works just fine).

 

Now, for various historical reasons that I can't change the layout of the project is a bit odd, but where should the TLD file go in order for IntelliJ to recognise the location of a taglib reference by a JSP page with

 

<%@ taglib prefix="tl" uri="taglib.tld" %>

 

Thanks,

 

Greg

[noob] Open from FTP

$
0
0

Is it possible to open and write back to files via ftp?

[noob] Preview PHP files

$
0
0

If I attempt to view a PHP file in a browser, nothing happens, no matter which browser I select.  I have an appache server running.  Is there a place to hook up IntelliJ IDEA to that server to preview PHP files?

[beginner question] - including external jar - compile error

$
0
0

Hello,

I am begginer in Java and also learning to use IntelliJ 14, so please be patient with me and let me apologize in advance if following question is dumb.

 

I would like to ask, how to properly include JAR library in existing project. I mean, I have new project - only hello world template. Now, I would like to include following library in JAR file (http://tomp2p.net/dev/mvn/net/tomp2p/tomp2p-all/5.0-Beta8/tomp2p-all-5.0-Beta8-dist.zip), so I can do "import net.tomp2p....;" in Main class and use whatever classes/methods included in that JAR file in my main class.

 

I tried to do it according to Intellij help - meaning adding JAR through "Project Structure"->"Modules"->"Dependencies"->"+"-> I tried all three options here (Jar/Lib/Module dep), but once I compile I always get error: Error:(1, 1) java: package net.tomp2p does not exis... I tried to move jar file inside src folder, create lib forlder, put jar file there and assign it as library folder and even include it as "Project Structure"->"Library" but nothing worked...

 

I mean, shouldn't it be clear to IDE that once I put JAR file in the project that I actually want to use code within the file ? I feel like I am missing some important step here, so please if you may, let me know what to do or how to do it properly.

 

Thank you very much in advance and I am sorry for asking pretty basic question for all of you.

Thanks.

Joe

Errors occurred while compiling module

$
0
0

Hi! I don't speak English well. When I try to run my class I get an error (see at the attachment). What I shoud to do to run my class?

main class not found

$
0
0

I am having trouble with a simple Java project. When I try to run the program, I get a ClassNotFoundException on the main class.

 

When I look at the actual invocation in the console output, I do not see the module directory on the classpath.

 

When I look at the run configuration, the main class name and the Use Classpath Of Module look correct. Nothing is red.

 

I'm sure this is something simple, but where should I look to find the problem?


IDEA Plugin Dev Only Works In Debug Mode But Not Once Deployed

$
0
0

Hey,

 

Im starting to create a new plugin for a custom language.

 

I have followed the tutorial pages and when i hit build, it opens a new instance of IDEA where my plugin is working.

If I then prepare the plugin for deployment and load the .jar file into my own new instance of IDEA, the plugin loads but my new language is not available.

 

Any ideas why this may be?

 

I have the <idea-version since-build> set to the latest version

 

I also have the

<depends>com.intellij.modules.lang</depends>

exposed to allow the plugin to work in pycharm for instance.

No matter what I do it just does not work once its deployed

Any ideas or pointers?

Adam

Building IntelliJ Community Edition: minimum to full

$
0
0

I've been using Eclipse for everything for nearly a decade, and been evaluating the possibility of changing to IntelliJ (-Community) as my primary IDE lately. After a git clone from the official GitHub repository, I successfully built a 15 EAP version of IC with just a single ant command. Very nice.

 

Now I want to learn more about the source code, and tailor the project to better meet my specific needs by configuring/altering the build process. I see this page on the overall directory structure, but couldn't find anything more. Is there any documentation in these aspects that I better read before diving into the build scripts?

 

What I realy want to do is to build a minimalist IntelliJ Platform first, and then gradually include built-in plugins (there are a whole list of plugins included in the source repository, right?), and finally write some of my own plugins for it. I think this would be the way to truely understand the project archetecture. Anyone went down this path?

 

By the way, is IntelliJ like "plugin LEGO" as Eclipse is? Or is it different in this respect? Where is IntelliJ between modular and monolithic?

 

Thanks!

Dragging items stopped working on Mac

$
0
0

Dragging tabs between split editor areas has been working for me for a long time, but recently  stopped. I simply cannot get the drag to start, either between windows  or even from the project pane into the main gray editor area when there are no open files. Any suggestions for what's changed? Mac OS X 10.10.3, IDEA Ultimate 14.1.4. Thank you.

Copy Paste and SVN Problem

$
0
0

Hey,

 

I'm having the following problems using IntelliJ IDEA 14:

 

1. Copy Paste between IDEA and other Windows Applications, like Notepad++ etc. stops working all of a sudden. Strange enough copy pasting from IDEA to IDEA works, as does copy pasting between the other Windows Applications.
    A restart of IDEA helps, but a few hours later the problem might occur again. I'm not sure the exceptions in the log file have anything to do with it, because i don't remember anything being logged there the last times this problem occured, but who knows..

 

2. I often get this PTY error you can see in the log, when trying to commit to SVN. Again a restart helps. What does not work at all is the annotate function, for whatever reason (used to work in IDEA 12..).

 

Anyone has an idea about how to fix this stuff?

So far i tried it with different Java versions (1.7.x,1.8.x, 32 and 64 bit) and the 32 and 64 bit IDEA launcher..nothing helped :/

Opening again maven output console window

$
0
0

I run a lengthy maven build using the IntelliJ integrated maven tool.

However, If I open another window, such as a terminal window, the output of the maven console dissappears.

How can I view the output of the maven console again without running a maven goal from scratch?

Also, how can I set the max number of lines for the maven console? If the output is lengthy I miss the first lines.

 

Thanks!

Viewing all 5661 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>