Where does javafx.io.Storage resources end up?

My first post here ...
Well I have made an Desktop application where I use javafx.io.Storage and javafx.io.Resurse. First I thought that I would find the file in my directory tree of my JavaFx desktop app, but it did not. I am using Mac os X and I have tried to look everywhere on my disk and I can not find anything on my disk that has have the same file name as my Storage:
m_entry = Storage {
   source: "bldconfig.xml"
}I can load and save data to the file, that is no problem. But it would be interesting to know where the data is ending up if I ever need to delete the file or the data. It would be good to know this for all platforms actually.
Thank you in advance

I played a bit with this API when JavaFX 1.2 was out. I found out where the data was stored, but for Windows XP... I used Sysinternals' ProcMon to watch hard disk activity and spot where data was written... Perhaps you have a similar tool for Mac? Or can deduct destination from my findings...
Here is the code I used:
// Introduced in JavaFX 1.2
import javafx.data.Pair;
import javafx.util.Properties;
import javafx.io.Storage;
import javafx.io.Resource;
import java.io.FileOutputStream;
import java.io.FileInputStream;
def FILE_NAME = "properties.java.txt";
def propFile = Storage { source: "properties.jfx.txt" }
var pairSequence: Pair[] =
     Pair { name: "WWW", value: "HTML" }
     Pair { name: "Sun", value: "JavaFX" }
     Pair { name: "Adobe", value: "Flex" }
     Pair { name: "Microsoft", value: "Silverlight" }
     Pair { name: "WWW", value: "Ajax" }
     Pair { name: "French", value: "Àvéc dès âccênts àrbîtrâïrês !" }
     Pair { name: "Français", value: "Yes, I am..." }
     Pair { name: "A=B", value: "true" }
     Pair { name: "Foo Bar", value: "false" }
     Pair { name: "#Foo", value: "bar" }
// Note that WWW is twice in the sequence!
var propsOut: Properties = Properties {};
function PutPair(props: Properties, pair: Pair)
     props.put(pair.name, pair.value);
for (pair in pairSequence)
     print("{pair.name} ");
     PutPair(propsOut, pair);
println("");
// Writes information in source's path
var fosJ: FileOutputStream = new FileOutputStream(FILE_NAME);
propsOut.store(fosJ);
fosJ.close();
// Writes information in C:\Documents and Settings\PhiLho\Sun\JavaFX\Deployment\storage\muffin\
// with a 78e9b9eb-1b6c06c9 (for exampe) file holding the data and a 78e9b9eb-1b6c06c9.muf
// pointing where to extract temporarily the file (in the place where the .class files are).
// Obviously, path is for Windows XP, will vary for other systems
var fosJFX = propFile.resource.openOutputStream(true);
propsOut.store(fosJFX);
fosJFX.close();
// We loose one WWW
var propsIn: Properties = Properties {};
var fisJ: FileInputStream = new FileInputStream(FILE_NAME);
propsIn.load(fisJ);
fisJ.close();
println("{propsIn.get("Sun")} / {propsIn.get("WWW")} / {propsIn.get("French")} / {propsIn.get("Français")} / {propsIn.get("A=B")} / {propsIn.get("#Foo")}");
var fisJFX = propFile.resource.openInputStream();
propsIn.load(fisJFX);
fisJFX.close();
println("{propsIn.get("Sun")} / {propsIn.get("WWW")} / {propsIn.get("French")} / {propsIn.get("Français")} / {propsIn.get("A=B")} / {propsIn.get("#Foo")}");Not rocket science, but interesting... :-)

Similar Messages

  • When you create new row where does it go?anywhere/end/first??

    Just wondering does anyone know when you create a new row where is it popped on? is it the beginning, the end or is it popped on randomly?
    Would really, really appreciate a response!! I'm stuck on this :-(

    In order to be certain that the records are properly ordered use the order by clause
    in your view object definition....otherwise your records may be randomly appeared....
    Sim

  • Where does the converted document get saved to?

    After the PDF doc is converted to word and I hit save, where does the saved/converted document end up?

    Wherever your browser is configured to save files to by default or the location you select.
    I would suggest searching for the file name (without extension) through Windows Search or Spotlight.
    If you're having difficulty saving the files at all, I'd suggest trying the troubleshooting steps outlined here: http://forums.adobe.com/docs/DOC-1831
    Let us know how it goes!
    -David

  • When I capture a still frame froma video in Llightroom 4.3, where does the captured frame end up?

    When I capture a still frame froma video in Llightroom 4.3, where does the captured frame end up? I cannot find it. Stan

    It will be right next to the movie in your library and the jpg file will end up on your hard disk right next to the movie file. You can see the actual file by right (or control) clicking on the image in the library view and selecting "show in Finder/Explorer"

  • Where does  the control moves at first at END-OF PAGE  or  END-OF-SELECTION

    Is END-OF PAGE triggered  like TOP-OF-PAGE from the AT-SELECTON-SCREEN  automatically with a write statement & where does  the control moves at first
    at END-OF PAGE  or  END-OF-SELECTION?

    Hi,
    1. End-of-selection:
    This event is triggered after the start-of-selection. to display the contents on the report.
    2.Top-of-page: Every time a new page is triggered. Mainly this is used for header of the report.
    3. End-of-page : every time the list data reaches the footer region of the page.
    This way first data is disaplyed then it reaches the footer..
    first End-of-selection then End-of-page
    These example may help u in detail...
    Leaving Event Blocks Using STOP
    If you use the STOP statement within an event block, the system stops processing the block immediately. The ABAP runtime environment triggers the next event according to the following diagram:
    Before and during selection screen processing, the next event in the prescribed sequence is always called. From the AT SELECTION-SCREEN event onwards, the system always jumps from a STOP statement directly to the END-OF-SELECTION statement. Once the corresponding event block has been processed, the system displays the list.
    The following program is connected to the logical database F1S.
    REPORT EVENT_TEST.
    NODES: SPFLI, SFLIGHT, SBOOK.
    START-OF-SELECTION.
    WRITE 'Test program for STOP'.
    GET SBOOK.
    WRITE: 'Bookid', SBOOK-BOOKID.
    STOP.
    END-OF-SELECTION.
    WRITE: / 'End of Selection'.
    This produces the following output:
    Test Program for STOP
    Bookid 00010001
    End of Selection
    As soon as the first line of SBOOK has been read, the system calls the END-OF-SELECTION event block.
    Exiting Event Blocks Using EXIT
    If you use the EXIT statement within an event block but not in a loop, the system stops processing the block immediately. The ABAP runtime environment triggers the next event according to the following diagram:
    Before and during selection screen processing, the next event in the prescribed sequence is always called. From the START-OF-SELECTION event onwards, the system starts the list processor directly when the EXITstatement occurs, and displays the list.
    If the EXIT statement occurs inside a DO, WHILE, or LOOP loop, it is the loop that terminates, not the processing block.
    The following executable program is connected to the logical database F1S.
    REPORT demo_program_exit_1.
    NODES: spfli, sflight, sbook.
    START-OF-SELECTION.
    WRITE 'Test Program for EXIT'.
    GET sbook.
    WRITE: 'Bookid', sbook-bookid.
    EXIT.
    END-OF-SELECTION.
    WRITE: / 'End of selection'.
    This produces the following output:
    Test Program for EXIT
    Bookid 00010001
    After the first line of SBOOK has been read, the list is displayed immediately.
    The following executable program is connected to the logical database F1S.
    REPORT demo_program_exit_2.
    NODES: spfli, sflight, sbook.
    DATA flag(1) TYPE c.
    AT SELECTION-SCREEN.
    IF carrid-low IS INITIAL.
    flag = 'X'.
    EXIT.
    ENDIF.
    START-OF-SELECTION.
    IF flag = 'X'.
    WRITE / 'No input for CARRID'.
    EXIT.
    ENDIF.
    GET spfli.
    GET sflight.
    GET sbook.
    END-OF-SELECTION.
    WRITE / 'End of Selection'.
    If the user does not enter a value for CARRID-LOW, the output appears as follows:
    No selection made for CARRID
    After the first EXIT statement, the next START-OF-SELECTION event is triggered. After the second EXITstatement, the output list is displayed.
    Regards.

  • When you download an audiobook from iTunes - where does it end up on my device?

    When you download an audiobook from iTunes - where does it end up on my device?

    Music app>Other>Audiobooks

  • If I make a copy of an e-mailed attachment , where does it go and how do I access it?

    If I make a copy of an e-mailed attachment document, where does it go and how do I access it?

    i actually got it figured out. I have multiple email accounts i have to use due to different corporate offices ( which can be a real headache at times). The exchange account is an active server used by Hilton and its an actual account. What was happening is my mail was getting kicked back to their server for storage. Once I contacted Hilton, they corrected it on their end. Thanks for trying to help out.

  • Where does flex builder keep refererences to the flex projects?

    Where does flex builder keep refererences to the flex projects?
    I'm getting an error like this on FB3 startup:
    The folder PR System Intranet does not exist in the workspace so the reference must be somewhere else.
    thanks
    !SESSION 2009-11-02 09:47:52.203 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.5.0_11
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB
    Command-line arguments:  -os win32 -ws win32 -arch x86
    !ENTRY org.eclipse.core.resources 2 10035 2009-11-02 09:47:53.610
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !ENTRY org.eclipse.core.resources 4 567 2009-11-02 09:47:53.829
    !MESSAGE Workspace restored, but some problems occurred.
    !SUBENTRY 1 org.eclipse.core.resources 4 567 2009-11-02 09:47:53.829
    !MESSAGE Could not read metadata for 'PR System Intranet'.
    !STACK 1
    org.eclipse.core.internal.resources.ResourceException: The project description file (.project) for 'PR System Intranet' is missing. This file contains important information about the project. The project will not function properly until this file is restored.
    at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSystemResourceMan ager.java:663)
    at org.eclipse.core.internal.resources.SaveManager.restoreMetaInfo(SaveManager.java:792)
    at org.eclipse.core.internal.resources.SaveManager.restoreMetaInfo(SaveManager.java:772)
    at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:663)
    at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1319)
    at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1949)
    at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1713)
    at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:363)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:9 99)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:993)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 74)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :111)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    !SUBENTRY 2 org.eclipse.core.resources 4 567 2009-11-02 09:47:53.829
    !MESSAGE The project description file (.project) for 'PR System Intranet' is missing. This file contains important information about the project. The project will not function properly until this file is restored.
    !ENTRY org.eclipse.osgi 4 0 2009-11-02 09:47:53.860
    !MESSAGE An error occurred while automatically activating bundle org.eclipse.core.resources (161).
    !STACK 0

    Thanks but that file contains things like
    <?xml version="1.0" encoding="UTF-8"?>
    <actionScriptProperties mainApplicationPath="main.mxml" version="3">
    <compiler additionalCompilerArguments="-services &quot;X:\Coldfusion9\wwwroot\WEB-INF\flex\services-config.xml&quot; -locale en_US" copyDependentFiles="true" enableModuleDebug="true" flexSDK="Flex 3.2" generateAccessible="true" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="true" htmlPlayerVersion="9.0.28" htmlPlayerVersionCheck="true" outputFolderPath="Staff_Ratings-debug" sourceFolderPath="src" strict="true" useApolloConfig="false" verifyDigests="true" warn="true">
    <compilerSourcePath>
    <compilerSourcePathEntry kind="1" linkType="1" path="H:/flash"/>
    </compilerSourcePath>
    <libraryPath defaultLinkType="1">
    <libraryPathEntry kind="4" path=""/>
    </libraryPath>
    <sourceAttachmentPath/>
    </compiler>
    <applications>
    <application path="main.mxml"/>
    </applications>
    <modules/>
    <buildCSSFiles/>
    </actionScriptProperties>
    I don't see how FB3 knows about the
    Pr System Intranet
    project that seems to be the cause of the errors.

  • Random Vectors/images color inverted in print, but not in PDF. Where does the fault lie?

    Sent a PDF to the newspaper printer and some of the images had inverted/strange colors. However...
    In one case I had duplicate images of a pink vector flower. SOME of the flowers were inverted, to a dark blue/black, and some were fine(pink). These were embedded vectors.
    In other instances vectors, went from orange to blue/black, pink to blue/black, and yellow/white to blue black. I specify because in one vector image, a ring, the ring was yellow, but the diamond was white, and it all changed to the same blue/black in print.
    Finally, there were two greyscale Tiff photographs of a pair of ladies. These are not embedded, and have not been altered at all and since the last time this paper has been printed, (which printed fine). This time, they were inverted. Nothing else on the page was inverted.
    As far as I can tell, there is not a separation issue, and I have saved the file from InDesign CC to pdf using the same settings as dozens of times before. The pdf on my end looks fine. The printer says they just print what they receive, but as far as I can tell, there is no issue on our end. The fact that some duplicated images printed fine, and others did not seem to confirm this. Everything is properly linked. Has anyone else experienced this problem? Is this a pdf, InDesign, or even an adobe problem at all, or it is something on their end? I have heard of inverted colors before, but can't find a solution (especially as I can't even see the problem on my end.)
    Using Windows 8, up-to-date InDesign CC, and Acrobat Pro, Illustrator CS6 ver.16.2.0 64bit
    I have no idea what the printer uses.

    Where does the fault lie? - in an environment where they (the newsprinter) collect up front, have no responsibility for quality and arrogantly believe, perhaps correctly, that you'll be back with another paying job in the future.
    Check the file you sent via Acrobat Preflight or Output Preview for RGB elements.
    Check the file you sent via Acrobat Preflight - Checks - For Transparency Used
    Do any of these elements off color involve rgb or interact (with or near) any transparency?
    (InDesign could show these attributes via the links panel or a Live Preflight. Both can be (probably should be in your case) changed via the PDF Export)

  • Where Does documents gets stored using FM SO_DOCUMENT_INSERT_API1

    Hi All,
    I am using FM SO_DOCUMENT_INSERT_API1 to store document from WD interface. Now I have couple of questions
    1) Is this FM creates a sap office document
    If yes how do I transfer SAP office documents storage from table SOFFCONT1 (default) to external content server.
    Now If its a sap office document I have refereed this [link|Re: Generic Object Services]
    and when I go to change storage catagory and change document area in transaction OACT to document management system it gives me prompt Repository SOFFDB does not have an explicit document area.
    Please clarify over above two points.
    Thanks in Advance
    Umang

    Sorry, by mistake the same thread was opened twice. please respond / follow the thread
    Where Does documents gets stored using FM SO_DOCUMENT_INSERT_API1
    Cheers!!!
    Umang

  • Where does Keynote store the audio files in a presentation

    I have slides with individual audio files. When I import or attach the file and then save the presentation, it changes the file name to .mov extension. Where does Keynote store those files? I would like to edit the saved Keynote version, but cannot locate the .mov file!

    I'm not exactly sure of what you want to do, and I'm not sure if my answer is the most efficient, or even wholly correct, but here goes ...
    When you save a KN presentation (a KN doc) which includes an audio (or movie) file, you can save it 2 (3?) ways: either without or with the file being copied into the document, or as a "package". In a test file I just made with 3 white slides (title, slide with song, second slide with song) the results:
    without: 3.8 MB; with: 9.4 MB; package: 9.4 MB. The essential difference, aside from size, is that if saved without, if you play the KN on another machine which doesn't have those audio files on it, the audio won't be there. To make the KN truly portable, you must save with, or as a package. (I'm not too sure of the concept of package in KN. In PP, saving as a package means you end up with a folder, which contains the PP and the media files, each as separate entities. Saving a KN package yields not a folder but a file, which looks to me identical to the result achieved by simply saving with, and seems to behave identically, as well.) The audio file you used will in any case remain where it was before you used it, but, if the KN doc is saved with, or as a package, a copy of it will go into the KN doc.
    But then, what do you mean by "edit"? What do you want to edit, the KN presentation, or the audio file within it? If the former, I don't understand where the problem might be. If the latter: using the QT inspector within KN, you can change the length of the audio file (where in the song it starts and stops), whether to start it on click, or automatically after transition, or to loop it. If you wanted to do some other, more exotic audio editing, like reverbs or other effects, I'd do that on (a copy of) the original audio file (found wherever it was before) with another app (GarageBand, for instance), and then I'd replace the first, non-edited, version of the audio file in the KN doc with that.
    Have I missed something?
    Message edited by gbdoc: maybe someone will chime in to clarify the difference between "saved with" and a "package"

  • Where does iPhone configuration utility store data?

    Where does iPhone configuration utility store profiles and other data on the system? I know you can export the individual profiles to back them up, but I would like to just backup the entire iPhone Configuration Utility storage location.

    Thanks for the reply. It helped me get more information on where to find it on the Mac. Here's the location for the Mac if anyone else needs the information:
    Your home folder > Library > MobileDevice
    There are folders in the "MobileDevice" folder that contain data for iPhone Configuration Utility (configuration profiles, device information, etc.)

  • Drag And Drop from Browser to time line  - where does audio go

    When i drag and drop a clip from the browser or from the viewer directly onto the timeline as an simple superimpose, if there is not enough room for the stereo tracks ie( i LOCK OUT MOST OF THE TRACKS because i work mostly voiceover and not with raw voice in.) WHere does FCE put the sound ? in some cases i get one track in other cases it splatters it around to any available track but not always etc-- I am curious if it ends up anywhere that would come back to bite me in the end- I don't need the sound so even if i get some in i immediately delete it . Is there a way of breaking the link between video and audio before dropping it on to the timeline?

    actually the situation is the instructions say that mono voiceovers will go to track selector a2 -- but they don't - they go every which where unless you can actually pick the a2 track selector and move it to where you want to- However if it isnt showing you cant choose it and hence the mono voiceover gets splattered on whichever track the program thinks is fine-- which is NOT fine.

  • What's the Deal with the iPhone Backup? Where Does It Back Up to?

    When my iPhone does its backup thing (and gee I wish I could turn that off permanently but nothing seems to stick in the preferences... have to stop it manually in iTunes each time... anyway...), where does the backup reside? It takes a couple of hours to do a backup, so I'd think there was a lot of actual content being moved to my Mac. But there's 14GB of content on my iPhone and my hard drive isn't losing 14GB of storage space... not even 100MB from what I can tell!
    So what's really happening during a "backup"? If I wipe the content off my iPhone with a restore, where will the backup content come from?

    On a Mac, the iPhone's backup file is stored at Home > Library > Application Support > MobileSync > Backup.
    The iPhone's backup stores data such as most iPhone settings, SMS messages, email account settings, notes, recent calls, call favorites, 3rd party applications or some 3rd party applications and any data created/stored by a 3rd party application, and photos captured by your iPhone.
    The backup does not store iTunes content, contact information, bookmarks, or photos transferred from your computer to your iPhone. This data should be available on your computer.
    Basically the iPhone's backup stores all data not included with the sync process.
    When performing a Restore with iTunes, the options are to restore your iPhone from your iPhone's backup, or as a new iPhone or not from your iPhone's backup.
    If you constantly cancel the backup process, this may cause the backup to become corrupt and if you never allow it to finish, you won't be able to restore what should be saved with the backup.
    How many 3rd party applications do you have installed and regularly use that create/store data?
    And do you have a number of photos that were captured by your iPhone available that have not been imported by your computer and then erased from your iPhone as with any other digital camera?
    If so and you regularly capture more photos, these are included with the backup.

  • Backing up my ipod touch...where does it all go?

    So, my iPod touch has a bunch of music on it, and I don't have it all on this laptop. It was on my laptop that my school gives me during the school year but takes it for the summer. I have a lot of music in my itunes on my home laptop, but not all of the stuff on my iPod. I manually went and right-clicked my iPod in itunes and clicked "back up", and it took some time and supposidly backed it all up. Where does itunes store it? I found one of the folders but my computer doesn't recognize any of the files. Is this like a special coding itunes puts on the files so that only it can decode them? Bottom line is, if I end up restoring my iPod from the backup I just manually made, will all my music on my iPod, from school and home laptops, be put back on my iPod? Thanks for any help!

    The backup that itunes performs does NOT include music or apps or movies or videos.
    All of your music should be on your computer.  Sync it back to the ipod.

Maybe you are looking for

  • Gallery problems and photo export issues with all images JPG Raw damaged.

    I'm starting to panic. I trusted Aperture 3 and upgraded entire library from Aperture 2.0. Yesterday I uploaded new project from a photoshoot. and today is gone. Just like that. I did some export already before from that project so I know that it was

  • How to implement a custom UI control

    I need to display interactive maps on the Windows SAP GUI. The maps are dynamically generated and fetched from an external map server using ABAP. The interactive map should be scrollable and allow the user to select a single or multiple POIs (Point O

  • Send/Receive multiple attachments using SwA (no MTOM)

    Hello all, I would appreciate if someone can put me in the right direction about the following implementation: - web service method able to receive multiple attachment using weblogic tools (wsdlc, jwsc) without MTOM. I tried JAXRPC and JAXWS, startin

  • PDF Pages to Artboards error

    So, I searched the forums on opening a multi-page pdf with all the pages on art boards, found a link to download a script "PDF Pages to Artboards". Once i downloaded it on my desktop i placed it in my dock (Mac), then dragged the multi-page pdf file

  • Converting Access application after migrating SQL Server database

    I have used migration workbench to migrate an access database and application. I now have sql server databases with access applications that need to be migrated. How can I convert the access applications that currently use sql server as a database? I