Create a template app?

Whenever I start a new project in Flex builder I always have to go and add all my project build paths, adjust the compiler settings, etc. Is there a way I can make a template with all that done and then just click new from template?
Thanks.

You could...
Create the "template" project how you want it.
Export it to an archive/zip file (File -> Export -> Flex Project Archive).
Then when you want to create a new project, start with (File -> Import -> Flex Project)
Select the archived file and set the location to a new project name.
Does that work?
Ben

Similar Messages

  • Trying to create a Chrome app via template

    Hi,
    I am trying to create a Chrome app via the template option in ZAV 11, without any success since only version 35 of Chrome is supported, and only ver 39 is available for download. If I try to create an app via the snapshot third party menu option, the app crashes on start-up, no matter what I do. This is driving me crazy to tell the truth!! Please update the templates to reflect the most current version of Chrome, or remove it completely as this is not a workable option as you now offer it.
    Regards,
    Garth

    I am creating a Virtual app based on chrome and have the same problems. I however did find an older offline installer for chrome. I sent you a PM with a link.

  • Performance of Web Templates Apps that are created in Web App Designer

    I have created a Dashboard using Web App Designer in BI7 SPS 10.
    The Web Template has 12 queries/DataProviders that are used for 12 charts.  Buttons at the top control the view to show 4 Charts Each.   When these buttons are selected, command sequences are executed that Hide and Show containers (each chart has its own container).
    Also, there are 8 Dropdowns which are used to filter all 12 charts.  These Dropdowns are using Posted Values because the requirement is to only show the values that actually exist in the InfoProvider.
    When this template is run in Development where the data is minimal, it is taking 17 seconds to load the page.  When running each query individually, it is taking each query between less than 1 second or at most 1.5 seconds.  Also, the queries have been broadcasted to the OLAP Cache.
    Other approaches that I have tried but have not changed the performance:
    1.  Created this template with Tabs and each template calls a template which contains 4 of the Charts (I believe this is called the “Template in Template” Approach.
    2.  Created 3 templates  that each contain 4 of the Charts.   The Command Sequence “Change Template" is used to switch to another Template (e.g. from “Monthly Trends” to “Top 10” and retain/pass the filters that are already selected in the Dropdowns.  However all of the dataproviders are needed in each template in order to pass the filter values.  Therefore, all 12 queries are executing  when you load the main page.
    I am looking for suggestions on what I could do differently to speed up the performance to get the Dashboard to respond within 10 seconds.
    Thank You.

    Dear Kristen,
    well, one of the things that I do remember, a solution that we provided for a similar scenario, but, not exactly the same. Another difference is that it was in BW 3.5.
    We had few reports that was responding slow. There were reports that was viewed by both sr. managers as well by his team. Sr. Mgr looked only at the high level data while the team looked at the item level data in the same report. So, we provided two links in the same report. Initially it will come up with a static data. To get a detailed data, the user has to click the next link to view item level data.
    Now, how this works is through Reporting Agent. The first static data was provided as a cache(pre-calculated) hence, faster. It comes in just 2 secs. But, when the user needs a item level data, he clicks the lik provided, only in which case, it fetches data from the infoprovider(hybrid mode).
    We will need to schedule periodically, accordingly, to refresh the cache to provide faster data.
    Iam really not sure how far this will help you, but, can spark something( I hope!).
    Thanks

  • Is there a way to create Timecard Templates from backend?

    Hello Folks
    Is there a way to create Timecard Templates from backend? I tried to create one with the following steps, but did not work. Throws a HXC_HXT_DEP_VAL_ORAERR
    The Oracle error is: &ERROR
    1. Create TIMECARD_TEMPLATE scope BB using hxc_timestore_deposit.create_bb
    2. Create Template_Name Attribute on the above BB
    3. Create DAY BB
    4. Create DETAIL BB for DAY BB
    5. Create Attribute BB for Hours Worked element on the DETAIL BB above
    6. Call hxc_timestore_deposit.execute_deposit_process(p_validate => FALSE
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_messages => l_tbl_messages
    ,p_mode => 'SAVE'
    ,p_deposit_process => l_deposit_process
    --p_retrieval_process   => 'BEE Retrieval Process'
    , p_template => hxc_timecard.c_yes
    ,p_timecard_id => l_new_timecard_id
    ,p_timecard_ovn => l_new_timecard_ovn
    Any help would be greatly appreciated.
    Thanks
    Srinivasa

    Tim
    Application Release is 12.0.4, those notes do not help. Here is the complete script.
    declare
    l_tbl_timecard_info hxc_self_service_time_deposit.timecard_info;
    l_tbl_attributes_info hxc_self_service_time_deposit.app_attributes_info;
    l_tbl_messages hxc_self_service_time_deposit.message_table;
    --l_token_table                  hxc_deposit_wrapper_utilities.t_simple_table;
    l_blocks hxc_self_service_time_deposit.timecard_info;
    l_attributes hxc_self_service_time_deposit.app_attributes_info;
    l_tc_bb_id hxc_time_building_blocks.time_building_block_id%TYPE;
    l_day_bb_id hxc_time_building_blocks.time_building_block_id%TYPE;
    l_detail_bb_id hxc_time_building_blocks.time_building_block_id%TYPE;
    l_existing_tc_id hxc_timecard_summary.timecard_id%TYPE:= NULL;
    l_deposit_process hxc_deposit_processes.NAME%TYPE:= 'OTL Deposit Process';
    l_count_building_block PLS_INTEGER;
    i PLS_INTEGER;
    l_message fnd_new_messages.message_text%TYPE;
    l_approval_style_id NUMBER;
    l_new_timecard_id NUMBER;
    l_tc_days_counter NUMBER;
    l_new_timecard_ovn NUMBER;
    l_resp_id NUMBER := 50597; -- Responsibility US Employee Services
    l_application_id NUMBER := 809; -- Application HXC
    l_user_id NUMBER := 118189; -- FLORESR
    begin
    -- 1. Set Apps Context
    fnd_global.apps_initialize (l_user_id, l_resp_id, l_application_id);
    -- 2. Get Approval Style ID
    l_approval_style_id := TO_NUMBER(hxc_preference_evaluation.resource_preferences(411669,'TS_PER_APPROVAL_STYLE',1,SYSDATE));
    dbms_output.put_line('l_approval_style_id = '||l_approval_style_id);
    -- 3. Create TIMECARD_TEMPLATE BB similar to the logic in hxc_timestore_deposit.create_timecard_bb passing the scope as TIMECARD_TEMPLATE instead of TIMECARD
    -- We are starting with a new timecard so clear the global tables
    -- hxc_self_service_time_deposit.initialize_globals;
    -- Also clear the local PL/SQL table
    -- hxc_timestore_deposit_util.clear_building_block_table(p_app_blocks => l_tbl_timecard_info);
    l_count_building_block := l_tbl_timecard_info.LAST;
    -- PROCEDURE clear_building_block_table (
    -- p_app_blocks IN OUT NOCOPY hxc_block_table_type
    -- 'generate' a TBB ID
    IF (l_count_building_block IS NULL)
    THEN
    l_tc_bb_id := -2;
    -- never start at -1 because that has a special meaning in the deposit
    ELSE
    l_tc_bb_id := - (l_count_building_block) - 2;
    END IF;
    dbms_output.put_line('Creating Timecard');
    hxc_timestore_deposit.create_timecard_bb (p_start_time => fnd_date.canonical_to_date ('2011/09/26 00:00:00')
    ,p_stop_time => fnd_date.canonical_to_date ('2011/10/09 23:59:59')
    ,p_resource_id => 411669
    ,p_resource_type => hxc_timecard.c_person_resource
    ,p_approval_style_id => l_approval_style_id
    ,p_comment_text => 'Come on start working'
    ,p_app_blocks => l_tbl_timecard_info
    ,p_time_building_block_id => l_tc_bb_id
    hxc_timestore_deposit.create_bb (p_time_building_block_id => l_tc_bb_id
    ,p_type => hxc_timecard.c_range_type
    -- p_measure => DEFAULTS TO NULL
    ,p_unit_of_measure => NULL
    ,p_start_time => fnd_date.canonical_to_date ('2011/09/12 00:00:00')
    ,p_stop_time => fnd_date.canonical_to_date ('2011/09/25 23:59:59')
    ,p_parent_building_block_id => NULL
    -- Timecard Template does not have a parent -- May need to check on this parameter
    ,p_parent_is_new => NULL
    ,p_scope => hxc_timecard.c_template_scope -- Template Scope
    -- p_object_version_number => DEFAULTS TO 1
    -- p_approval_status=> p_approval_status
    ,p_resource_id => 411669
    ,p_resource_type => 'PERSON'
    ,p_approval_style_id => l_approval_style_id
    -- p_date_from => DEFAULTS TO SYSDATE
    -- p_date_to => DEFAULTS TO hr_general.end_of_time
    ,p_comment_text => 'Template Trials'
    -- p_parent_building_block_ovn => DEFAULTS TO NULL
    -- new => DEFAULTS TO 'Y'
    -- changed => DEFAULTS TO 'N'
    ,p_app_blocks => l_tbl_timecard_info
    dbms_output.put_line('After creating Timecard l_tc_bb_id = '||l_tc_bb_id);
    -- 4. Create PRIVATE TEMPLATES Attribute Category and Template Name passed from UI
    dbms_output.put_line('Creating Template_Name Attribute');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_tc_bb_id
    ,p_attribute_name => 'Template_Name'
    ,p_attribute_value => 'Trial Template from Code'
    ,p_deposit_process => l_deposit_process
    ,p_app_attributes => l_tbl_attributes_info
    dbms_output.put_line('Creating Template_Type Attribute');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_tc_bb_id
    ,p_attribute_name => 'Template_Type'
    ,p_attribute_value => 'PRIVATE'
    ,p_deposit_process => l_deposit_process
    ,p_app_attributes => l_tbl_attributes_info
    -- Below will be in a loop later
    -- 5. Create the DAY BB
    dbms_output.put_line('Creating DAY BB');
    hxc_timestore_deposit.create_day_bb(p_day => fnd_date.canonical_to_date('2011/09/26')
    ,p_parent_building_block_id => l_tc_bb_id -- returned by create_timecard_bb
    ,p_app_blocks => l_tbl_timecard_info
    ,p_time_building_block_id => l_day_bb_id
    dbms_output.put_line('After Creating DAY BB l_day_bb_id = '||l_day_bb_id);
    -- 6. Create DETAIL BB for first shift, lunch and second shift
    dbms_output.put_line('Create DETAIL BB for first shift, lunch and second shift');
    hxc_timestore_deposit.create_detail_bb(p_type => 'RANGE'
    -- ,p_measure => NULL -- Pass Null as its a template
    ,p_start_time => to_date('2011/09/26 06:00:00','YYYY/MM/DD HH24:MI:SS')
    ,p_stop_time => to_date('2011/09/26 11:00:00','YYYY/MM/DD HH24:MI:SS')
    ,p_parent_building_block_id => l_day_bb_id
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_time_building_block_id => l_detail_bb_id
    dbms_output.put_line('After Creating DETAIL BB l_detail_bb_id = '||l_detail_bb_id);
    dbms_output.put_line('Creating Attribute 64869');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_detail_bb_id
    ,p_attribute_name => 'Dummy Element Context'
    ,p_attribute_value => 'ELEMENT - '||'64869' -- 01 Hours Worked
    ,p_app_attributes => l_tbl_attributes_info
    dbms_output.put_line('Creating Detail BB');
    hxc_timestore_deposit.create_detail_bb(p_type => 'RANGE'
    -- ,p_measure => NULL -- Pass Null as its a template
    ,p_start_time => to_date('2011/09/26 11:00:00','YYYY/MM/DD HH24:MI:SS')
    ,p_stop_time => to_date('2011/09/26 11:30:00','YYYY/MM/DD HH24:MI:SS')
    ,p_parent_building_block_id => l_day_bb_id
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_time_building_block_id => l_detail_bb_id
    dbms_output.put_line('After Creating DETAIL BB l_detail_bb_id = '||l_detail_bb_id);
    dbms_output.put_line('Creating Attribute 65172');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_detail_bb_id
    ,p_attribute_name => 'Dummy Element Context'
    ,p_attribute_value => 'ELEMENT - '||'65172' -- 02 Unpaid Lunch
    ,p_app_attributes => l_tbl_attributes_info
    dbms_output.put_line('Creating Detail BB');
    hxc_timestore_deposit.create_detail_bb(p_type => 'RANGE'
    -- ,p_measure => NULL -- Pass Null as its a template
    ,p_start_time => to_date('2011/09/26 11:30:00','YYYY/MM/DD HH24:MI:SS')
    ,p_stop_time => to_date('2011/09/26 14:30:00','YYYY/MM/DD HH24:MI:SS')
    ,p_parent_building_block_id => l_day_bb_id
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_time_building_block_id => l_detail_bb_id
    dbms_output.put_line('After Creating DETAIL BB l_detail_bb_id = '||l_detail_bb_id);
    dbms_output.put_line('Creating Attribute 64869');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_detail_bb_id
    ,p_attribute_name => 'Dummy Element Context'
    ,p_attribute_value => 'ELEMENT - '||'64869' -- 01 Hours Worked
    ,p_app_attributes => l_tbl_attributes_info
    -- 7. Deposit the Template
    dbms_output.put_line('Deposit the Template ');
    hxc_timestore_deposit.execute_deposit_process(p_validate => FALSE
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_messages => l_tbl_messages
    ,p_mode => 'SAVE'
    ,p_deposit_process => l_deposit_process
    -- ,p_retrieval_process => 'BEE Retrieval Process'
    , p_template => 'Y'
    ,p_timecard_id => l_new_timecard_id
    ,p_timecard_ovn => l_new_timecard_ovn
    COMMIT;
    dbms_output.put_line('l_new_timecard_id = '||l_new_timecard_id);
    IF (l_tbl_messages.COUNT <> 0) THEN
    i := l_tbl_messages.FIRST;
    LOOP
    EXIT WHEN (NOT l_tbl_messages.EXISTS (i));
    l_message := fnd_message.get_string (appin => l_tbl_messages (i).application_short_name,
    namein => l_tbl_messages (i).message_name);
    DBMS_OUTPUT.put_line (l_tbl_messages (i).message_name);
    DBMS_OUTPUT.put_line (l_message);
    i := l_tbl_messages.NEXT (i);
    END LOOP;
    END IF;
    end;

  • Great acne/scar removal trick + workflow tips for short music vids + creating a "template" in FCPX

    To all fine people of the FCP X community forum:
         I’ve received a tremendous amount of helpful commentary on these boards.  Using FCPX for my projects has really expedited my post production process.  I thought I would show my gratitude by giving a tip I have been using the **** out of.  For any skin imperfections like scars/acne/blemishes etc., i’ve been using the CENSOR tool.  Here’s a before and after, You can see the censor filter applied to her forehead and a separate censor application  with slightly different settings to her right cheek. 
         I thought this might help others who are photographers who like to include videos of their shoots with models but don’t want to deal with After Effects/Motion.  Full short video available here:  http://instagram.com/p/nqdtqzTT7m/
         Unfortunately I wouldn’t be making my entrance into this beloved forum if I wasn’t in search of some advice from those much wiser than I.  I am constantly making these 15 second BTS clips of my models and one of the most changed/switched out/substituted shots in almost every project I do is my first shot and the song selection.   Since I tend to use a lot of cuts even if I change the song last second it isn’t an issue to make a few adjustments between shots (helps that the duration of the video is so short) as long as the song has a fast tempo.  I don’t add my song selection to the primary storyline and connect my video clips due to the fact that usually the song may be swapped out once a model decides she’d prefer something else or if I have a change of heart.  Common sense tells me to avoid this annoyance by just working on my cuts first and waiting until the completion of my edit to add music.  So what i’ve been doing is just working on the video and while editing listen to potential tracks on iTunes or via finder.  But wanted to ask you guys:
    1 - Should I stop adding my audio at the very end as a connected clip and just make add audio directly to my primary storyline and all video that I add subsequently are just “connected clips”?  What is the benefit to this in regards to speed considering how often I am changing my starting and ending clips?  I never did this because I assumed if I don’t want to use the song any more it would be too much of a hassle to add those clips to a new song (seems like i’d have to create a compound clip of everything with the old song disabled).  Any thoughts?
    2 - Am I able to create a “template” for common projects?  For my BTS videos I generally always want my videos to be 23.98 fps, 1080, have 50 pixel margins on the top and bottom, generate a white background and have entire video shrink down to 58% for it to fit within the confines of apps like Instagram or Vine.  It would save a **** of a lot of time if I could just save a template for these projects…
    3 - I would just about KILL to see a few music video workflow options.  I’m a Lynda.com subscriber and don’t see any workflow options, searched Larry David’s tutorials couldn’t find any and there aren’t many options on Youtube.  Ever music video editor I know who works professionally uses Adobe Premiere… I would like to be the first in my circle to use and convince everyone to switch.
    Thanks again for your all of your help everyone, hope my tip helps someone!
    Anthony

    Muito abrigado my friend!  Seriously thanks a million, but I was curious to know about my situation regarding replacing my first shot multiple times... In another words there's a clip already in the storyline which won't allow me to replace edit since it just moves out of the way.  Would you just go back into the browser and add the original selection to the first clip?  Because I kept having to move my connected music and solid I just gave up and would wait until the end to add the music and solid (I add the solid to give the background a different color when I want to create the letterbox effect). 
    I just watched a music video tutorial where someone created a 3 minute solid, made like a hundred cuts with the blade tool and manually dragged each clip from his browser to replace from start for each of those cuts in the solid...
    What is your workflow for music-based edits?  Do you place the song in the primary story line and use the video as connected clips?  Do you use a solid or gap clip and dissect it with cuts and replace the segments with clips? I really hate not being able to add markers to the timeline and must make those marks on a clip/generator/music track of some kind.  Also if you have a project that has the same settings with fps, crop size, solid as a background is there a way to make template so I don't have to do that each and every time?
    Thanks again my friend!!!
    Anthony

  • Everytime i create a template it recks my menu bar!

    I created a css style sheet that would help me edit some things on my template that i have. I attached the css sheet to my template and have put not one thing in my style sheet yet. I was working with controlling the shape of my box on the div tags on the template. Then i notice that when i previewed my template in explorer my drop down menu bar at the top of the page was messed up. It move the drop down menu bar from horizontal to vertical. The background shading of the menu bar is still horizontal. I deleted my template1.dwt file and started over and created a new template from a HTML file that i used to make the template in the first place. It did the same thing as soon as dreamweaver moved the template file to the template folder. So i deleted the css style sheet that i create to try to controll the div tags and that did not work. So i created a new template file called Testtemplate.dwt and it works fine when it is under my html folder in my site. As soon as i go to template menu and create a template from this testtemplate.dwt file and it move it to the template folder it messes up the menu bar again. So i deleted the Templates folder in my site and started over. I created my fist template and named it template1.dwt and it recreated the Templates folder again and low and behold it is still messed up. It is like there is some sort of css or file controlling the Template folder and messing up the menu bar but i am new to dreamweaver and dont know where to look to stop this from happning. All the files or HTML pages attached to this template work fine but i am scared to update any content from this template as it may mess up all my HTML pages that use this template. Any help would be great!

    Hello,
    This is Jason with Mindspark Interactive Network Customer Support.
    I have reviewed your system details and it appears as though you do not have the My Web Search toolbar installed.
    I believe your issue stems from your search queries being redirected.
    To resolve this first I would like you to click the down arrow of the search box in the upper right hand corner. Confirm here that My Web Search has not been set as your default search. If it was your default search simply click Google in the drop down menu.
    If this does not resolve your issue it may be because your browsers search settings were not reset when you uninstalled the My Web Search toolbar.
    Please follow the instructions on our FAQ page:
    http://smileycentral.custhelp.com/app/answers/detail/a_id/3847/kw/search%20redirect
    If you need further assistance please email us at: [email protected]

  • "The system cannot create journal template"

    While creating the journal template for my legalapplication using wizard i get the following error
    "The system cannot create journal template"
    am using category, group and time as my header dimension --
    group dimension contains the LC.
    please suggest what steps can be taken. Also while trying to access journal from etools we get the message journal not found.
    Thanks

    Hi Andy,
    Please check how many sheets are in a default excel workbook on your client. If less than three, BPC fails to create the journal template. If that's the case, try setting default number of worksheets to 3, then retry journal template creation.
    If the above is not the issue, then you'll have to check that reporting services is working correctly. As a first step, go to http://<app server name>/reportserver (or reportserver$<instancename> if you are using a reporting services instance and left it with the default name)
    If that page compiles and shows without error, then try http://<app server name>/ reports (or reports$<instance name>) If that one also compiles/doesn't give errors, then reporting services is working.

  • Creating a facebook app in Muse

    I am trying to enter dimensions to create a facebook app in Muse. Everytime I enter a dimensoin however, it automatically changes the numbers I had entered- most times to 200. Anyone know why? Or know the exact dimensions for a facebook app?

    Hi
    You can try to format the text from BC end, Admin > Site Manager > Module Templates > Blogs
    Check the available options in layout editor and if you can define same format as you have used in Muse page then it should resolve the issue.
    You can also try to add formatting using html mode in layout.
    Thanks,
    Sanjit

  • Suggestions for most efficient way to create a second app or site with minor rebranding

    I've been asked to create a new Foundation 2010 ite that's going to be 90% the same site as one for another division. The current website uses custom masterpages and some other customization. My understanding is that the differences are going to be a different
    URL and some minor branding stuff. THey are external presence sites. I don't believe it's using search or much else in the way of services, custom wsps, etc. Very simple sites.
    I'm thinking of backing up the dbs, restoring using different mdf/ldf and db names, creating a new app and attaching, but not sure if the GUIDs will conflict. I'm also thinking that what the masterpages call in _layouts may need to be changed, which should
    be pretty simple.
    Anything I'm overlooking?
    Also, apologies for using apps and sites interchangeably, I'm aware of the differences. I was actually asked to create a new site and assign a new URL to it, but if that's doable it sounds more complex to me.
    Thanks,
    Scott

    Hi,
    According to your post, my understanding is that you want to create a second app or site with minor rebranding.
    I recommend to create a test environment for existing production enviroment.
    For more information, you can refer to:
    Moving content between SharePoint environments
    Copy SharePoint production data to a test environment
    Build a SharePoint 2010 Test/Development Farm
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • How to create matrix template help pls

    hi frs,
    i have generated xml file after creating matrix report in report builder.
    i want to know how to create matrix template(rtf) in word document.
    if i use wizard or insert> all fields i am not getting rtf like matrix.
    help pls
    Thanks
    Rajesh

    This issue is really becoming a problem for us. Does anyone have any examples of label templates. The label when generated automatically converts from pontrait to landscape. If you increase the size of the template then word complains about the page and margin size before printing.
    Anyone have any ideas?
    Thanks

  • Do I really have to create two separate Apps for Ipad1/2 and iPad3?

    Hi there DPS-Team
    I want to create an iPad-Magazine using the DPS. I read all the stuff about the alternate layouts and watched the videos on the channels. Now I ran into what I might call a problem for that I couln't find a solution yet. With my creative cloud membership I can create unlimited app using DPS...but I simply cannot create one app that supports iPad 1&2 + iPad 3 display resolution???
    Here in that article that I ran into where you suggest NOT to create an only iPad3 version: http://blogs.adobe.com/indesigndocs/2012/03/guidelines-for-creating-folios-for-ipad-3.html
    - So if I want one issue of a magazine to be iPad3 compatible then I have to create another app?
    - Or how this works? I have no expierience in how that looks in the App Store. But does Apple show both versions of the same App in the Store?
    - Does the user see both versions of my App in the App Store or only one depending on the version of the iPad he posseses?
    - Do I would have to create a diffrent icon for the SD as well as the HD-app so reader could choose in the App Store?
    Example: All my apps on my iPad2 of course have 1024x768 but when I recently syncronized the iPad3 with iTunes then I automatically get the update-Info over the App Store icon that I can update the new version of the App optimized for the Retina-Display.
    I mean that is a simple feature that nearly all apps are offering. Of course if I would not use the DPS I would have to again hire a developer and pay him for updating my already published app...but at least he could resubmit it supporting both resoutions.
    I hope you are getting my point here.  That is an important feature that should be build in no matter if I am a Single Edition customer or Business or Enterprise one. If you would do a catalog or something else for your client, he sees that all his apps on his iPad are updating according to his new device. But the catalog app that I did for him not. He would ask why can't you build it that way for me?  I would have to explain him: Sorry I cannot create both version in one app, you and your clients have to download two versions of your app if you want to have it look nice. That is not a very good selling argument for me.
    I really have to say that if there is no workaround, I am a bit disapointed because it does not make sense to create two seperate apps of the same app. I really would be happy to receive some helpfull advise on how to get both resolutions supported and when that is going to happen or even better...I misinterpreted the whole thing.
    And please: NO I don't want to upgrade to business or enterprise edition!
    Thank you for your words of advise, opinions and help.
    Regards
    Sushil

    Dear Bob,
    I will try that out.  But do you see any chance in the near future that when you create an article out of InDesign, that you can then add multiple layouts with different resolutions? Then I wouldhave one article that contains iPad SD&HD as well as V&H.
    So that would be a time saver. Create only one folio that already have the different resolutions covered. I only would have to work with one article inside folio-file for all the devices. Just a thought.
    Thank you for your quick response.

  • 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.

  • How can I set Metronome to be OFF by default, besides creating a template file?

    Default setting for the Metronome was always OFF until I upgraded to iLife '11.
    From an archived thread on this topic, I was reminded of the technique of creating a template file to open with instead of "Create a New File", but that's a hassle to remember and find. And you have to remember to "Save as..." as soon as you get started.

    The Metronome is on every time I open any of my previous files, even after I turn it off. The next time I open the file, it's on again.  Impossible to stop that?
    If the answer is "no", then this is a BUG in this version of GarageBand.  Can't Apple developers correct that and issue an update?

  • Is there a way to create my own app store that I can share with employees? I'm thinking apps that we've identified as important or needed, all in one place.

    Is there a way to create my own app store that I can share with employees? I'm thinking apps that we've identified as important or needed, all in one place.

    Not exactly your own app store, but close.  Apple has an App Store Volume Purchasing Program for Business > http://www.apple.com/business/vpp/
    It allows you to purchase apps in any quantity you desire and pay using a company credit card.  You will receive a spreadsheet of redeem codes which you distribute to your emloyees.  The program guide has complete information > http://images.apple.com/business/docs/VPP_Business_Guide_US.pdf

  • How to create a simple app using the MVC approach?

    Hello gurus i'm trying to learn the SAPUI5 and i'm trying to create a simple app using the MVC i created the app and trying to add a lable to the view but there is nothing appear when i run it the code for the HTML page
    <!DOCTYPE HTML>
    <html>
      <head>
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <script src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"
      id="sap-ui-bootstrap"
      data-sap-ui-libs="sap.m"
      data-sap-ui-theme="sap_bluecrystal">
      </script>
      <!-- only load the mobile lib "sap.m" and the "sap_mvi" theme -->
      <script>
      sap.ui.localResources("mytestapp");
      var view = sap.ui.view({id:"idshell1", viewName:"mytestapp.shell", type:sap.ui.core.mvc.ViewType.JS});
      view.placeAt("content");
      </script>
      </head>
      <body class="sapUiBody" role="application">
      <div id="content"></div>
      </body>
    </html>
    the code for the view
    sap.ui.jsview("mytestapp.shell", {
      /** Specifies the Controller belonging to this View.
      * In the case that it is not implemented, or that "null" is returned, this View does not have a Controller.
      * @memberOf mytestapp.shell
      getControllerName : function() {
      return "mytestapp.shell";
      /** Is initially called once after the Controller has been instantiated. It is the place where the UI is constructed.
      * Since the Controller is given to this method, its event handlers can be attached right away.
      * @memberOf mytestapp.shell
      createContent : function(oController) {
      var oLabel = new sap.ui.commons.Label("l1");
      oLabel.setText("Test label");
      oLabel.placeAt("content");
    i dont know what is wrong or if i should use a container to display my controls
    any help will be appreciated
    thanks in advance

    Hi,
    Instead of   oLabel.placeAt("content"); use return oLabel;
    so it will as below,
    createContent : function(oController) {
      var oLabel = new sap.ui.commons.Label("l1");
      oLabel.setText("Test label");
      return oLable;
    Regards,
    Chandra

Maybe you are looking for