aptana

jQuery on New Aptana Studio 3

纵然是瞬间 提交于 2019-12-11 11:24:39
问题 I installed Aptana Studio 3 in my windows 7. I tried to code some jQuery using Aptana. But it give no code completion. After reading How to enable jQuery support in Aptana Studio 3 , I tried to do like the answerer said. Command->Install Bundle->jQuery but after clicking OK I got message on console This Terminal Emulator is not functional because no 'bash' shell could be found. Please correct the problem and restart the IDE. How can I solve this problem? Thank you 回答1: When you installed

jQuery Mobile Content Assist

落花浮王杯 提交于 2019-12-11 11:05:30
问题 I have searched everywhere, does anyone know how to get jQuery Mobile content assist in Eclipse. I am running indigo, and I have Aptana 3 installed. Thanks in advance! 回答1: this is the closest help I could find. http://camcollins.com/2012/01/adventures-in-ios-land-day-1/ Keep in mind, Titanium Studio and not Aptana has the jQuery Mobile supports. Aptana has no plans to include those, to my knowledge. So, either use Eclipse with Titanium as a plug in, or download the Studio here http://www

Does Aptana have anything similar to Visual Studio's XML IntelliSense comments?

给你一囗甜甜゛ 提交于 2019-12-11 10:40:39
问题 Is there a way to customize my javascript's IntelliSense in Aptana IDE, a la Visual Studio xml comments? Visual Studio Example: function areaFunction(radiusParam) { /// <summary>Determines the area of a cicle based on a radius parameter.</summary> /// <param name="radius" type="Number">The radius of the circle.</param> /// <returns type="Number">Returns a number that represents the area.</returns> var areaVal; areaVal = Math.PI * radiusParam * radiusParam; return areaVal; } Thanks in advance!

Getting a dependency error when installing RadRails

瘦欲@ 提交于 2019-12-11 10:05:20
问题 I'm trying to install the Aptana RadRails/Aptana Studio plugin for Eclipse and I'm getting a strange dependency error. Here are the details: OS: Ubuntu 11.04 Eclipse version: 3.5 (Galileo) RadRails version: Aptana Studios Plugin version 3.0.4 Note: I also have the PyDev plugin installed Anyway, I went to install new software in Eclipse and typed in the URL (http://download.aptana.com/studio3/plugin/install) then checked the box for "Aptana Studio 3 plugin" and clicked next, and I got this

How to open files of Filezilla in current open Aptana Studio 3

混江龙づ霸主 提交于 2019-12-11 08:48:53
问题 When I change the configuration of filezilla to open files in Aptana Studio 3 , it starts a new process Aptana, and do not mind that is open, ie a new workspace. How to set to open in a new tab in Aptana that is already open (running?) And if possible, how to do the same for other files, for example, to configure when you open an html file by Nautilus or the terminal, open a new tab. 回答1: In Edit > Settings > File Editing > File type associations > Custom filetype associations write: "file

How to install CDT plugin on Aptana Studio 3

丶灬走出姿态 提交于 2019-12-11 08:08:43
问题 Things tried: Go to Install New Software -> Selected C/C++ development tools. I get the following error Cannot complete the install because of a conflicting dependency. Software being installed: C/C++ Development Tools 8.0.0.201106081058 (org.eclipse.cdt.feature.group 8.0.0.201106081058) Software currently installed: Aptana Studio 3 3.0.4.201108101506-10082011150838 (com.aptana.rcp.product 3.0.4.201108101506-10082011150838) Only one of the following can be installed at once: Debug Core 3.7.0

Aptana customisation : PHP Syntax colours

放肆的年华 提交于 2019-12-11 06:38:45
问题 I am rather fond of the Green Chaud set of colourisations for Aptana ( http://gueschla.com/labs/green-chaud./ ), however I notice that the PHP section of options is gone from the Aptana > Editors section of the preferences window. Does anyone know how to colourise the PHP editor now that the option is gone to import a .col ? I've had a poke in the preferences PHP > Appearance section, but no options to colourise in there. Am I doomed to stick with the plain colours? PS. Aptana Studio, build:

Creating Plain .rb Files with Aptana RadRails

北城余情 提交于 2019-12-11 06:34:39
问题 I have just bought a MacBook for some ruby development and like the look of Aptana Studio as a really nice IDE. The question I have, however, is that I want to know (before getting too deep into it, and potentially wasting time) is can I create plain old .rb files without the rails framework attached? Also, can I execute the ruby file straight from the IDE, or will I have to use Terminal? As I said, I am only just learning Ruby and I am working through some books I have bought, and while I do

Does Aptana 3 recognize CSS3?

为君一笑 提交于 2019-12-11 03:45:45
问题 While learning CSS3 I realized that Aptana Studio 3 doesn´t recognize CSS3 source. I have updated the latest features for the IDE but it is still trying to use CSS2. I get this error for CSS3 background statement: background: rgba(255, 255, 255, 0.1); ValueError: background (http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background) Too many values or values are not recognized. Do I have to install a particular plugin for Aptana?? Edited Jul 26th 2011, the bug is still there after

Running rspec on Aptana 3

痞子三分冷 提交于 2019-12-11 02:44:52
问题 I am trying to make the 2 minute tutorial run on Aptana 3. I've already created both .rb files, but I am left wondering what button or command should I run to make my game_spec.rb file run. How to run my rspec tests in Aptana? 回答1: The tutorial is not quite correct. First, you need to place you game_spec.rb into spec/ folder. The tutorial assumes to use Terminal so you need to click on "Open Terminal" action on toolbar, then type (or copy/paste) rspec spec/game_spec.rb --color --format doc