How to call javafxpackager in Mac OS?

I have Java 7u4 on my Mac and want to know how to use javafxpackager?
Java 1.7.0 jdk is installed in /Library/Java/JavaVirtualMachines
If I double click Java preferences open.
Do I have to extract it somehow?
Also, how can I set the bin folder as my environment variable?
I just want to use the command javafxpacker in my terminal.
(sorry, I come from Windows and Java on Mac is quite new for me)

Copy and paste the code below on your terminal
export PATH=$PATH:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/bin/
and then
javafxpackager
Should print a lot on your terminal. After that just make sure you won't need to export it again by writing the $PATH variable to your .profile file
[edit]
echo "export PATH=$PATH" >> ~/.profile
Easy enough isn't it?
Edited by: brunvieira on Jun 1, 2012 4:13 AM

Similar Messages

  • How do I make a phone call from my mac with yosemite?

    How do I make a phone call from my MacBook Pro on the Yosemite operating system?

    The following quotation is from Connect your iPhone, iPad, iPod touch, and Mac using Continuity
    There is more information in the link, including supported hardware and that you must have Settings > FaceTime > iPhone Cellular Calls set to on on the iPhone.
    Phone calls
    With Continuity, you can make and receive cellular phone calls from your iPad, iPod touch, or Mac when your iPhone is on the same Wi-Fi network.
    To make and receive phone calls, here's what you need:
    Sign in to the same iCloud account on all your devices, including your Mac.
    Your iPhone and your iPad or iPod touch need to use iOS 8 or later. Your Mac needs to use OS X Yosemite.
    All devices must be on the same Wi-Fi network.
    All devices must be signed in to FaceTime using the same iCloud account. This means any device that shares your Apple ID will get your phone calls. Look below for instructions on how to turn off iPhone cellular calls.
    Wi-Fi Calling needs to be off. Go to Settings > Phone. If you see Wi-Fi Calling, turn it off.
    Make a call
    To make a phone call on your Mac, iPad or iPod touch tap or click a phone number in Contacts, Calendar, or Safari.

  • HT204380 i have a mac book pro and a i-pad 2. both of the devices have the same apple id and same mailing adress. if i want to make a face-time call from my mac book to i-pad 2. how can i do that?

    i have a mac book pro and a i-pad 2. both of the devices have the same apple id and same mailing adress. if i want to make a face-time call from my mac book to i-pad 2. how can i do that?

    You have to add another email address on one of the two devices that you can use as the "You can be reached for FaceTime at" contact address and then remove/uncheck the Apple ID email address as the contact address on that device. The way you are currently setup is like to trying to call yourself on your on phone - from your own phone.
    Using the iPad as the example go to Settings>FaceTime>You can be reached for FaceTime at>Add another email address. Then add a working email address in the next window. Apple will verify the email. Go to the inbox of that email account, read and respond to Apple's email in order to complete the verification process.
    Go back to Settings>FaceTime>Uncheck the Apple ID email address and make sure that the new email address is checked/selected (you will see it being verified again) and that new email address will be your contact address for the iPad.

  • Good day, I can not make video calling with my MAC PRO 15 with FB Mountan Lion operating system   how can I do?    you can you help me? thank you very much

    good day,
    I can not make
    video calling
    with my MAC PRO 15
    with FB
    Mountan Lion operating system
      how can I do?
       you can you help me? thank you very much

    francesco marraffa wrote:
    good day,
    I can not make
    video calling
    with my MAC PRO 15
    with FB
    Mountan Lion operating system
      how can I do?
       you can you help me? thank you very much
    Are you running your MacBook Pro off WiFi or Ethernet?
    Pete

  • How do I use my Mac's mic and speaker when answering a phone call?

    Whenever I receive a phone call on my iPhone and answer it on my Mac, the speaker and mic on the iPhone are used for the call rather than the Mac. On an older Mac I was using, when I answered a call from my iPhone, it used the Mac's speaker and mic for the call. Is there a setting somewhere to fix this on the new Mac? When I make calls from the Mac, it uses the speaker and mic, but it doesn't when I answer them. Any help is appreciated. Thanks.
    2015 MacBook Pro 13" 10.10.2
    iPhone 5S iOS 8.2

    Howdy Robb,
    The article linked below details a number of troubleshooting steps that can help resolve issues with Continuity between your Mac and your iPhone.
    Get help using Continuity with iOS 8 and OS X Yosemite
    https://support.apple.com/en-us/TS5458
    Cheers,
    Allen

  • How do i make a phone call from my mac

    i can't make a phone call from my mac nor receive phone calls

    NO my mac is on a different wi-fi than my phone

  • How can I make my Mac Book Pro print to a Panasonic KX-MB772?

    How can I make my Mac Book Pro OSX 6.8 talk to a Panasonic KX-MB772 printer?

    You can't. The KX-MB722 is one of the few remaining printers in the class of devices called "Windows Printers" that has no on-board printing software -- it relies on a host computer to provide all of the software functionality and Panasonic only provides such software for certain versions of Microsoft Windows. In this case, it means a 32-bit version of Microsoft Windows (2000-XP, though it will probably reliably on Windows versions up to 7). Note that these devices are not guaranteed compatible with future versions of Windows either (Panasonic has already dropped software support for this model).
    I'm pretty sure that the device doesn't support remote printing without the software either (e.g., you can't setup a computer with Windows on it, share the printer, and then print to the shared printer without their software).

  • How to call a java script?

    Hi,
    I m new to Indesign and also to MAC OS...
    I ve tried the sdk samples of InDesign CS3 on MAC OS. It works well.
    I m making changes to one of the samples (BasicPanel). I ve added few check boxes and buttons in it. I donno where to give the code for button(in the panel) event/action?
    I also need to know "how to call a java script from InDesign CS3 SDK ?"...
    I have the Scripts ready... Can someone provide the code used to call JS...
    Someone pls help me.....
    Thank You...

            Here s the code to call a Javascript:
            IDFile scriptFile;
            FileUtils::GetAppInstallationFolder(&scriptFile);                    //application folder path
            FileUtils::AppendPath(&scriptFile, PMString("Scripts", -1, PMString::kNoTranslate));               
            FileUtils::AppendPath(&scriptFile, PMString("Scripts Panel", -1, PMString::kNoTranslate));
            //inside the scripts panel, append path of the folder in which ur script is present.
            //Suppose, ScriptsPanel->NewFolder->Link.jsx
            FileUtils::AppendPath(&scriptFile, PMString("NewFolder", -1, PMString::kNoTranslate)); 
            FileUtils::AppendPath(&scriptFile, PMString("Link.jsx", -1, PMString::kNoTranslate));
            InterfacePtr<IScriptRunner>scriptRunner(Utils<IScriptUtils>()->QueryScriptRunner(scriptFi le));
            bool filestatus=scriptRunner->CanHandleFile(scriptFile);
            if(filestatus==1)
                scriptRunner->RunFile(scriptFile,kTrue,kFalse);
    Regards,
    tnhems

  • Is there any upcoming software updates for the version 10.5.8? Also how do I backup my mac?

    I really want to update my mac to the new version of Snow Leopard or Lion but to my understanding I must buy the disks to update it. However I feel like buying a macbook pro to my replace my mid-2009 white macbook, once I graduate so I could use it for college (which is 2 years from now and I'm saving up for it).
    Also how do I backup my mac (hardrive)? I'm quite lost. I'm told that I must use Time Machine, but how? Do I use a CD to back up? Some external drive and if yes where could I buy one?
    P.S. I'm a newbie with tech stuff. I'm no genius with it so I suggest to take it slow with me. PLUS there's no Apple Store here to help me out.
    My quetions in a nutshell:
    1) Upcoming software updates? *secretly wishes they were FREE*
    2) Backing up my hardrive?
    My Mac
      - Version 10.5.8 with a 2.13 GHz Intel Core 2 Duo

    The 2.13Ghz MacBook is a Mid 2009 model 5,2 http://www.everymac.com/systems/apple/macbook/specs/macbook-core-2-duo-2.13-whit e-13-mid-2009-nvidia-specs.html
    There will be no updates for 10.5. it's been out of production for 3 years. You can order a Snow Leopard 10.6 install disk for $29 as long as you have at least 1gb of RAM and 5gb of free space on your hard drive.  http://store.apple.com/us/product/MC573Z/A?mco=MTY3ODQ5OTY
    You can upgrade from 10.5 to 10.6 with no problems. Any program that runs under 10.5 should run under10.6. See this list for compatibility with 10.6: http://snowleopard.wikidot.com/  You might have to upgrade some drivers for printers, etc.... And you will have to install Rosetta if you have any third party Power PC applications http://www.macobserver.com/tmo/article/snow_leopard_installing_rosetta/ 
    To upgrade your iLife and iWork. If you only want iPhoto or other single apps from iLife '11 you can get them from the App Store after you've upgraded to 10.6.6. iPhoto, iMovie or Garage Band for $15 each and Pages, Keynote or Numbers from iWork '09 for $20 each.
    You can upgrade from 10.4 to 10.6 with no problems. Any program that runs under 10.4 should run under10.6. See this list for compatibility with 10.6: http://snowleopard.wikidot.com/  You might have to upgrade some drivers for printers, etc.... And you will have to install Rosetta if you have any third party Power PC applications http://www.macobserver.com/tmo/article/snow_leopard_installing_rosetta/ 
    Once you are at 10.6.8 you can buy Lion for $29 from the App Store. Lion will require at least 2gb of RAM but really needs 4gb to run smoothly. As for third party programs see this list for compatibility with 10.7 http://roaringapps.com/apps:table Also Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
    Before Mac switched to Intel processors they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.

  • TS1394 How do I update to Mac OS X 10.6 and higher

    How do I update to Mac OS X 10.6

    I did not know OS upgrade had to be purchased since I have been updating for free up to this point.
    Everything within a major point release for OS X is free. So moving from 10.5.1 to 10.5.8 for example would be free. 10.5.x to 10.6.x would not.
    Apple does continue to confuse folks by giving major paid releases the same OS X name and just increasing the point number. Usually in the world of software, a point release is a larger, free update to fix programming issues. You would normally have expected paid releases to be OS X (10), OS XI (11), etc. Apple did this instead, each paid major release called OS X:
    10.2 - Jaguar
    10.3 - Panther
    10.4 - Tiger
    10.5 - Leopard
    10.6 - Snow Leopard
    10.7 - Lion
    10.8 - Mountain Lion

  • My FaceTime icon in dock is not showing when and how many calls I have missed (similar to the email system where it shows how many emails (on the stamp icon) have been received

    My Face Time icon in dock does not show how many calls I have missed.  It should show the number similar to the email system(a red number appears on the stamp icon).  How can I rectify this problem? 

    Hey michelefromuk,
    Thanks for using Apple Support Communities.
    Mac Basics: Notifications keep you informed
    http://support.apple.com/kb/ht5362
    Check or uncheck "Badge app icon" option to show badges on the icon of the app in the Dock.
    Have a nice day,
    Mario

  • How to setup face time mac to mac

    how to setup face time mac to mac, does the other mac need a different apple id from the other

    I've done same thing but again and agin showing call failed its just not happening.i've got only one FaceTime enable contact , I don't know whether d issue with tht ph or mine.couldnt hv any option to check with other contact

  • HT1444 how do I upgrade from Mac OS 10.5.8 to later versions so new software like turbo tax will work

    how do I upgrade from Mac OS 10.5.8 to later versions so new software like turbo tax will work?

    Upgrade Paths to Snow Leopard, Lion, and/or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99. To access the App Store you must have Snow Leopard 10.6.6 or later installed.
    Upgrading to Snow Leopard
    You must purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s MobileMe service; fees and
               terms apply.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mountain Lion, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.
    Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer)
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer)
             3. MacBook Pro (Mid/Late 2007 or newer)
             4. MacBook Air (Late 2008 or newer)
             5. Mac mini (Early 2009 or newer)
             6. Mac Pro (Early 2008 or newer)
             7. Xserve (Early 2009)
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.
         For a complete How-To introduction from Apple see Upgrade to OS X Mountain Lion.

  • How to install safari for mac .... after deleting it

    how to install safari for mac .... after deleting it
    so i had a mallwere saying call the x number so that we can fix ur safari and i didnt call them because its not  a USA number . so i had to delete the safari from my mac ... now i want to install it again ... and am not able to do that can someone help me out with that ? thanks...
    Karam

    You will have to reinstall OS X. In the future ignore such things. Don't click on any links or dial any phone numbers. They are all phishing scams.
    Deleting Safari was not a solution.
    Remove Browser Pop-up Problems
         AdwareMedic
         Adblock Plus 1.8.9
         remove adware that displays pop-up ads and graphics on your Mac

  • HT200027 I am still running Leopard Mac OS X 10.5.8.  How can I get Lion Mac OS X 10.6, so I can update to Mountain Lion?

    I am still running Leopard Mac OS X 10.5.8.  How can I get Lion Mac OS X 10.6, so I can update to Mountain Lion?

    Upgrading to Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99. To access the App Store you must have Snow Leopard 10.6.6 or later installed.
    If you need to purchase Snow Leopard you can still purchase a copy from Apple's online store's telesales agents.[1-800-MY-APPLE (1-800-692-7753) or Customer Service and Sales Support at 1-800-676-2775.] Ask for a Sales Representative.
    Third-party sources for Snow Leopard are:
    Snow Leopard from Amazon.com
    Snow Leopard from eBay
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store.
    If you need to purchase Lion call 1-800-692-7753 or 1-800-676-2775. Ask for a Sales Representative. They will check your Apple ID, and email you a code and instructions.  The cost is $29.99 (as it was before) plus tax.  It's a download.
    Be sure your computer meets the minimum requirements:
    Apple - OS X Mountain Lion - Read the technical specifications.
    Macs that can be upgraded to OS X Mountain Lion
    iMac (Mid 2007 or newer)
    MacBook (Late 2008 Aluminum, or Early 2009 or newer)
    MacBook Pro (Mid/Late 2007 or newer)
    MacBook Air (Late 2008 or newer)
    Mac mini (Early 2009 or newer)
    Mac Pro (Early 2008 or newer)
    Xserve (Early 2009)
    Are my applications compatible?
    See App Compatibility Table - RoaringApps - App compatibility and feature support for OS X & iOS.
    For a complete How-To introduction from Apple see Apple - Upgrade your Mac to OS X Mountain Lion.

Maybe you are looking for

  • Gaming on MacBook pro, should I buy one

    Hi,       My MacBook is now over 5 years old now, and I am thinking about getting a MacBook pro. My MacBook is ok except, I want multitouch gestures and the ability to play games, as my current Mac has intel gma 950 graphics. I am not good with specs

  • No option for hardware virtualization option in bios of DV6 1355dx / Windows 7

    No option for hardware virtualization option in bios of DV6  1355dx / Windows 7. Tried installing some SPs such as sp53216 , sp55068, etc but the extration will warn Cann't check platform ID & had to close the window.  Is there a sure shot patch to t

  • Not seeing iPhotos 'photos' in Photo Library on iPhone.

    I have some photos in the Photos, Events folders in iPhoto. However, they are not in the Photo Library on iPhone. They are in the Photo Stream folder on iPhone.  I am confused they are not showing up in the iPhone Photo library when they are in iPhot

  • Short Dump in table maintenance events

    Dear Experts, I am getting a short dump when i am trying to maintain my Z table. the error is "The statement "MOVE src TO dst" requires that the operands "dst" and "src" are convertible. Since this statement is in a Unicode program, the special conve

  • I Movie error

    Hello, Question regarding IMovie: When I use IMovie, And I end my project, an "error" window appears with the code -error 49, what's le meaning of this error, thanks a lot. Frédéric