Pause workflow until embedded applescript application is complete

I have a multi-step automator workflow that has an embedded "Launch Application" step that calls an applescript application that I've written.  The application goes through a list of URLs.  I don't want the workflow to start with the next step until my application has cycled through all the URLs.  Currently, I have hard coded a pause into the workflow, but I'm looking for something more precise (if I set the pause too long, it results in unnecessary delays, if I set it too short, my workflow gets messed up).
I'm assuming there is some way to modify my application and/or the workflow to send a complete status that can trigger the next step in my workflow.

Or get the 3rd party action called, Wait for Finder Items.
This should work.

Similar Messages

  • Filter by Variable - Embedded Applescript in Automator

    I'm trying to make a workflow which when run will: Search my Downloads folder for .ash and .txt files, then search for files with the same name (and extension) in another folder (and its subfolders) called "New Location", and then move the new files from Downloads to the same place in "New Location" as the old files, replacing them.
    *Currently my workflow looks like:*
    •Get Value of Variable: Downloads folder
    •Get Folder Contents
    •Filter Finder Items +(for items with extension .txt or .ash)+
    •Run Applescript 1 +(outputs first .txt or .ash file in Downloads folder)+
    •Set Value of Variable: "File Name" +(Name of the new file. Could be the file itself if I need it to be)+
    •Run Applescript 2 +(outputs file in "New Location" with same name as newly downloaded File)+
    •Set Value of Variable: "The File" +(The file to be replaced)+
    •Run Applescript 3 +(returns folder containing file in "New Location", may be "New Location" or one of its subfolders)+
    •Set Value of Variable: "Container Folder"
    •Get Value of Variable: "The File"
    •Move Finder Items: To "Container Folder"
    *Applescript 1*
    on run {input, parameters}
    set theFile to item 1 of (input)
    theFile
    end run
    *Applescript 2*
    on run {input, parameters}
    set theFile to item 1 of (input)
    tell application "Finder" to set filename to (name of theFile) as text
    filename
    end run
    *Applescript 3*
    Having trouble with this one. It needs to get the contents of "New Location", including the contents of its subfolders, but not the folders themselves, then filter those items to find the one (and there will only be one) with the same name as the downloaded file, and finally pass that on to the next action as a file (as opposed to text).
    I originally tried using Get Specified Finder Items and then Filter Finder Items, but I can't filter by a variable. Which is what led me to try an embedded Applescript. Unfortunately I have no scripting experience, beyond what I picked up on the fly. The scripts above are bits and pieces I snipped and edited from other scripts I found on the web.
    Thanks for your help!
    Message was edited by: Boxes are Cool

    Only one problem, I duplicated an ash file to downloads (and modified part of it to differentiate the copies) to test it, but the script doesn't seem to be setting it as "theNewFiles", with the variable returning {}. Any ideas? Or am I doing something wrong?
    I really don't know. The script seems to work flawlessly in all my tests. Did you choose the right folder, the one called “New Location”, when asked by the script to choose a folder? Did the script work with some other files?
    I'd also like to be able to run the script without intervention (possibly even as a folder action script)
    Then the “choose folder” statement should be replaced with something like “set newLocation to POSIX file "/Users/curtisblack/Documents/New Location"” for example. The new Folder Action script (which should be attached to the Downloads folder) might then look like follows:
    --BEGINNING OF SCRIPT
    on adding folder items to thisFolder after receiving theseItems
    set newLocation to POSIX file "/Users/curtisblack/Documents/New Location" -- or some other location
    tell application "Finder"
    set theNewFiles to files of thisFolder whose name extension is in {"txt", "ash"}
    repeat with thisFile in theNewFiles
    set thisName to name of thisFile
    set theOldFiles to (files of the entire contents of folder newLocation whose name is thisName)
    if theOldFiles is not {} then
    move thisFile to container of item 1 of theOldFiles with replacing
    end if
    end repeat
    end tell
    end adding folder items to
    --END OF SCRIPT
    Message was edited by: Pierre L.

  • How to pause script until

    i have a script that is used to convert avchd files to qt formats.
    it's got a problem, though, in that it moves from the currently
    converting file to the next file too quickly. i thought i'd solved
    this behaviour by including a routine that caused the script to
    wait until it saw the qt file appear before moving on. problem is
    now that, in the case of large files, the qt appears before it's
    really finished converting and made usable, as if the container is
    placed in the folder but is still being filled with the file contents
    when the script moves on to the next file. since only one file can
    be processed at a time, the script crashes at that point.
    can anyone suggest a method for testing that these large files are
    really complete before the script moves on?
    thanks,
    BabaG

    The first approach would be to see what AppleScript support is built into the application you're using to convert the AVCHD files.
    You may find the app has support for this, either by invoking some kind of 'convert' command (which would typically return a reference to the converted movie), or by providing some kind of application status (e.g. 'idle', 'processing', etc.) which you could poll until it indicates it's completed.
    If that fails and the app isn't scriptable then your next best bet is to look at more detail at the output file. For example it's likely that the file gets created and the data written to it, and it's this writing stage that's taking time. The easiest approach then is to get the size of the file, wait a second or two, then check the file size again. If the size is increasing you know it's still being created. If the size is static then you can assume it's completed and you can continue your script, e.g. assuming your output file is in the variable output_file:
    set done to false
    set previous_size to 0
    repeat until done = true
      set file_size to size of (info for output_file)
      if file_size > previous_size then
        set previous_size to file_size
        delay 1 -- wait a second before checking again
      else
       set done to true
      end if
    end repeat
    -- rest of code here

  • XCode AppleScript Application Mouse Issue

    Hi Everyone,
    Well I'm completely stumped. I'm trying to write a simple AppleScript application in XCode that looks for mouse enter events onto an NSImageView. I have all the code in place to do this correctly but the problem is that the mouse enter event don't start getting sent until I display a dialog then come back to the main window. From this point everything works fine. I just don't want to have to display a dialog each time I start the app.
    Does anyone have any ideas?
    Chris

    Hi Thomas,
    Sorry about that. It just doesn't respond to clicks in my old version. I made a simple project with just the image view and connected all mouse events to it except the right clicks and it works here.
    on mouse down theObject event theEvent
    log "mouse down"
    end mouse down
    on mouse entered theObject event theEvent
    log "mouse entered"
    end mouse entered
    on mouse exited theObject event theEvent
    log "mouse exited"
    end mouse exited
    on mouse up theObject event theEvent
    log "mouse up"
    end mouse up
    on mouse dragged theObject event theEvent
    log "mouse dragged"
    end mouse dragged
    Hope you get it fixed.
    Edited: Just thought of something people say they do when the project acts buggy. Clean all targets whatever that does.
    gl,

  • Problem with shell commands and scripts from an Applescript Application

    Hi-
    I am fairly new to OSX software development. I am trying to build an application that creates a reverse SSH tunnel to my computer and starts OSXvnc. The idea is that my Mom or anyone else who needs help can connect to me without having to tinker with their firewalls.
    There are plenty of resources on how to do this, and I have found them. What I have a problem with is the following.
    I am building this application in Xcode as an Applescript application, because Applescript and shell scripting are the only forms of programming I know. I use an expect script to connect through SSH, and a "do shell script" for the raw OSXvnc-server application to allow screen sharing.
    The problem is that when I click on the button to launch OSXvnc-server or the button to launch SSH, the application freezes until the process it spawns is killed or finishes. For example, I can set SSH to timeout after 60 seconds of no connection, and then the Applescript application responds again. I even tried using the ssh -f command to fork the process, but that doesn't seem to help.
    I am also using "try" around each of the items.
    What am I doing wrong? How can I make the buttons in my app launch SSH and OSXvnc-server without hanging the application while it waits for them to finish?
    Thanks so much!

    See here for an explanation of the syntax.
    (20960)

  • Microsoft Excel is waiting for another application to complete an Ole actio

    When I access Data Manager, I get the error message: "Microsoft Excel is waiting for another application to complete an Ole action."  When I click OK, I get another error: "Cannot download the dimension list from server.  Timeout expired.  The timeout period elapsed prior to obtaining a connection from the pool.  This may have occurred because all pooled connections were in use and max pool size was reached."  It never used to happen until recently.  I don't know what to tell the IT guys to do.  Thanks.

    This is a known error in V5. I have had this error at almost every V5 customer.
    The following solution (got it from support) solves it permanently.
    Changes have to be made to the outlooksoft.config file and the connectionstrings in tblappsetinfo. Be sure to restart the server(s) after applying these changes.
    1. In outlooksoft.config file of x:\OutlookSoft\Websrvr\bin folder on the web server change the following line:
    <add key="Database_AppServerDBConn" value="Server=<servername>;Database=AppServer;Trusted_Connection=True;"/>
    to
    <add key="Database_AppServerDBConn" value="Server=<servername>;Database=AppServer;Trusted_Connection=True;pooling=false"/>
    Please note that where I have <servername> you should put the name of your server ****
    Also, add the pooling=false; to every connection string in tblappsetinfo.
    I am sure this helps,
    Regards,
    Alwin Berkhout

  • Xcode AppleScript Application: 2 Sent Actions To 1 Button

    Hello,
         I am making a Xcode AppleScript application, and when I press a button, it opens a new window. I open the new window with the sent action makeKeyAndOrderFront and set it to another window. However, the main window is still open. I want to connect the same button that opens the new window to the sent action perfromeClose but it completely changes the sent action instead of adding another one. Also, the window I want to close is the main window the application starts with and the release application when closed setting is off. If there is any way to open a new window and close another at once, I would like to know. 

    Okay. So this is what I have for the switchWindow:
    on switchWindow_(sender)
            current application's NSApplication's mainWindow's orderout:me -- close main app window
            otherWindow's makeKeyAndOrderFront:me2 -- bring some other window to the front
        end switchWindow:
    When I change the makeKeyAndOrderFront:me to the me2 identifier since that is the identifier I set for the window, it still does the same thing when it is just me, it seems to close the main window and the open it again. I tried looking at makeKeyAndOrderFront on the Class Reference and it only says to put the where me is. Also the me by itself is a purplish colour, but me2 is just black.

  • Disable error message in applescript application

    I have an applescript application that basically tests for a certain condition.  If that condition is met, it does one task.  If there is an error, it performs another task.  The problem is that when it runs as an application, if it runs into the error, it pops up a message box with that error.  I would like it to just continue to the portion of what to do when the error occurs and not bother the user unless really needed. 
    Here's the script I've made into an application that this is occuring in (was originally found on some other forums and modified for our need):
    try
      -- test for Kerberos ticket presence and attempt to renew
              set kerb to do shell script "/usr/bin/klist | /usr/bin/grep krbtgt"
    on error
              try
                        set renewKerb to do shell script "/usr/bin/kinit -R"
              on error
                        set ping to do shell script "ping -o -q xxxx.xxxxxx.com"
                        --Server name change to protect our innoconce.
                        if not (ping is equal to "") then
      -- offer to renew Kerberos ticket
                                  set response to (display dialog "Your Kerberos ticket has expired. Would you like to authenticate to generate a new ticket?" with icon 2 buttons {"No", "Yes"} default button "Yes")
                                  if button returned of response is "Yes" then
                                            try
                                                      set thePassword to text returned of (display dialog "Enter your logon password:" default answer "" with hidden answer)
                                                      do shell script "/bin/echo '" & thePassword & "' | /usr/bin/kinit"
                                                      display dialog "Kerberos ticket acquired." with icon 1 buttons {"OK"} default button 1
                                            on error
                                                      try
                                                                set thePassword to text returned of (display dialog "Password incorrect. Please try again:" default answer "" with icon 2 with hidden answer)
                                                                do shell script "/bin/echo '" & thePassword & "' | /usr/bin/kinit -l 10h -r 10h --password-file=STDIN"
                                                                display dialog "Kerboros ticket acquired." with icon 1 buttons {"OK"} default button 1
                                                      on error
                                                                display dialog "Too many incorrect attempts. Stopping to avoid account lockout." with icon 2 buttons {"OK"} default button 1
                                                      end try
                                            end try
                                  else -- if No is clicked
                                            quit
                                  end if
                        else
      quit
                        end if
              end try
    end try

    I think I figured it out.  I added another try on error on the ping part and it fixed the issue.  The error was showing up on the ping part so it should be ok now.

  • How to call an applescript application from Office 2011 Excel VBA

    All:
    I have been pounding my head how to implement a working VBA application into the Mac environment. I have tried a number of approaches calling applescript from VBA. I would like to call my applescript application and pass one argument. My applescript application is as follows:
    <code>
    on run argv
    set theURL to (item 1 of argv)
    set p_path to do shell script "echo ~"
    set m_path to POSIX file p_path
    set theName to text -((offset of "/" in (reverse of characters of theURL) as text) - 1) thru -1 of theURL
    set theFile to (p_path & "/Downloads/" & theName)
    set macPath to (POSIX file theFile)
    do shell script "/usr/bin/curl " & theURL & " -o " & quoted form of POSIX path of macPath
    end run
    </code>
    My last attempt within VBA is:
    <code>
    Sub SaveMetaDataFile(URL As String, shortFileName As String)
    Dim scriptToRun As String
    Dim posixcmd As String
    posixcmd = ThisWorkbook.Path
    scriptToRun = "tell application " & posixcmd & ":MetaDataFileDownloadScript.app " & URL
    MsgBox "[" & scriptToRun & "]"
    MacScript (scriptToRun)
    </code>
    I first tried to call the script directly without the "tell application" and I still obtain an error. I also tried the following in VBA and I get the same error with the last lane of code:
    <code>
    scriptToRun = "set theURL to " & """" & URL & """" & Chr(13)
    scriptToRun = scriptToRun & "set p_path to do shell script " & """" & "/bin/echo ~ " & """" & Chr(13)
    scriptToRun = scriptToRun & "set m_path to " & """" & posixcmd & """" & Chr(13)
    scriptToRun = scriptToRun & "set theName to " & """" & shortFileName & """" & Chr(13)
    scriptToRun = scriptToRun & "set theFile to (p_path & " & """/Downloads/""" & " & theName)" & Chr(13)
    scriptToRun = scriptToRun & "set macPath to (POSIX file theFile)" & Chr(13)
    scriptToRun = scriptToRun & "do shell script " & """" & "/usr/bin/curl " & """" & " & " & " theURL " & " & " & """" & " -o " & """" & " & " & " quoted form of POSIX path of macPath"
    MsgBox scriptToRun
    'scriptToRun = scriptToRun & "do shell script " & """/usr/bin/curl """ & " & " & " theURL " & """ -o """ & " & " & " quoted form of POSIX path of macPath"
    MacScript (scriptToRun)
    </code>
    The above code is from the applescript application. The applescript application works well using the terminal via osascript. For example:
    xenas-imac:Census Work Xena$ osascript MetaDataFileDownloadScript.app http://www2.census.gove/acs20095yr/summaryfile/Sequence_Number_and_Table_numberLookup.xls
    xenas-imac:Census Work Xena$
    The whole goal is to download a file into the Download directory from Excel to allow the next step to import the file into Excel for the user. Any help here would be great!
    Thank you;
    Lori

    Update:
    Ok have the module almost working and matches the syntax within the test applescript I had created, but the VBA code via the MacScript() call is generating an invalid procedure or argument call. The following is the test applescript to compare the created string to be passed to VBA MacScript() function:
    <code>
    set appPath to quoted form of POSIX path of "Macintosh HD:Users:Xena:Desktop:Census Work:"
    do shell script "/usr/bin/osascript " & appPath & "MetaDataFileDownloadScript.app " & "http://www2.census.gove/acs20095yr/summaryfile/Sequence_Number_and_Table_numberLookup.xls"
    </code>
    The following is the VBA module that generates the above word for word as far as I can tell:
    <code>
    Sub SaveMetaDataFile(URL As String, shortFileName As String)
    Dim scriptToRun As String
    Dim posixcmd As String
    posixcmd = ThisWorkbook.Path
    posixcmd = posixcmd & ":"
    scriptToRun = "set appPath to quoted form of POSIX path of " & Chr(34) & posixcmd & Chr(34) & Chr(13)
    scriptToRun = scriptToRun & "do shell script " & Chr(34) & "/usr/bin/osascript " & Chr(34) & " & appPath & " & Chr(34) & "MetaDataFileDownloadScript.app " & Chr(34) & " & " & Chr(34) & URL & Chr(34)
    MsgBox "[" & scriptToRun & "]"
    MacScript (scriptToRun)
    End Sub
    </code>
    The message box in the above VBA code matches my test applescript file and I have taken the output of the MsgBox and used it in a test applescript and it works great, but VBA is throwing "Run-time error '5': Invalid procedure call or argument".
    Looking at Microsoft's definition it takes a string argument and I have made sure that scriptToRun is a string type, so at this point I suspect there is something wrong with the MacScript() funciton, or I am missing something above. Is there another way to call an applescript application from VBA outside the MacScript() function? Or is there something I am missing? Any help or suggestions is needed.
    Thank you;
    Lori (CodeXena)

  • So my Ipod touch hasn't been connecting to computer, or charging for a week or two until i turn it off completely and now i try to reset all content and setting, the circle goes round and round for like hrs(24) and it still does not complete the reset

    so my Ipod touch hasn't been connecting to computer, nor charging for a week or two until i turn it off completely and now i try to reset all content and setting,(thinking it may connect to the computer and itunes and also charge) but the circle goes round and round for like hrs(24) and it still does not complete the reset.
    pls pls pls pls help .
    i have tried alot of solutions, but non of them have worked.

    Have you tried walking it into the nearest Apple Store and asking for assistance there...?
    I'm guessing you don't have Apple Care on it.

  • Help - "Acrobat is being used by another application and cannot open PDF files until the other application is closed."

    Hello,
    I searched this site and google for this error terminology and come up dry.  I support a user who has been for years using Acrobat 5 (yes, I know...) to read files in a client DB program, as well as other PDF files on their PC.  In the last week or so, they have started gatting this error "Acrobat is being used by another application and cannot open PDF files until the other application is closed." any time they attempt to open a PDF file attached to an email (via Outlook).
    It is my understanding that they cannot upgrade to a newer version of Acrobat because of limitations of their client software, but had not previously had any issues viewing PDF notes from the DB, and PDF attachments in their email.
    I have tried uninstalling and re-installing, as well as tried using Adobe Reader 7 & 9 in conjunction with Acrobat to try to get around this issue, but have not been successful.
    Any ideas?
    Thanks,
    Jesse

    I don't have an answer to your technical problem. The product I assume is Acrobat that you are talking about (based on the post title), Adobe is the company name. This is a good place to ask questions on Acrobat if folks can figure out what you are talking about. They will ask for the product version number (like AA9.3.3), operating system, and other applications if appropriate. Also, just what you are doing that generates the message.
    As for Adobe, you are not likely to get an answer from them here in the user forum. You will be lucky if you can get an answer if you can contact them and not be on hold for more than an hour (sorry, this is why a lot of folks end up in the forum).
    So, to help others try to answer your question, what are the products and versions involved? What OS? What are you doing when the message comes up.

  • How to execute a workflow from a webdynpro application???

    hi friends....
    How to execute a workflow from a webdynpro application???
    we are using ep6, ecc5????

    If you want to start a workflow in the backend, you need to call a RFC that starts it.

  • [svn:osmf:] 10991: Fix bug FM-119, where the playhead time doesn' t get updated until after the seek has completed.

    Revision: 10991
    Author:   [email protected]
    Date:     2009-10-17 22:52:28 -0700 (Sat, 17 Oct 2009)
    Log Message:
    Fix bug FM-119, where the playhead time doesn't get updated until after the seek has completed.  The bug is actually in Flash Player (FP-1705), and the workaround is to wait until NetStream.time gets updated before dispatching the seek completion event.  This changelist also updates the unit tests and NetMocker to verify the fix.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-119
        http://bugs.adobe.com/jira/browse/FP-1705
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISeekable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestSeekableTrait.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStream.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetStream.as

    Revision: 10991
    Author:   [email protected]
    Date:     2009-10-17 22:52:28 -0700 (Sat, 17 Oct 2009)
    Log Message:
    Fix bug FM-119, where the playhead time doesn't get updated until after the seek has completed.  The bug is actually in Flash Player (FP-1705), and the workaround is to wait until NetStream.time gets updated before dispatching the seek completion event.  This changelist also updates the unit tests and NetMocker to verify the fix.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-119
        http://bugs.adobe.com/jira/browse/FP-1705
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISeekable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestSeekableTrait.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStream.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetStream.as

  • Restricted user cannot run applescript application

    I have written an applescript application (locked) for students using iMacs on our win2000 network to dismount pc shares. The applications accessed by the students are restricted via parental controls. When I search and select the application (logout) within the parental controls I get the message 'logout can not be run with the limitations set'. Whilst logout can be run by admin it will not run for the student. Has anyone got any ideas?

    Hi Richard,
    Thank you for using the National Instruments forums!
    Is this error only with this one specific VI or with all VI's?? What does this VI do in terms of function?
    Have you tried this same VI as a copy of this file, to make sure there is no corruptions with the VI?
    Error related to lvinit.cpp are generally due to administrator rights / user rights issues.. Was LabVIEW installed with admin priveleges, and that users are allowed to read/write on the file used by LabVIEW? It has been seen before that the issue can be solved with giving the users the suitable read/write permissions to LabVIEW.
    Kind regards,
    Ashish Naik
    Field Sales Engineer
    National Instruments UK

  • Workflow triggered via SWUE does not complete

    Hello,
    On an ECC6 system, I have a workflow linked to the BUS2009.RELEASESTEPCREATED event. As long as the event is triggered upon upon purchase requisitions creation, the linked workflow starts and finishes fine. However, in case I trigger the event  "manually" using SWUE, one of the work items(approver release decision task) created by the started workflow does not change status to COMPLETE after it is executed and successfully processed with a valid outcome. The work item remains in the in-process or ready status.
    I have also checked the instance linkages and found a proper entry for the instance ID.
    Due to this I am not able to trigger the workflows missed during recent event linkage outage.
    Any idea what can cause this behaviour, please ?
    Thanks.
    Kind regards,
    Ondrej Foukal

    Hello,
    You say:
    "one of the work items(approver release decision task) created by the started workflow does not change status to COMPLETE after it is executed and successfully processed with a valid outcome"
    If it's successfully processed and has a valid outcome then maybe you're having a problem with the next step - perhaps agent assignment? Check the workflow log for any errors, and look at the graphical log.
    regards
    Rick Bakker
    Hanabi Technology

Maybe you are looking for

  • HOWTO: Low DPC latencies ( 100 us) on bootcamped Macbooks (Pro)

    Here is a small HOWTO for getting the lowest possible DPC latencies (<100 us) on bootcamped Macbooks Pro (late 2008): Disclaimer: I did all tests on my late 2008 Macbook Pro Unibody 2.8 GHz model with NVidia chipset and graphic. Most of the following

  • Problems with Spotlight searching of shared volumes

    According to: http://www.apple.com/macosx/features/300.html#spotlight, I should be able to "...search any connected Mac with Personal File Sharing enabled or a file server that's sharing its files." It doesn't specify what "file server", so I presume

  • Error when deploy project

    after run applicatation form jdeveloper it appear this error: <Apr 24, 2010 5:35:45 PM IDT> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored be

  • Item category group for Sales of Nonstock Item with Order Specific Procurem

    What will be the item category & group for the material for Sales of Nonstock Item with Order Specific Procurement.So that purchase requestation is created

  • Pop ups and numbers are links virus?

    So out of no where, all numbers on pages are links to sites, and now Im getting a ton of pops ups. Lots are for mac keeper and things to "clean" my computer. Never go on any questionable sites,so this is really odd. PLEASE HELP!!!