How to make automators actions invisible

My wife and I share an iPhoto library on an external firewire drive connected to an iMac. My wife connects to this from her Macbook via wifi. I have developed a simple automator script which automatically connects to the iMac and changes to the firewire drive. I would like to do this invisibily.
Ie I don't want to see anything on the screen. Is this possible. The reason for this is to get my wife's laptop to see the iphoto library without having to manually connect and select the library without a lot of junk on the screen. Any ideas would be appreciated.
Dave

I have a Mini that I use as a file server, and once things are set up the shared drive is automatically mounted without having to do anything.
If the sharing machine is set to wake on network access, it will wake up when you look at your network. The user/password for the shared access are usually kept in the keychain, so once you have logged in and mounted the drive, add the drive to your login items and from then on it will be mounted when you log in to your account.

Similar Messages

  • How to make the buttons INVISIBLE in the Application toolbar

    Hi All,
    I have a requirement to create a button in the Application toolbar of the Module Pool Screen. The field should be made Invisible by default. and it should be displayed based on one condition.
    Could you please let me know how to make that particular button INVISIBLE. I think we can make it invisible by using EXCLUDING statement. But, How to make the button VISIBLE again when the check is satisfied.
    I found from the portal that the FM 'VIEW_SET_PF_STATUS' can be used to make a button INVISIBLE. Could anyone help me out how to pass the parameters to this Function module?
    or is there any Function Module available to make the button VISIBLE and INVISIBLE? Please help me on this issues.
    Is there any possibility to make the button VISIBLE or INVISIBLE as we do for the screen fields using LOOP AT SCREEN..?
    Thank you in advance.
    Regards.
    Paddu.

    Hi,
    Try to use below in the PBO module status_0100 OUTPUT.
    DATA t_fcode TYPE TABLE OF sy-ucomm.
    refresh t_fcode[].
    APPEND 'Function code name of the button' TO t_fcode. 
    Check the condition here for which you want to make field visible.
        DELETE FCODE of the button from T_FCODE table
      ENDIF.
      SET PF-STATUS 'STATUS_0100' EXCLUDING t_fcode.

  • How to make Folder Action work on file, subfolder content change?

    Hi!
    I looking for information in how to make a Folder Action, Work Flow or any action from Automator to work on file change and not only on deletion, moving or insertion. What I want to know is if it's possible to trigger some script or app while monitoring a folder and its contents, files and subfolders, changes. Meaning that when I have a file that has its contents updated the action will be triggered like an txt file that I only insert a new line in it, for example.
    Is there any solution that is not third party? Is there an internal Mac OS X solution that would work on Snow Leopard, Lion and Mountain Lion?

    i have same problem. i would like to move automatically saved Word backup copy to another folder, but the folder action doesn't recognize the save as a new file that needs to be acted upon.

  • How to make tab strip invisible?

    hi Gurus,
    i had used a tabstrip in my screen 100. now i want make my strip invisible initailly.
    if certail condition is satisfied than i want to show my tabstrip.
    can anybody help me this,
    thanks in advance.

    Hi vipul,
    Tabstrip Controls
    Tabstrip controls are made up of pushbuttons (the tabs) and several subscreens. Each tab has its own subscreen. These tabs are part of the main screen and are therefore displayed in the field list of the dialog box for the main screen. Subscreen fields are displayed in other dialog boxes.
    According to how a tabstrip has been constructed internally:
    ●      Either a sole dialog box is displayed for the subscreen that belongs to the tab that is currently active, or
    ●      Dialog boxes are displayed for all subscreens that belong to the tabstrip control.
    If an invisible tab is set to active by the application transaction, different subscreens are selected for those tabs remaining that actually belong to other tabs. If the subscreens are invisible, it is also possible that an empty screen will be displayed.
    Technical Background:
    The transaction variant sets another tab (the remaining tab furthest left) to active. This additional active tab is, however, unknown in the application transaction, which assumes that its tab is active and selects the corresponding subscreen. If this subscreen has been faded out using the transaction variant, then an empty screen is displayed.
    CXTAB_CONTROL in SAP ABAP and TABLE CONTROL ... This field is used to make a particular column invisible or visible
    thanks
    karthik

  • How to make some nodes invisible?

    I set up a xml tree with JTree.Now I want to make some nodes invisible like the nodes which the name of the node is "datatype",how can I ?Thank you.

    I don't know if the nodes can be made invisible. But if you make cell renderer then you can evaluate the value before displaying it. If value is like 'datatype', you display (cell renderer displays) nothing as value in the cell.

  • How to make the message invisible.

    use transction "CNMASS" to mass change the activity.
    but there is a message. the message no. is CN354. "No authorization for processing: WBS element  XXX"
    how to make this warning message "CN354" is invisible.
    Please explain me all the steps to be required.
    Thanks in advance!

    Tense,
    From the looks of it, the error message seems to be authorization-related.  You should try CNMASS with an userid that has the appropriate authorizations instead of trying to circumvent the problem.
    Next time you get this message, immediately do a /nSU53.  This will show you what authorizations failed. Send this log to your Security team to get the required access.

  • How to make an action in Elements 6?

    First, is it possible to make an action in Elements 6? How to, and where?

    Just to add to what Barbara has said, Photoshop Elements uses actions
    internally to implement certain features. But, there is no public
    interface. That is, there is no provision for the user to load and execute
    an arbitrary action -- there is no "action player" like there is in
    Photoshop.
    Beside the commands that aren't available in PSE, a lot of the techniques
    that Photoshop users may employ in writting actions just won't work. For
    example, in Photoshop you can stop the action, do a manual adjustment, and
    then continue executing the action. In PSE, when you stop the action there
    is no way to continue and the image is returned to the history state just
    prior to executing the action -- you don't get to keep the changes. Often,
    people developing actions for PSE have to use quite a bit of ingenuity to
    work around the limitations.
    And, because actions do not have a public interface, Adobe frequently
    changes the way they are installed and implemented. Every new release
    changes the rules. And remember, Adobe isn't making the documentation
    available to the public. Someone has to figure out what changed and how to
    make it work.
    For these reasons, it's best to get your PSE actions from a site that writes
    them specifically for PSE and has accounted for the specific PSE verson,
    such as the sites mentioned by Barbara.

  • How to make screen elements invisible ??

    Hi,
    In  my selection-screen, I can add no-display attribute to Parameter data but how can i make screen elements invisible which are declared as follows ??
    PARAMETERS: SMALLLOG as checkbox .
    thanks

    PARAMETERS: SMALLLOG as checkbox user-command abc.
    at selection-screen output.
    ***if it is input disable
    loop at screen.
    case screen-field.
    **if input disable
    when 'SMALLOG'.
       screen-input = '0'.
       clear smalllog.
    endcase.
    modify screen.
    endloop.
    loop at screen.
    case screen-field.
    **if inivisible
    when 'SMALLOG'.
       screen-invisible = '1'.
       clear smalllog.
    endcase.
    modify screen.
    endloop.
    Message was edited by: Vijay Babu Dudla

  • How to make a field invisible using t-code SHDG

    Hi Experts,
    I got a requirement to disable a field Business unit in all transactions of Plant maintainance. I heard that it can be done with the help of transaction SHDG.
    I am not aware of this transaction. So anyone please provide some information or the material related to this transaction.
    Also let me know. If i make this field invisible using this transaction. If the same field business unit is used in other modules such as SD, FICO then there also will it get invisible?
    If that is the case how to overcome the above scenario.
    Useful answers are rewarded....
    Thanks
    Kiran.

    Hi,
    I think its not shdg but shd0.
    the best way to do it is Screen Variant and Transcation Variant.
    Tcode for it is SHD0 and you can disable, make any field invisible, make screen invisible , can have default value can be done through SHD0.
    Try it. It will be helpful for you.
    http://help.sap.com/saphelp_47x200/helpdata/en/7d/f639f8015111d396480000e82de14a/frameset.htm
    Regards

  • How to make Visible and Invisible using a Button?

    hi!... I've a Text3D using Oriented3D object and I would like to know how to make it visible and invisible by clicking a button.
    I know there is a function, setVisible() in RenderingAttributes, which can be set by the object's Appearance.
    Since I want to use a button to change the object's appearance, I need to change it in the button's actionPerformed function, but it has thrown an exception:
    "Shape3D: no capability to set appearance".
    I'd tried using those setCapability flags... but still nothing...
    Could someone help me please?...
    Thanks

    When you create Shape3D, setAppearance to it and
    setCapability(ALLOW_APPEARANCE_READ).
    For the Appearance, you should setCapability(
    ALLOW_RENDERING_ATTRIBUTES_READ).
    For the RenderingAttributes, you should setCapability(
    ALLOW_VISIBLE_WRITE).
    So in the button event handler,
    shape.getAppearance().getRenderingAttributes().setVisible(true/false).
    Now you can control the visiblity of Text3D

  • How to make a button invisible?

    I'm sure this is something easy that I'm missing, but I can't figure it out.  How do I make a button invisible?  I need it to be invisible through frame 43 of my movie.  I have tried changing the alpha to 0, but it's not letting me change that, except in the edit button mode which changes it for the entire duration and not just through frame 43.

    It can vary slightly depending on which version of actionscript your file is using, but just turn the visible property off and on.  For AS3....
    btnName.visible = false;
    btnName.visible = true;

  • How to make submit action programatically ?

    hi all ;
    how can i make submit action programatically (by clicking on any item in the page) ?
    Regards .

    Hi,
    set autosubmit on the input components to true
    Frank

  • How to make an action that creates a composite onto one image from a non specific source??

    Hi
    I'm trying to create an action, But having some trouble. I have a fair knowledge of CS4 and actions but this one is tricky.
    Basically i need to create a new document out of a folder full of images. These images need to have their opacity reduced to 40% and their blending mode changed to Colour burn. They then need to be copied onto the same canvas with a transparent background.
    Most of this is fine. But i need to make the action that is not image specific. So not the one i used to record it. This is for a mid process that is going to go between various other programs before display, and the hole process needs to be automated. When i hit pay or go through file-automate-batch it uses the images that i recorded with.
    I realise i havent explained this terribly well but any help would be much appreciated.
    Thanks
    Sam

    Basically i need to create a new document out of a folder full of images.
    You may have to look into Scripting to achieve something like this.
    You could ask in the Scriptimg Forum
    Photoshop Scripting
    But maybe it would suffice to insert the Menu Item
    File – Scripts – Load Files into Stack
    into the Action and then iterate through the Layers with [ or ] and reset the opacities and Blend Modes – but as Actions would not be able to change the number of repetitions of the operation conditionally a custom Script would still seem preferable. 

  • How to make a computer invisible in  network?

    I was amazed that in the left-hand panel of FINDER, under the SHARED tab, there are about 6 other computers that I am seeing. I am concerned that others may be able to access my computer via my wireless connection. How can I make sure I am protected, and my computer is invisible to them?

    Go to System Preferences > Sharing > uncheck everything in the left window. If you're not sharing anything you won't show up.
    Regards

  • How to make a folder invisible of a particular user

    Hi All,
    I want to make a folder/report invisible for a particular user, but I want to access that report through hyper link of another report.
    Is this possible?? can anyone suggest me?

    Hi,
    What version are you on?
    If you deny access to the folder in which the report is placed the user should not be able to see the report. If you then provide view access to the user on the report explicitly (you might have to turn off inheritance for the object), then this should override the deny and you shouldbe able to hyperlink to it. So the user has access to the report but has no way of getting to it, except through your hyperlink
    Let me know how you get on
    Regards
    Alan

Maybe you are looking for

  • How do I cancel my Verizon contract online

    Hi, I have found that even though you can subscribe online, I can't cancel online? What? So I have to wait and listen to Verizon support while they try to convince me to stay? So this is what being customer friendly means in Verizon, right?  I wanted

  • HT1364 can you move an itunes library from pc to mac?

    Hi everyone, The days of my laptop are nearing the end and I'm strongly leaning towards purchasing a macbook. Can you transfer your media library from pc to mac? Can you export a copy your library onto an external drive as I don't know how much longe

  • How to modify Tender Contract using BAPI_TRADINGCONTRACT_CHANGE?

    Hello dearest ABAP experts, Good day to all. Its been so long that I am testing how I could use this BAPI (BAPI_TRADINGCONTRACT_CHANGE) to update the batch in the item of the Tender Contract. I tried to search the net but no samples I had found. I re

  • How to load jsp page in Frame?

    hi I have tried to make an Application which is a very simple Messenger made by java.awt.Frame and had problem to load/open jsp page. Is there any way to load/open jsp page in Frame When an event occured? It makes me crasy these days. Please Help me.

  • Read html meta info in JSP

    <html> <head> <meta name="isLoginPage" content="true"> </head> <title>Login Page </title> <body bgcolor="white"> <form method="POST" action="home.jsp"> <table border="0" cellspacing="5">     <tr>       <th align="right">Username:</th>       <td align