Making custom templates and packaging them.

I have done several DVD's for clients/parents of thier childs soccer team videos. I normally make a custom menu for them. My question is, if i wanted to make this template and save it to give to someone else to use is there a way to do it. I guess it would be like making one to sell, but i am not selling it:) If anyone knows of a tutorial or anything that can help me i would appreciate it greatly. I am thinking about making generic templates fo several sports.

Hi Zack,
My guess would be if you do these in Photoshop, Live Type or Motion (as I do) give them these plus all associated files. If you have save these in DVD SP they are in Library>application Support>DVD SP>Templates. Hope this helps.
Jeff
Dual G4 1 GIG, G4 1.25 Laptop Macbook Pro 2.0   Mac OS X (10.4.7)  

Similar Messages

  • I have Pages 09.  I have created custom templates and want to delete them.  How do I delete a template I have created in Pages 09?

    I have Pages 09.  I have created custom templates and want to delete them.  How do I delete a template I have created in Pages 09?

    Pages stores those you created & saved as templates in (your account) > Library > Application Support > iWork > Pages > Templates > My Templates. The door to the user's Library is hidden in Lion but it is easy to open. In Finder, hold down the Option key while clicking on the Go menu & your users Library will appear about halfway down the list.

  • Keeping custom templates and configurations on different drive

    What I'm trying to do is keep one set of DVDSP layouts/templates/etc on a partition that all of our editors/graphics artists can access instead of adding 8gb or more on each station. I figured out how to link each station to the stock palette elements, using the preferences, but I didn't see a way to let DVDSP know that the configurations folder has been moved to a new partition. And in terms of custom templates, where are those normally saved? In the same folder as the stock templates? I'm unsure where to point DVDSP to set the custom elements. It's default is /Users/drive/Library/Application Support/Final Cut Studio/DVD Studio Pro. I see that DVDSP wants to save custom templates in the user folder library and the general templates in the general library, but what if I want both on a non-local drive? Can I simply create two folders (templates/custom templates) and make sure that our editors save to the custom folder when using DVDSP?
    And lastly, will the custom configurations stay linked if I move the configurations folder to the new location on the shared media partition?
    Hope this makes sense,
    Steve

    Steve
    Look in DVDSP Preferences > Destinations > Show: Palette Elements. You'll see the location destination of stock and custom elements.
    Hope that helps !
      Alberto

  • JFileChooser not opening when we applied custom Look and Feel & Theme

    Dear All,
    JFileChooser not opening when we applied custom Look and Feel & Theme.
    The following is the source code
    import java.awt.Color;
    import javax.swing.*;
    import javax.swing.plaf.ColorUIResource;
    import javax.swing.plaf.metal.MetalLookAndFeel;
    import com.jgoodies.looks.plastic.*;
    public class CustomTheme {
    public static void main(String[] args)throws UnsupportedLookAndFeelException{
    UIManager.setLookAndFeel(new MyLookAndFeel());
    MyLookAndFeel.setCurrentTheme(new CustomLaF());
    JFrame frame = new JFrame("Metal Theme");
    JFileChooser jf = new JFileChooser();
    System.out.println("UI - > "+jf.getUI());
    //jf.updateUI();
    frame.getContentPane().add(jf);
    frame.pack();
    frame.setVisible(true);
    static class CustomLaF extends PlasticTheme {
    protected ColorUIResource getPrimary1() {
    return new ColorUIResource(232,132,11);
    public ColorUIResource getPrimary2() {
              return (new ColorUIResource(Color.white));
         public ColorUIResource getPrimary3() {
              return (new ColorUIResource(232,132,11));
    public ColorUIResource getPrimaryControl() {
    return new ColorUIResource(Color.GREEN);
    protected ColorUIResource getSecondary1() {
    return new ColorUIResource(Color.CYAN);
    protected ColorUIResource getSecondary2() {
              return (new ColorUIResource(Color.gray));
         protected ColorUIResource getSecondary3() {
              return (new ColorUIResource(235,235,235));
         protected ColorUIResource getBlack() {
              return BLACK;
         protected ColorUIResource getWhite() {
              return WHITE;
    static class MyLookAndFeel extends Plastic3DLookAndFeel {
              protected void initClassDefaults(UIDefaults table) {
                   super.initClassDefaults(table);
              protected void initComponentDefaults(UIDefaults table) {
                   super.initComponentDefaults(table);
                   Object[] defaults = {
                             "MenuItem.foreground",new ColorUIResource(Color.white),
                             "MenuItem.background",new ColorUIResource(Color.gray),
                             "MenuItem.selectionForeground",new ColorUIResource(Color.gray),
                             "MenuItem.selectionBackground",new ColorUIResource(Color.white),
                             "Menu.selectionForeground", new ColorUIResource(Color.white),
                             "Menu.selectionBackground", new ColorUIResource(Color.gray),
                             "MenuBar.background", new ColorUIResource(235,235,235),
                             "Menu.background", new ColorUIResource(235,235,235),
                             "Desktop.background",new ColorUIResource(235,235,235),
                             "Button.select",new ColorUIResource(232,132,11),
                             "Button.focus",new ColorUIResource(232,132,11),
                             "TableHeader.background", new ColorUIResource(232,132,11),
                             "TableHeader.foreground", new ColorUIResource(Color.white),
                             "ScrollBar.background", new ColorUIResource(235,235,235),
                             "ToolTip.foreground", new ColorUIResource(232,132,11),
                             "ToolTip.background", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.border.background", new ColorUIResource(Color.gray),
                             "OptionPane.errorDialog.titlePane.foreground", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.titlePane.background", new ColorUIResource(232,132,11),
                             "Table.selectionBackground", new ColorUIResource(232,132,11)
                   table.putDefaults(defaults);
    When i run this program the following error is coming:
    Exception in thread "main" java.lang.NullPointerException
    at javax.swing.plaf.metal.MetalFileChooserUI$IndentIcon.getIconWidth(Unknown Source)
    at javax.swing.SwingUtilities.layoutCompoundLabelImpl(Unknown Source)
    at javax.swing.SwingUtilities.layoutCompoundLabel(Unknown Source)
    at javax.swing.plaf.basic.BasicLabelUI.layoutCL(Unknown Source)
    at javax.swing.plaf.basic.BasicLabelUI.getPreferredSize(Unknown Source)
    at javax.swing.JComponent.getPreferredSize(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI$ListSelectionHandler.valueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.changeSelection(Unknown Source)
    at javax.swing.DefaultListSelectionModel.changeSelection(Unknown Source)
    at javax.swing.DefaultListSelectionModel.setSelectionInterval(Unknown Source)
    at javax.swing.JList.setSelectedIndex(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup.setListSelection(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup.access$000(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup$ItemHandler.itemStateChanged(Unknown Source)
    at javax.swing.JComboBox.fireItemStateChanged(Unknown Source)
    at javax.swing.JComboBox.selectedItemChanged(Unknown Source)
    at javax.swing.JComboBox.contentsChanged(Unknown Source)
    at javax.swing.AbstractListModel.fireContentsChanged(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.setSelectedItem(Unknow
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.addItem(Unknown Source
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.access$2300(Unknown So
    at javax.swing.plaf.metal.MetalFileChooserUI.doDirectoryChanged(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI.access$2600(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI$12.propertyChange(Unknown Source)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Unknown Source)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Unknown Source)
    at javax.swing.JComponent.firePropertyChange(Unknown Source)
    at javax.swing.JFileChooser.setCurrentDirectory(Unknown Source)
    at javax.swing.JFileChooser.<init>(Unknown Source)
    at javax.swing.JFileChooser.<init>(Unknown Source)
    at CustomTheme.main(CustomTheme.java:20)
    I am extending the JGoodies Look And Feel & Theme.
    Thanks in advance
    Krishna Mohan.

    Dear cupofjoe,
    Thank you for your response.
    I am using the Latest JGoodies Look & Feel which is downloaded from http://www.jgoodies.com.
    i am writing our own custom Look & Feel By Overridding Jgoodies Look & Feel.
    In that case i am getting that error.
    The following is the source code:
    import java.awt.Color;
    import javax.swing.*;
    import javax.swing.plaf.ColorUIResource;
    import javax.swing.plaf.metal.MetalLookAndFeel;
    import com.jgoodies.looks.plastic.*;
    public class CustomTheme {
    public static void main(String[] args)throws UnsupportedLookAndFeelException{
    UIManager.setLookAndFeel(new MyLookAndFeel());
    MyLookAndFeel.setCurrentTheme(new CustomLaF());
    JFrame frame = new JFrame("Metal Theme");
    JFileChooser jf = new JFileChooser();
    //System.out.println("UI - > "+jf.getUI());
    //jf.updateUI();
    //frame.getContentPane().add(jf);
    frame.pack();
    frame.setVisible(true);
    static class CustomLaF extends PlasticTheme {
    protected ColorUIResource getPrimary1() {
    return new ColorUIResource(232,132,11);
    public ColorUIResource getPrimary2() {
              return (new ColorUIResource(Color.white));
         public ColorUIResource getPrimary3() {
              return (new ColorUIResource(232,132,11));
    public ColorUIResource getPrimaryControl() {
    return new ColorUIResource(Color.GREEN);
    protected ColorUIResource getSecondary1() {
    return new ColorUIResource(Color.CYAN);
    protected ColorUIResource getSecondary2() {
              return (new ColorUIResource(Color.gray));
         protected ColorUIResource getSecondary3() {
              return (new ColorUIResource(235,235,235));
         protected ColorUIResource getBlack() {
              return BLACK;
         protected ColorUIResource getWhite() {
              return WHITE;
    static class MyLookAndFeel extends Plastic3DLookAndFeel {
              protected void initClassDefaults(UIDefaults table) {
                   super.initClassDefaults(table);
              protected void initComponentDefaults(UIDefaults table) {
                   super.initComponentDefaults(table);
                   Object[] defaults = {
                             "MenuItem.foreground",new ColorUIResource(Color.white),
                             "MenuItem.background",new ColorUIResource(Color.gray),
                             "MenuItem.selectionForeground",new ColorUIResource(Color.gray),
                             "MenuItem.selectionBackground",new ColorUIResource(Color.white),
                             "Menu.selectionForeground", new ColorUIResource(Color.white),
                             "Menu.selectionBackground", new ColorUIResource(Color.gray),
                             "MenuBar.background", new ColorUIResource(235,235,235),
                             "Menu.background", new ColorUIResource(235,235,235),
                             "Desktop.background",new ColorUIResource(235,235,235),
                             "Button.select",new ColorUIResource(232,132,11),
                             "Button.focus",new ColorUIResource(232,132,11),
                             "TableHeader.background", new ColorUIResource(232,132,11),
                             "TableHeader.foreground", new ColorUIResource(Color.white),
                             "ScrollBar.background", new ColorUIResource(235,235,235),
                             "ToolTip.foreground", new ColorUIResource(232,132,11),
                             "ToolTip.background", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.border.background", new ColorUIResource(Color.gray),
                             "OptionPane.errorDialog.titlePane.foreground", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.titlePane.background", new ColorUIResource(232,132,11),
                             "Table.selectionBackground", new ColorUIResource(232,132,11)
                   table.putDefaults(defaults);
    pls suggest me the how to solve this problem.
    thanks in advance
    Krishna MOhan

  • Trouble using Custom Template and Saving Resulting Document. Help!

    I created a Custom Template in Numbers '09. When I go hit "New from Template Chooser", there it is. I've tried entering info directly into the template, as well as duplicating it and entering info in the duplicated document. I can enter the info just fine, but.... Either way, when I'm done I do not have an option to Save, Save As or anything like that. I only see "Save As Template".....but it's already a perfectly good template. I don't want to Save As Template and create another template!!!. I want a named document saved, using the great template I already put together. Is this a problem? What's up? Why can't I do this???? Please help!

    I'm on an iMac running 10.7.5. (Afraid to go further  because I have FInal Cut Pro 7 and I'm very attached to it....I'm afraid to upgrade my OS and have FCP not work! I'm a pro and not so willing to go to FCP 10).  Anyway, I'm on an iMac 3.06 GHz Intel Core  4 GB, 1333 MHz RAM.
    I'm running Numbers ''09 and don't have 13, so it's an 09 template entering 09 info. It's perfect. I run webinars and it contains all of the status for media and every detail of any upcoming webinar production. My goal is to open the template, enter the info, and save it with the name of the webinar client. Then open again, enter for another client, save, etc.
    It's just 09 all the way through. It says I can Save a Version or Save as Template.
    Should I open a template and then Duplicate so it's a fresh document? I do that sometimes in hopes of seeing an option to SAVE AS. Sometimes I open and Don't Duplicate, but just use the template. Either way I see no way of saving the document with the specific information for the client. I don't want to Save As Template! Who wants hundreds of templates running around that are all virtually the same except for the info entered within it.
    Am I missing the boat here?

  • Making Custom Template in DVDSP

    I have a DVD set up with two menus, connections, and a script. When I try to save it as a custom template it will only save a single menu and track.
    Is it not possible to save a custom template with multiple assets? (menus, track place holders, and scripts)
    I am trying to make a custom template for essentially "drag and drop" use for multiple projects.
    Thanks in advance for the help and my version of DVDSP is whatever the most current is that came out with FC7.

    I'm wondering if someone can help me.
    I'm on SP 4.1.2, latest build of Leopard.
    When I creating my templates, which are just enhancements of the Filmstrip versions, Sp crashes on me. Spinning wheel!
    Using the filmstrip template, I end up having 2 pages.
    1. the main page
    2. the chapter selection pages (could be multiple of course)
    So I set my menus up, then I go to the first menu, cntrl-click or right click (using a logitech trackball) and choose create template. I give it a name then click the box for self-contained.
    When I press save, SP crashes hard, displaying the spinning wheel.
    I have to force quit and of course, not changes were made
    Any ideas?
    I've reset permissions etc.. so I don't know that the problems is.
    I do know this could save me some time. I could just use Apple's stock filmstrip project, but i don't like it enough. I transfer home videos for people and their DVDs are usually 12-18 chapters.
    I'd like to have various templates set up for 6, 9, 12, 15 and 18 (or more) chapters set up so I can just drop and drag to make all the connections.
    Cheers and thanks in advance for any help.
    Cheers,
    keebler

  • Setup Customer Templates and Alerting

    We are currently have over 75 Oracle 10.2.0.4 test servers, with agents installed and reporting back to our OMS repository. We have been asked to start monitoring tablespace thresholds so that we don't run into outspace issues. What I have done is create a custom monitoring template and pushed it via the agents to the db servers. What I would like to do is remove all the standard oracle alerting, and only have the monitoring template and have it email or page our oncall when needed.
    Jim

    hi,
    Maybe a better approach would have been to look at one of the standard grid control jobs, database availability and critical states. create your own rule as a copy of this, remove all the metrics you do not want. Edit the rule as the SYSTEM or SYSMAN user of grid control. Then make the rule public and then when you log in as a none SYSTEM/SYSMAN user just subscribe youreself to that rule to recive email alerts. This way you keep all the standard rule in tact.
    regards
    Alan

  • Pdf  document on  custom template and CSS

    There was a small pdf document on CSS and templates in the turial section of APEX. Anyone know where is this?
    George

    Raizel wrote:
    > In article <e4ovcd$eei$[email protected]>,
    > "billugs" <[email protected]> wrote:
    >
    >> It seems that my template and css style are still
    not showing up on my page,
    >> I
    >> uploaded both and I am out of ideas. Does anyone see
    a problem that I can
    >> fix?
    >> <a target=_blank class=ftalternatingbarlinklarge
    >> href="
    http://www.personalizedspanish.com">http://www.personalizedspanish.com</
    >> a>
    >
    > Can't help but ask -- why do you post your URLs as <a
    target=_blank
    > class=ftalternatingbarlinklarge
    >> href="
    http://www.personalizedspanish.com">http://www.personalizedspanish.com</
    >> a>
    >
    > instead of just the URL?
    Raizel: it's a problem with the forum and how stuff from
    there gets
    posted to the newsgroup. Per a recent post by Murray, the
    Adobe team
    are working on the problem. It's driving us all crazy.
    Bonnie in California
    kroko at
    pixelplum dot com
    http://www.theanimalrescuesite.com/cgi-bin/WebObjects/CTDSites.woa

  • About XE DB Templates and packaging a custom DB

    Hi.
    I see XE does not provide DBCA. With DBCA you can package a DB: i mean, you can create a template to contain a seed database. This gives you the chance of create "a custom seed database" which is great for ISV. I wonder whether it's possible to install XE with you custom DB: not the default DB that gets installed but one that contains metadata, schemas, etc. need to get you application up and running as fast as possible.
    Thanks in advance ...!

    No, I don't believe it's meant to do that.
    The way we do it is by packaging our application with scripts and such, and after XE install is finished, we just build our tablespaces and schemas into it. You can tweak XE after it's installed, but I don't think you'll have much luck creating a customized database right at install time.
    ~Jer

  • Event Receiver to create a List based on a custom template and on lookup field

    Hi
    I would like to have an Event Receiver who is firing by addItem in a list calls Seminarliste and is creating each time a new list based on three columns for add.Lists("Title of the list", "Description of the list", "Custom List
    Template")
    I have a Problem to get the LookupField Title and I am getting a Problem to create a list.
    If I debug the code the bold line creates an exception ;(
    The following code I have produced:
            public override void ItemAdding(SPItemEventProperties properties)
                base.ItemAdding(properties);
                SPWeb spCurrentSite = properties.OpenWeb();
                SPSite siteCollection = new SPSite("http://win-ue32d37ap2n");
                SPWeb web = siteCollection.OpenWeb();
                SPListCollection lists = web.Lists;
                String curListName = properties.ListTitle;
                if(curListName == "Seminarliste")
                    SPListItem curItem = properties.ListItem;
                    String curItemListName = properties.AfterProperties["Title"].ToString();
                    String curItemDescription = properties.AfterProperties["Beschreibung"].ToString();
                    // Lookup field with Option to Chose a template name
                    String curItemTemplate = properties.AfterProperties["Template"].ToString();
                    SPListTemplateCollection listTemplates = siteCollection.GetCustomListTemplates(web);
                    //Error by following line ...
    SPListTemplate myTemplate = listTemplates[curItemTemplate];
                    web.Lists.Add(curItemListName, curItemDescription, myTemplate);
    If somebody had a similar problem in the past and could advice it would be most appreciated ;-)
    Thanks in advance ;-)
    Kind regards Michael Damaschke

    If I understand correctly, the field you use to select the template name is a lookup field? If so, then the problem is the lookup field value is not the name of the template. It is an SPFieldLookupValue, which contains the ID and the string of the lookup.
    So you want to separate the template name, like this:
    if (item["LookupField"] !=
    null)
         string fieldValue = item["LookupField"].ToString();
         SPFieldLookupValue value =
    new SPFieldLookupValue(fieldValue);
         int lookupListItemID = value.LookupId;
         string lookupListValue = value.LookupValue;
    IF you look at the fieldValue above, you will see it is something like an integer, followed by delimiter ;# and then your template name. you can always just parse the string at the ;# as well if you were so inclined.

  • Setting default parsys component and packaging them

    Hi,
    Is anyone familiar with how to enable default components to appear in a certain parsys?
    Usually what I would do is manually go into Design Mode, find that certain parsys that I want to edit, click on the Edit, and locate the component under the "Allowed Components" list and check the box corresponding to enabling that component. I found out that when a component is checked to appear in that certain parsys, it will also automatically create a node (eg. mynode) at "/etc/design/default/jcr:content/mynode". And within this node, there will be a property called "components" that will determine what component will appear in this parsys. So I am assuming that this is the way to enable components in the parsys through the codes (without having to manually enable them at that webpage).
    After which, I will package all the contents of "/etc/design/default/jcr:content/mynode" and proceed to deploy it in my client's server. The problem now is, the contents once installed (in client's server), is deleted once again. I suspect it has something to do with it being under jcr:content. Is my assumption right? And how do I solve this? And if I package "/etc/design/default" and deploy it, it seems to work fine. I cannot deploy the whole default folder though. This is because, I cannot confirm if there are other projects that adds their "default components" under that folder. By putting only my "/etc/design/default", there might be a possibility of removing my client's other project's default components.
    To summarise, what I want is to package the contents of "/etc/design/default/jcr:content/mynode" and place it in my client's server, and make sure that it is not deleted (Assuming editing the contents of "/etc/design/default/jcr:content/mynode" is the way to create default parsys components).
    Any detailed help will be appreciated! Thanks!

    How do I create a site page from "http://localhost:4502/miscadmin#/etc/designs"? I am a little confused over here.
    When I refer to the geometrixx site example, I can see that the "components" property inside "/etc/designs/geometrixx/jcr:content/examplepage/parsys" has my enabled component's path in it. But when I duplicate the exact same structure into "/etc/designs/myproject/jcr:content/myprojectpage/myparsys" in its components property, the component that I want to enable doesn't show up. Even when I created a new page, it doesn't show up. But when it is created in "/etc/designs/default/jcr:content/myprojectpage/myparsys", it works.
    So as you can see, somehow my projects are directing the path to "/etc/designs/default", instead of "/etc/designs/myproject". How do I change the direction path? There seems to be no place to configure this.

  • Need help creating custom objects and adding them to an array.

    Hi Everyone,
    So I'm dinking around in Powershell today and I'm failing at creating an array of custom objects.  I want to create a HTML report that builds out after every MDT image update. To do that, I need to collect my data on what's contained in each build.
    Here's my current script in progress -
    function Parse-Dependents($fullname){
    #PARAMETER SWITCHING
    if(!($fullname)){
    $dependents = get-dependents
    if($fullname){
    $dependents = get-dependents -fullname $fullname
    #SPIN THROUGH ARRAY OF GUIDS FROM GET-DEPENDENTS
    foreach($d in $dependents){
    #SPIN THROUGH EACH APP IN APPLICATIONS.XML
    foreach ($app in $apps){
    #IF MATCH THEN ADD OBJECT WITH PROPERTIES
    if($d -match $app.guid){
    #ADD APPLICATION MATCH TO THE ARRAY
    $applications = @{
    'Name' = $app.ShortName;
    'GUID' = $app.Guid;
    'Version' = $app.Version;
    'Last Modified Time' = $app.LastModifiedTime;
    'Last Modified By' = $app.LastModifiedBy;
    'Install Directory' = [string]'\\my\path\to\MDT\' + $app.WorkingDirectory.TrimStart(".","\")
    'CommandLine' = $app.CommandLine;
    new-object -typename PSObject -property $applications
    #RETURN MATCHED ARRAY
    return $applications
    It all works great until I look at my output and see that I get my expected properties and array, but at the end it's created additional empty entries for each of my initial properties I assigned.  So I get my list of apps like this :
    powershell.ex... OrgChart Plugin  \\my\mdt\server\ XX\user                     9/22/2014 5:... {ffee7497-0c...
    And then below it :
                     CommandLine                                                                                    
                     Name                                                                                           
                     Install Direc...                                                                               
                     Last Modified By                                                                               
                     Version                                                                                        
                     Last Modified...                                                                               
                     GUID                                                                                           
    And these are all listed under the Name property.  I'm still pretty new to PS (8 months or so now), and rarely have to create a custom object, but this seems like a case for doing so to create a custom html report.  Any ideas would be greatly appreciated.
    Ryan

    It's not really all that strange.  
    If you look at your script, you're not outputting the hash table until both loops finish.  The values are dependent on the properties of the $app objects enumerated in the inner loop, and only outputting an object if the dependent ($d) matches the $app
    guid property.
    At the end, you're outputting the hash table without that test, so it's going to have values based on the last $app in the loop, regardless of whether the guid matches the dependents or not.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • How to upload images in to custom table and display them in normal ABAP report?

    Hi Experts,
    Can anyone suggest me ,how to upload images into customised table and display thoes images in normal abap report.
    Thanks in Advance,
    Rgds,
    Anusha

    Hi Experts,
    Can anyone suggest me ,how to upload images into customised table and display thoes images in normal abap report.
    Thanks in Advance,
    Rgds,
    Anusha

  • HT204019 Why can't you make custom ringtones and apply them to your iphone without bypassing iTunes on a Mac or PC?

    I just don't think doing 18 steps just to get 1 ringtone is necessary...and if it is, it should be changed.

    You can. Get Garageband:
    http://www.macworld.com/article/2010514/how-to-create-a-ringtone-on-your-iphone- with-garageband.html

  • I have several custom templates in the my templates/templates chooser. How do I remove and/or delete them.

    I have several custom templates in the my templates/templates chooser. How do I remove and/or delete them?

    Hi Muizen,
    Your remark that Yvan's "remarks are completely useless to (you)" may be correct, but that's hardly his fault.
    Your question was posted in the Numbers community, a place for discussions of issues and techniques specific to the Apple spreadsheet application Numbers, part of the iWork set.
    This community is one of several at the Apple Support Communities site, a place for discussion of technical issues specific to Apple hardware and software.
    Your question regarding removing unwanted templates, posted in the middle of a discussion of Numbers templates (with a side trip to templates made with Pages, the word processing and page layout application that is also part of the iWork set) contained no reference to any application other than Numbers having produced those templates.
    Yvan may have added 'unclearness' to your understanding of the issue, but the origin of that unclearness is your initial post. In case you've forgotten it, here is that post again, quoted in its entirety:
    "Hi Edgar,
    I am struggling to remove custom templates that I don't need.
    The advise is:
    Use the Finder to navigate to the templates and send them to the trash. Look in:
    Username/Library/Application Support/iWork/Numbers/Templates/My Templates.
    However after Application Support iWork does not show up.
    Do you have a solution?"
    Where in that post do you make it clear that the custom templates you are talking about are "MS Word" templates? Where do you even mention that fact?
    In your most recent post you state: "I tried this approach but reported that there is no iWork in my system."
    Actually, you did not report "there is no iWork in (your) system,"t. You did report that "iWork does not show up" when you followed the path given.
    You had made no mention to that time that iWork was not installed on your computer, and the fact that you had posted a question about removing templates in a forum(and in a discussion thread) specifically for one of the iWork applications would lead any reasonably intelligent reader to assume that the application was on your computer, and that, like the other users in this discussion, you were asking about Numbers templates, or at least about templates for one of the iWork applications.
    Given that assumption, and given that the supplied path was the correct path to a user's custom templates for numbers, the most likely explanation of iWork's name missing from the path would be the one Yvan assumed—a misstep by the user at the beginning of the path.
    Regards,
    Barry

Maybe you are looking for