Problems getting started using Variables & Datasets

Hello,
I am new to this forum and new to scripting in Illustrator and scripting in general.
I have an XML file containing a number of datasets each consisting of a number of text variables which I want to use to create a deck of trading cards.
Each trading card consists of a Text Field for the title of the card and a number of icons, which are instances of various Symbols
I have written a script to create each card and i can load the variables into my javascript using: newCard.importVariables(new File(xmlPath));
I now need to access the data in the datasets in order to populate the card.
To provide some context, this is an image of one of the cards with placeholder art:
Currently, for the icon in the top right hand corner (the PHASE icon) I am using the following code:
phase = "night";
phaseIcon = newCard.symbols.getByName(phase);
phaseIcon1 = newCard.symbolItems.add(phaseIcon);
phaseIcon1.top = 232;
phaseIcon1.left = 140;
What i want to be able to do, is to pull the value for the <phase></phase> TextVariable from my XML dataset and insert that into the script, but I don't know how. This is where I am stuck as to how to proceed. Any help is greatly appreciated.
Thanks,
Nick

Thanks for posting. I can't give a reason for my choice of software and scripting language other than I *love* Illustrator and have yet to get to grips with InDesign and javascript is a language I have been trying to teach myself and am most familiar with.
I have been reading through the ExtendScript Toolkit Javascript docs and have managed to get this working:
idoc = app.activeDocument;
var wolfCardsXML = new XML ( "<wolfcards> <card> <title>Wind Through the Trees</title> <phase>dusk</phase> <fear>fear1</fear> <weather>weather1d</weather> <bonus1>pluck1</bonus1> </card> </wolfcards>" );
var currentCard = wolfCardsXML.card[0];
var phaseValue = currentCard.phase.toString();
var phaseIcon = idoc.symbols.getByName(phaseValue);
var phaseIcon1 = idoc.symbolItems.add(phaseIcon);
This works fine to read the XML data, pull the <phase> value and then use that to pull a Symbol of the same name and place it on the artboard, which is exactly what I want to be able to do. Obviously tho, I have 100+ <card> elements i want to store and loop through to produce all the cards in the deck, but it seems that new XML () will let me do this if i can just pull in the xml data from a txt file as one long text string. Could anyone please suggest a way of being able to do this? Thanks

Similar Messages

  • I just got an Iphone 4. How do I get started using it?

    I just got an Iphone 4. How do I get started using it?

    Start here:
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • I forget my apple id for icloud thin... icant get starting use the ipad

    i formated my ipad then i get a proplem i forget my apple id for icloud then i cant get starting use ipad

    You should be able to skip the iCloud setup process on first startup. Look around for a skip button.
    If you would like the setup iCloud though, follow the following steps:
    If you know the answers to your security questions
    Go to My Apple ID (appleid.apple.com).
    Select “Reset your password.”
    Enter your Apple ID, then select Next.
    Select “Answer security questions” as your authentication method. Select Next.
    Select the birth date associated with your Apple ID, then select Next to begin answering your security questions.
    After answering your security questions, you'll be asked to enter and confirm your new password. Select Reset Password when done.
    If these steps didn't help you to reset your password, contact Apple Support.
    If you have access to the email addresses associated with your Apple ID
    Go to My Apple ID (appleid.apple.com).
    Select “Reset your password.”
    Enter your Apple ID, then select Next.
    Select “Email authentication” as your authentication method. Select Next.
    Apple will send a password-reset email to the primary address or verified rescue address associated with your Apple ID. Didn't receive the email?
    Open the message and select the link to reset your password.
    When the My Apple ID page opens, enter and confirm your new password, then select Reset Password.
    Please rate this post if it helped

  • Problems getting started with LabVIEW FPGA

    Two (probably) related questions:
    1. I am trying to get started with LabVIEW FPGA, and I am having trouble using a host VI to test my FPGA VI. I started with a basic QAM modulator VI, to be run on the FPGA, and I have reached the point where I need to verify the logic and timing with this VI running on the development computer with simulated IO. I have tried various combinations of putting the code inside single-cycle timed loops vs not; putting the modulator block directly into the host VI, and using the "FPGA reference" block. When neither the host VI nor the modulator VI use a single-cycle timed loop, I see correct behavior. In every other case, the output of the VI is either absent or incorrect. I need to use a single-cycle timed loop in the FPGA VI to properly verify timing behavior (as far as I know), so the one functioning case is not enough for me.
    I'm sure there is a key step I'm missing or misunderstanding, but I have not been able to figure it out myself yet. I've attached my modulator diagram as well as two different attempts at host VIs. I can share other information, but I'm not sure what is most relevant.
    2. I am also trying to test a simple wrapper VI for the Xilinx FFT block, and I am having trouble accessing FIFOs inside the host VI. I thought this would be relatively straightforward, but when I tried to change the "method" on an "invoke method" block, there were no options for accessing FIFOs, as I understood there should be. This is a total roadblock for me. These two diagrams are also attached, the test diagram shows the options available to me for the "invoke method" block.
    Labview 2013, PXIe-7965R, PXIe-8133 controller. 
    I had to combine the diagram images; in case they are hard to follow this way, see the individual images here: http://imgur.com/a/oB6OD .
    Thanks in advance for any suggestions.
    Attachments:
    mod_all.png ‏68 KB
    fft_all.png ‏52 KB

    Hello Monguin61
    If you are having problems reading from DMA FIFO's you should test them using a very simple code to understand their behavior. First, you could start taking a look to the linked documents:
    Reading DMA FIFOs from Host VIs (FPGA Interface)
    Using DMA FIFO to Develop High-Speed Data Acquisition Applications for Reconfigurable I/O Devices
    FIFO.Read (Invoke Method)
    Then you could test and analyze a simple example to understand how it works, for example this one: Simple DMA FIFO Example for FPGA.
    Check the references when you are using DMA FIFO's, I noticed you did not connect them in the second picture attached.
    Regards
    Frank R.

  • Problem getting started with OCCI

    Probably a dumb question, but I am having trouble getting the OCCI samples to compile and run with VC6. To try to compile them out of the box, I created a plain Win32 project, added the occi Library and header to my project.
    None of the samples would compile, looked at the errors, which suggested I should have defined WIN32COMMON. I did, and everything compiled. Now whenever I get to a point where the code attempts to retrieve something from a ResultSet I get ASSERTIONS in the delete operator (debug mode) or access violations in release mode.
    Stumped.
    Can anyone give me a clue as to how to get started?
    Thanks,
    Mark

    Mark,
    I had the same problem but I figured it out what to do to get it work (took me quite a while...)Ok, here are the things you have to do (in VC 6.0):
    * project setting / linker / using following libs only (for Release and Debug!):
    oci.lib oraocci9.lib msvcrt.lib msvcprt.lib With these settings I got all OCCI samples to work properly (Release and Debug).
    Though developing my own stuff, I still had problems in the debug version sometimes (I'm using Win2K). I found out, when ever the "C:\WINNT\system32\msvcp60d.dll" was loaded at program start (see debug window of your VC) I got some more assertions. So I renamed the "msvcp60d.dll" to "msvcp60d.dll.bak" and copied the "msvcp60.dll" to "msvcp60d.dll". And now everythings works fine.
    I guess the reasons for these assertions is the occi libs own memory management, which isn't traced correctly by the debug version of
    the "msvcp60.dll"
    Cheers,
    Johannes

  • Problem with Multimapping using Variable Susbtitution

    Hi,
    I have done a Multi-Mapping where I have used variable substitution in the mapping
    The problem I am facing is that when my target message generates multiple messages the files are creating successfully on the FTP server but if only a
    single message generates on the target side then my message is successfully processed in IS but in adapter engine the message status is in "Waiting" state.
    When i see the audit log i found the following details:
    Time Stamp Status Description
    2007-09-18 06:10:24 Success The message was successfully received by the messaging system. Profile: XI URL: https://dx1-60.ra.rockwell.com:56001/MessagingSystem/receive/AFW/XI
    2007-09-18 06:10:24 Success Using connection AFW. Trying to put the message into the receive queue.
    2007-09-18 06:10:24 Success Message successfully put into the queue.
    2007-09-18 06:10:24 Success The message was successfully retrieved from the receive queue.
    2007-09-18 06:10:24 Success The message status set to DLNG.
    2007-09-18 06:10:24 Error Unable to find channel ID
    2007-09-18 06:10:24 Error Delivery of the message to the application using connection AFW failed, due to: Couldn't find delivery channel for message: 46ee0b73-f266-3794-e100-000082974e17.
    2007-09-18 06:10:24 Success The asynchronous message was successfully scheduled to be delivered at Tue Sep 18 06:15:24 GMT 2007.
    2007-09-18 06:10:24 Success The message status set to WAIT.
    2007-09-18 06:15:24 Success Retrying to deliver message to the application. Retry: 1
    Iam using SP14
    Can anyone help me to solve the above problem

    DATA: l_tabname TYPE tabname .
    DATA : gi_mara TYPE TABLE OF mara ,
           gi_makt TYPE TABLE OF makt .
    l_tabname = 'MARA' .
    DATA         : l_dref TYPE REF TO data.
    FIELD-SYMBOLS: <li_itab> TYPE ANY TABLE.
    CREATE DATA l_dref TYPE TABLE OF (l_tabname).
    ASSIGN l_dref->* TO <li_itab>  .
    *Define another field symbol and asign it to right internal table
    *here naming of internal table is important
    FIELD-SYMBOLS : <fs_tab> TYPE ANY TABLE .
    CONCATENATE 'GI_' l_tabname INTO l_tabname .
    ASSIGN (l_tabname) TO <fs_tab>.
    <fs_tab> = <li_itab> .

  • Problems getting started with templates

    I am just getting started with the dreamweaver 30 day trial.
    I am trying to create my first file. When I try to open a new
    template file I get the message below-
    "Dreamweaver stores templates in the root folder of a site,
    but there are no sites defined. Please add a site"
    What does this mean? How do I find the templates? I am a
    total dreamweaver newbie trying to learn the program.
    Thanks

    ntmunger wrote:
    > I am just getting started with the dreamweaver 30 day
    trial. I am
    > trying to create my first file. When I try to open a new
    template
    > file I get the message below-
    >
    > "Dreamweaver stores templates in the root folder of a
    site, but there
    > are no sites defined. Please add a site"
    >
    > What does this mean? How do I find the templates? I am a
    total
    > dreamweaver newbie trying to learn the program.
    >
    > Thanks
    It's not a problem with templates.
    You have to create a site for your website - F1 will show you
    how to do
    that. Once you have a site created, you will be able to
    create new template
    files, and they can write themselves to the correct part of
    the site.
    HTH,
    Pete.
    Peter Connolly
    http://www.acutecomputing.co.uk
    Derby
    UK
    Skype ID: acutecomputing

  • Getting started using c++ and Opengl

    Hi all,
    I hope this is the right section to post this question. I am trying to getting started in developing little games in C++ usign Opengl. I have tryed to look for some documentation and understand how to set up my dev environment. I am a little bit confused on wich version of OpenGl to install and whether or not I need to support it installing particular drivers.
    This are the information on my VGA controller obtained typing "lspci -v"
    00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
            Subsystem: Dell Device 0571
            Flags: bus master, fast devsel, latency 0, IRQ 35
            Memory at f2400000 (64-bit, non-prefetchable) [size=4M]
            Memory at e0000000 (64-bit, prefetchable) [size=256M]
            I/O ports at 5000 [size=64]
            Expansion ROM at <unassigned> [disabled]
            Capabilities: <access denied>
            Kernel driver in use: i915
            Kernel modules: i915
    01:00.0 VGA compatible controller: NVIDIA Corporation GF116M [GeForce GT 555M/635M] (rev a1) (prog-if 00 [VGA controller])
            Subsystem: Dell GeForce GT 555M
            Flags: bus master, fast devsel, latency 0, IRQ 39
            Memory at f0000000 (32-bit, non-prefetchable) [size=32M]
            Memory at c0000000 (64-bit, prefetchable) [size=256M]
            Memory at d0000000 (64-bit, prefetchable) [size=64M]
            I/O ports at 4000 [size=128]
            Expansion ROM at f2000000 [disabled] [size=512K]
            Capabilities: <access denied>
            Kernel driver in use: nouveau
            Kernel modules: nouveau
    Any help is much appreciated!

    Not sure I understand what you're trying to do/install and why based on your post. But since it sounds like you're trying to jump right into the middle of it and I "got started using c++ and opengl" without having any clue of anything a week or so ago, here's some random stuff that would have saved me a lot of time:
    - I don't think nouveau is so great for opengl - you're probably better of using the proprietary nvidia driver (which isn't great for development, but still, better / necessary). You seem to be on a laptop? Then you might need one of those bumblebee / optimus things which makes the situation a lot worse. I never had to use those things, but based on various random posts I came across while I was breaking & fixing my own opengl stuff, everything seems to be even more confusing & glitchy/breaky for the people who have to use it on TOP of the whole rest. You might waste a lot of time looking for errors in your code when there are none and it's really just that optimus/bumblebee thing messing stuff up. Which is TERRIBLE if you're just getting started, so you probably should think about using a different machine with a "real / normal" graphics card for this until you have seen "how opengl is supposed to behave" without this additional source of messy breakage.
    - New to c++ and confused with including / linking etc? If so: Try cmake (google "findpackage.cmake" for whatever you need, look at some cmakelist.txt's for programs similar to what you want to write) - that might get you started a lot faster while you're still not sure what you need/want and enables you to learn the boring stuff piece by piece when you really need it (as opposed to all in one giant boring heap before you can even try anything fun).
    - Kdevelop (or any IDE that has some support for cmake + GOOD syntax completion) also helps a LOT in the beginning.
    - For a start, you just need a modern opengl context. The rest  (glew, glut, opengl, etc) will probably somehow fall into place once you made your choice there and just start with that. SFML is probably the most comfortable to offer an opengl context for a beginner (SDL can be a bit stubborn if you're as clueless as I was. I also tried several others and they all seemed rather "brittle", leading to confusing results if you try to use them while not having much of a clue yet).
    - If you already know some C++/opengl, "those pesky :: 's" don't confuse you as much as they did me when I took a first look, and you don't necessarily want to try doing everything very lowlvl (write your own shader class etc) at first until you understand stuff, you can also try to use qt5's opengl context from the start (I'm switching to it now that I need a GUI in addition to raw opengl).
    - After you manage to draw some obsolete opengl stuff (glbegin() tutorials are everywhere) to confirm that you managed to create your gl context, it probably makes sense to forget about "glbegin" again right away and focus on ShaderProgram/VAO/VBO. It might make sense to to create + render a VAO manually first to get a better understanding of what they are/do... but on the other hand, you can also safe a lot of time if you use premade ShaderProgram/VAO/VBO classes (I think qt5 has all of those) instead right away.
    - At the point you manage to get a VAO rendered in your context, you probably won't rely on finding information specific to your framework (p.E.: linux/qt/nvidia stuff/sfml) so heavily any more and can look for general opengl / VAO / VBO / Open Shader Language stuff - which is all over the place and easy to find.
    - Limiting your googling to THE LAST YEAR when you look for opengl/c++ stuff might get you a lot less confusing / obsolete results.
    Good luck!
    Last edited by whoops (2015-02-17 09:07:16)

  • How I get started using voice input with mac mail?

    Just got a new Imac.  have had Apple computers for a long time.  Want to start using voice input with mail.  How do I get started?

    Apple's voice input options are the following:
    Dictation
    This allows you to speak a phrase and have the system enter it as text in any text field, be it a name and address form or a text editor like Pages or Word. The settings for this service are in the Dictation system preferences, and by default you activate it by pressing the Fn key twice in a row and then speak the desired phrase after you hear the bing sounds.
    Speakable Items
    This option allows you to somewhat control the Mac's interface elements by speaking key phrases to the system. This option is enabled in the Accessibility system preferences, and is at the bottom of the listed services. In here you can turn on the service and calibrate it to properly hear your voice, set a "listening key" (similar to the Fn key for Dictation), and then enable various command libraries.

  • Maven 2.0 - problems getting started

    Dear friends,
    I'm trying to migrate my old fashioned maven projects to the new version of maven 2.0
    At first steps I'm just trying to run the console command that appear on the getting Started guide at the maven site, but it is simply not working over here.... the creation command runned well, but I can't compile the generated source code for some reason...
    the problem is described as:
    The plugin 'org.apache.maven.plugins:maven-resources-plugin' does not exi st or no valid version could be found
    any tip?
    [INFO] Scanning for projects...
    [INFO] -------------------------------------------------------------------------
    [INFO] Building Maven Quick Start Archetype
    [INFO]    task-segment: [compile]
    [INFO] -------------------------------------------------------------------------
    [INFO] ------------------------------------------------------------------------
    [ERROR] BUILD ERROR
    [INFO] ------------------------------------------------------------------------
    [INFO] The plugin 'org.apache.maven.plugins:maven-resources-plugin' does not exi st or no valid version could be found
    [INFO] ------------------------------------------------------------------------
    [INFO] For more information, run Maven with the -e switch
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: < 1 second
    [INFO] Finished at: Sun Jun 11 11:52:35 CEST 2006
    [INFO] Final Memory: 1M/2M
    [INFO] ------------------------------------------------------------------------

    As a first guess, you're unable to connect to a repository to download the plugin (not likely, if you're successfully building with Maven 1), or that repository is temporarily unavailable.
    Best bet is to run with -e and see what else it tells you.

  • How can I get started using MySQL?

    I'm really new to jdbc and was wondering if someone could offer some help on where to get started with using java and mysql. I'm not sure if I need extra packages or what and resource of info would be great.
    Thanks

    Hi,
    if I knew your environment I would have given you a better response, anyway, for now take this as a general guide
    All the instructions here are documented either in JDBC Tutorial or MySQL documentation.
    1) download the lastest JDBC Driver from mysql website:
    http://www.mysql.com/downloads/api-jdbc-stable.html
    You download either one gz or zip files depends on your OS and unzip it.
    2) place the jar file:mysql-connector-java-3.0.9-stable.jar into your CLASSPATH;
    3) Thats it, just follow the direction in the JDBC Tutorial, like normal,
    MySQL driver class name is: org.gjt.mm.mysql.Driver
    the URL: jdbc:mysql://<host>:<port default=3306>/<database>?autoReconnect=ture
    and change the host, port , and database according to your settings!
    Note: I really do not recommend you using the JDBC-ODBC bridge, because it is a solution only if you do not have a direct JDBC driver to your database, its overhead anyway.
    Good luck!

  • How do I get started using my new 3GS for apps?

    Help. I am on a family plan and am 1 of 4 lines.
    I am the only one with iphone 3. How do I download
    aps? and which "passwords" etc. do I use to get
    started? I am all new at this.

        I love explaining iPhone concepts from scratch. You say you have the iPhone 3GS. If you have purchased this phone after 10/11/11, than that means you are running iOS 5, the latest version of your phone's ability, in simpler tems, you got all the new stuff on your phone that Apple released except for Siri.
        Now that we have that settled we can download an app. You start by finding the app titled "App Store" on your phone's homescreen. You lightly tap the app with your finger (not your fingernail). You have now entered into the hub of all apps (consists of games, utilities, business helpers, games, etc.) You should see five buttons on the bottom of your screen. If you want to download an app that is "all the rage" right now, press either the "Top 25" or "Featured" buttons. If you are looking for a certain app genre, tap the "Categories" button. If you know an app you specifically want by name, press the "Search" button, then tap on the white bar on the top of the screen and type in the app's name. Next, no matter what app you chose, when tapping it's name or logo, you are taken to it's description.
        You picked out an app you like, good for you. You can read it's description on this download page, look at screenshots of the app, gift the app (if the app is not free), and look at reviews from other people with this app all before you download it onto your phone. To finally proceed dowloadig the app, scroll to the top of the app's page and press the button in the top right corner that should either say "FREE" if the app is free, ".99" if the app costs a dollar, or "INSTALL" if you or someone else sharing your iTunes Store account has purchased this app. No matter what it says, you tap that button twice for confirmation, and then... here comes the password part.
        The password is for your Apple ID. Your Apple ID is like your username on a social network. The only difference is that instead of any username, it has to be an Email address. If you honestly do not know which Email address you used to be your Apple ID, you can find it by pressing the "Top 25" button in the App Store and scrolling all the way down. If you are logged in, it should say "Apple ID:[email protected]" or something. If you see your Email address there, you can press it and press the "iForgot" button to get your password Emailed to you on that address. If you don't see this, you are not logged in. this means you must try to log in if someone else in your family knows if you even have an Apple ID. If you now are sure you do not have an Apple ID you must make an Apple ID which will take a while. You will have to choose an Email address you can access to be your ID, a password you can remember, your billing info, and three emergency questions for recovering your account. once that is settled, you log into this account on your phone by tapping the button in the location I stated before (bottom of the Top 25 tab). You type in your password which you hopefully now know, you now revisit the app you wanted to dowload, reach the password imput screen that I had guided you to, and you type in your passowrd one last time after doing so, you will be forced out of the store, and you get to watch your app install. i recommend you be at home under wifi if this is a large app. After doing this, you will shortly be able to download more apps from the store without even nedding to type in your password. I just hope you remeber your password for when it askes you again the next time.
    Good luck!

  • FAQ: How do I get started using SpeedGrade

    Here are some excellent resources to help you get started with SpeedGrade:
    Getting Started with SpeedGrade
    SpeedGrade tutorials on Adobe TV

    Here are some excellent resources to help you get started with SpeedGrade:
    Getting Started with SpeedGrade
    SpeedGrade tutorials on Adobe TV

  • Problem executing RMI tutorial "Getting Started Using RMI"

    I am trying to execute the RMI tutorial located at http://java.sun.com/j2se/1.3/docs/guide/rmi/getstart.doc.html
    I use JDK 1.3.1, and Windows XP Pro.
    I follow the info on the URL http://java.sun.com/j2se/1.3/docs/guide/rmi/getstart.doc.html
    And all is OK, but when I try to run the server.I use the following command:
    C:\public_html\htdocs\myclasses>java -Djava.rmi.server.codebase=http://127.0.0.1
    /myclasses/ -Djava.secutiry.policy=c:\policy examples.hello.HelloImpl
    And I got this error:
    HelloImpl err: access denied (java.net.SocketPermission 127.0.0.1:1099 connect,r
    esolve)
    java.security.AccessControlException: access denied (java.net.SocketPermission 1
    27.0.0.1:1099 connect,resolve)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkConnect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown S
    ource)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown S
    ource)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
    at sun.rmi.server.UnicastRef.newCall(Unknown Source)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
    at java.rmi.Naming.rebind(Unknown Source)
    at examples.hello.HelloImpl.main(Unknown Source)
    It seems its something with policy file, I used the one on the tutorial, but I still got error.
    Anyone could help me ?
    John

    I think it's just a typo in your command line. :)
    You're using java.secutiry.policy instead of
    java.security.policy.
    Feel the difference! :)

  • Problem getting started with Mapviewer (mv10131_qs)

    Newby question,
    I followed the readme file and I can get http://localhost:8888 to work but not http://localhost:8888/mapviewer. The result is 404 Hot Found.
    I also followed the instruction to load the demo data from from "mvdemo_10131.zip". So I created a mvdemo database with mvdemo user mvdemo passord.
    Any idea,
    Thanks in advance.

    Yes, I did run Start.bat.
    I edit it also to point to the Java distribution within Oracle folders to avoid problems with other Java installations:
    D:
    cd D:\Oracle\product\10.2.0\db_1\oc4j\j2ee\home
    "D:\Oracle\product\10.2.0\db_1\jdk\bin\java" -server -Xmx384M -jar oc4j.jar
    I am using FireFox and I have Apache running on that system. Do you know of incompatibility?
    Thanks a lot!

Maybe you are looking for

  • How to copy file from  one location to another

    Hi, I am new to java, I tried the following code to move the file from one location to another public class CopyFiles { public String copy ( File source, File target) throws IOException {    FileChannel sourceChannel = null; FileChannel targetChannel

  • Mac Pro slow down after Yosemite 10.10.2 upgrade

    Upgraded in January. I get the spinning color wheel all the time.  Programs crash. I've run adware medic a few times, and etrecheck. First run through, adware found Genio. Since then, it hasn't.  Etrecheck still says it sees it, but Adware doesn't. S

  • Preference Pane for system wide audio EQ? (2 yrs later)

    I fully agree with the quoted message underneath. *"Is there some sort of universal Equalizer I can apply to all my audio? A Preference Pane would be great! I listen to an internet radio client (XM Radio) that doesn't have any EQ control.* *I know Au

  • JPA Generic entities classes Mappedsuperclass are not possible!

    Hi, I have came to understand this: You can use generics with fields in a class, but you cannot make the class generic or a collection in a generic form. I hope that I stated what I wanted correctly. This is the normal generics known to JPA! public c

  • Error # 1084

    It's me again. I corrected the error # 1009 and now i get 2 more : # 1084. I tried to correct but i can't see. Tks a lot. package {           //composante du texte           import flash.display.*;           import flash.text.*;           //importati