How to manage a new Set Up time

I have a Client with a particular requirement to manage Set up time as a planning function. There requirement is that they Campaign a batch of 10 orders and say after every 5 Campaigns they want to manage a new Set Up time to reflect extra cleaning for example.  So the Standard Recipe Value for Set Up would be 10min but for this u2018Clean downu2019 it would be 60mins for example.
I was wondering how this can be managed.  I guess particularly what is the Recipe master data set up as there is only one field for the standard value/Set Up?
Does PPDS allow you in Scheduling to add an extra set up interactively as the Capacity Planning Table in ECC does not in PP-PI it does allow set up matrix in PP  GREAT!
One solution I did think of awas an Event Process order that would occupy the capacity/time but this would be a manual process.
any thoughts community

May I change later the name SET 1 to other not so default name? How I input that on your script?
It would be better to name the ActionSet right away, but I frankly don’t know how.
Unfortunetly, I wanted to wait not 1 second but just stop there and continue the script after I press ESC. Not possible keyboard detection in the middle of a running script.
What exactly do you want to do while the Script halts? Would you need to zoom in and move the canvas around or do any other operations?
Well, this Set 1 will be erased at the end because I only need it to call fullScreen mode of an active image for a 1 or 2 seconds and then go back to normal view and also delete SET 1.
Say what?
Full Screen Mode and Standard Screen Mode could be invoked from Script. 
var idslct = charIDToTypeID( "slct" );
var desc69 = new ActionDescriptor();
var idnull = charIDToTypeID( "null" );
var ref49 = new ActionReference();
var idMn = charIDToTypeID( "Mn  " );
var idMnIt = charIDToTypeID( "MnIt" );
var idscreenModeFullScreenWithMenubar = stringIDToTypeID( "screenModeFullScreenWithMenubar" );
ref49.putEnumerated( idMn, idMnIt, idscreenModeFullScreenWithMenubar );
desc69.putReference( idnull, ref49 );
executeAction( idslct, desc69, DialogModes.ALL );
var idslct = charIDToTypeID( "slct" );
var desc67 = new ActionDescriptor();
var idnull = charIDToTypeID( "null" );
var ref47 = new ActionReference();
var idMn = charIDToTypeID( "Mn  " );
var idMnIt = charIDToTypeID( "MnIt" );
var idscreenModeStandard = stringIDToTypeID( "screenModeStandard" );
ref47.putEnumerated( idMn, idMnIt, idscreenModeStandard );
desc67.putReference( idnull, ref47 );
executeAction( idslct, desc67, DialogModes.ALL );

Similar Messages

  • How to enter a new Date and Time each day in a Numbers Spreadsheet...

    Hi... I have finally decided to move away from Excel and really give Numbers a shot... I have an application where each day I first enter the current date and time into a particular cell of a new row and then I enter some data in cells adjacent (in the same row) as that entered date-time. Then the next day I want to again enter the (new) current date and time and add more data next to that new date-time and so forth day after day... You can't use something as simple as =NOW() because then everyday, ALL of the date-times would change to the current time... Nope, now what I want... I just want to be able to EASILY and QUICKLY enter the current date-time value in one call and then have that specific value stay there forever... In Excel, this is accomplished with the keyboard shortcuts of
    <cntl> followed by a semicolon (;) for the date
    then enter a single space (for separation of date versus time) followed last by
    <command> followed again by a semicolon...
    So all together that is,
    <cntl><;><sp><command><;>
    and that puts something like
    4/10/2010 9:49:00 AM
    in a single cell...
    That's what I now want to be able to do in Numbers...
    How do I do that??? Do I use the menubar item "Insert Date and Time" and if so, how exactly do I get the current time to show up in the chosen cell??? With formatting??? Is there a keyboard shortcut method like the one I mentioned that works for Excel?? I've perused the manual and though I found lots on date-time, I didn't see how to do specifically what I want to do... I likely just missed it as surely it must be easy to do...
    Any feedback would be much appreciated... thanks... bob...

    Badunit wrote:
    The result of running that script is "UI Enabled = TRUE".
    I have cells named by the header values.
    This may be the problem.
    The script is an old one which deciphered only the letter+digit cell references.
    Here is a new version which works with every kind of cell reference.
    --[SCRIPT insertDateTime]
    Enregistrer le script en tant que Script : insertDateTime.scpt
    déplacer l'application créée dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Placez le curseur dans la cellule qui doit recevoir la date_heure
    menu Scripts > Numbers > insertDateTime
    La cellule pointée reçoit la date_heure.
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    +++++++
    Save the script as a Script : insertDateTime.scpt
    Move the newly created application into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Put the cursor in the cell which must receive the date_time.
    menu Scripts > Numbers > insertDateTime
    The pointed cell receives the current date_time.
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    Yvan KOENIG (VALLAURIS, France)
    2009/03/01
    2010/04/11 is now able to treat every kind of cell references
    property theApp : "Numbers"
    --=====
    on run
    set {dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
    my doYourDuty(colNum1, rowNum1, tName, sName, dName)
    end run
    --=====
    on doYourDuty(c, r, t, s, d) (*
    c = columnIndex
    r = rowIndex
    t = table's name
    s = sheet's name
    d = document's name *)
    local cdt
    set cdt to my cleanThisDate(current date) (* the new date_time as a clean date_time *)
    tell application "Numbers" to tell document d to tell sheet s to tell table t
    set value of cell r of column c to cdt as text
    end tell -- application …
    end doYourDuty
    --=====
    on cleanThisDate(dt)
    (* ugly code but once I got date_time with milliseconds so if necessary, I drop them *)
    local l
    set l to my decoupe(dt as text, ":")
    if (count of l) > 3 then set dt to date (my recolle(items 1 thru 3 of l, ":"))
    return dt
    end cleanThisDate
    --=====
    on getSelParams()
    local r_Name, t_Name, s_Name, d_Name, col_Num1, row_Num1, col_Num2, row_Num2
    set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
    if r_Name is missing value then
    if my parleAnglais() then
    error "No selected cells"
    else
    error "Il n'y a pas de cellule sélectionnée !"
    end if
    end if
    set two_Names to my decoupe(r_Name, ":")
    set {row_Num1, col_Num1} to my decipher(item 1 of two_Names, d_Name, s_Name, t_Name)
    if item 2 of two_Names = item 1 of two_Names then
    set {row_Num2, col_Num2} to {row_Num1, col_Num1}
    else
    set {row_Num2, col_Num2} to my decipher(item 2 of two_Names, d_Name, s_Name, t_Name)
    end if
    return {d_Name, s_Name, t_Name, r_Name, row_Num1, col_Num1, row_Num2, col_Num2}
    end getSelParams
    --=====
    set {rowNumber, columnNumber} to my decipher(cellRef,docName,sheetName,tableName)
    apply to named row or named column !
    on decipher(n, d, s, t)
    tell application "Numbers" to tell document d to tell sheet s to tell table t to return {address of row of cell n, address of column of cell n}
    end decipher
    --=====
    set { d_Name, s_Name, t_Name, r_Name} to my getSelection()
    on getSelection()
    local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
    tell application "Numbers" to tell document 1
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of tables
    if x > 0 then
    repeat with y from 1 to x
    try
    (selection range of table y) as text
    on error errMsg number errNum
    set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
    return {theDoc, theSheet, theTable, theRange}
    end try
    end repeat -- y
    end if -- x>0
    end tell -- sheet
    end repeat -- i
    end tell -- document
    return {missing value, missing value, missing value, missing value}
    end getSelection
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on parleAnglais()
    local z
    try
    tell application theApp to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    It's available on my idisk :
    <http://public.me.com/koenigyvan>
    Download :
    For_iWork:iWork '09:for_Numbers09:insertDateTime.zip
    Yvan KOENIG (VALLAURIS, France) dimanche 11 avril 2010 14:16:41

  • How to Advice/help on setting up Time Machine using 3rd party NAS please

    I have a mixed home network with both Macs and PCs.  All use a NAS device (Buffalo) to store data.  I then back up to another drive which I attach via a USB socket on a PC once a week using Acronis.  This is a 24-carat pain.  I have another NAS device and would like to use Time Machine to back up (a) The Buffalo (b) The Home Folders on the Macs.  Actually I haven't managed anything (a) Time Machine only looks for wireless devices (b) Any documentation I've read suggests Terminal commands which might or might not work, sparse images which I don't understand and the rest...  I understood from reading that this can work but I can't see how.  Does anyone have a "Painting by numbers" scheme for making this work?  TM seems such a clever system it seems a shame to have to resort to a normal back-up program.  Thanks for any help!

    mouson wrote:
    I ... would like to use Time Machine to back up (a) The Buffalo
    some NAS(es) can be used as destination for time machine backups, however, time machine will not back up networked drives such as a NAS.
    a 3rd party tool like ChronoSync may be able to back up NAS (A) to NAS (B) but i haven't tested this.

  • How to add a new HD to Time Capsules daily back-up

    So, i have a 1TB Iomega drive housing all my Time Machine back-ups. I also have an additional 1TB Iomega drive housing all my video/audio files. When Time Machine performs it's hourly back-up, it only checks the new items on my Mac Mini's drive. I have over 700GB of info on my Audio/Video drive that i want to be backed up by Time Machine....
    So.....i followed +/- instructions for adding/subtracting drives to NOT back up. Unfortunately, my Audio/Video drive that i want to have Time Machine back-up is not available. It is listed in my list of available drives, but its name is shaded, and i can not click on it to either add/subtract from the list. I assume if it's not in dark, bold text, then it should be having Time Machine back it up hourly, right? Well, it's not. Does anyone know what the heck i'm talking about, and if so, how to solve this problem? It seems like a ridiculously easy thing to solve, but i've hit a wall. Any help would be GREATLY appreciated.

    comiconline wrote:
    That all said, i have an additional question. When Time Machine backs up your files, does that also include DELETED files? In other words, if i decide to delete a bunch of files on my Media HD, will Time Machine delete those files from the back-up drive, too, so that Time Machine only retins files that i CHOOSE to keep on my computer?
    Eventually it may delete them, but if TM did a backup while you still had those files on your Media HD (which I am assuming is being backed up by TM), it does retain the data on your backup drive.
    I don't want to have a ton of files taking up space on the back-up drive that i deleted from my Media HD.
    If you have no use for those files and want to delete them completely, just open Finder and click on the TM icon on the Dock. Locate the folder where those deleted files resided. Click on the files you want to totally delete. Click on the Gears button and select +Delete all backups of+ ---. The space taken up will not instantly be recovered, so you may not see a drop in backup size. Eventually TM will eat up that space, so don't worry about it.

  • How to create the new task without time through WCAP

    Hi
    I am trying to create the new task by using WCAP commands. I want to create the task with out time, that is "no time" option that u see in the web access. If I set the duedate without time its putting 12:00 AM as default. Is there any option that I need to set for WCAP command in order to set the "no time" option. Any help is appreciated.
    Thanks
    Hari

    Hi Anusha,
    This code correct for your requirement, only thing is you are not able to modify it as per your requirement.
    What you have to do is:
    1. Copy queried row into into new row, change primary key values(but don't commit your changes here).
    2. Now you have two rows in your VO(OLD as well as New)
    3. Make any changes if you want using User Interface.
    4. At the save button first compare OLD and NEW row, if any value is differing then commit the chnages(it will insert new row in corresponding database table), if no changes are there I mean to say OLD value and NEW rows are same then rollback(it will remove copied row from VO and no row will be inserted in database.)
    While comparing rows please note that Primary keys will not be same so don't compare Primary keys while comparing rows.
    I hope it will help you.
    Regards,
    Reetesh Sharma

  • How to restore a new drive from Time Machine.

    I am upgrading the HDD in a 13-inch uni-body MacBook Pro on Leporad. I've completed the latest time machine back up to the external and replaced the drive. How do I get the system to boot from the external. Is the boot disc required or is there another way?

    You nedd the Install Disc 1st.
    How to format your disks...
    http://www.kenstone.net/fcp_homepage/partitioning_tiger.html
    (To Install OSX on an IntelMac the Drive it needs the GUID Partitioning scheme mentioned at the bottom.)
    Thanks to Pondini, Formatting,  Partitioning, Verifying,  and  Repairing  Disks...
    http://Pondini.org/OSX/DU.html

  • How to manage one wsp and dll for multiple clients in farm environment

    1. There is a product which is developed using C sharp , jquery,CSS and sharepoint object models which have been packaged into .wsp file. Whenever we introduce new functionality to the product we used to branch the
    previous code as a version , say Version 1.0 and new functionality of the product will in another solution. This is how we are managing the code in TFS as versions. Each newer version will have new functionalities. We do not give latest functionality for all
    the clients. Each client is having its own version of functionality. Technically in order to access the functionality, the wsp solution should be present in the solution repository which is available in SharePoint central administrator site. This solution
    will be deployed on the client’s site. We are following the above process in SharePoint standalone installation where we used to purchase dedicated server per client and installed sql, SharePoint foundation 2010 as standalone installation and adding the client
    related version of the code to the solution repository. Later host on the site which is created for that client purpose. This process is same for all the clients where we purchase individual server for each client .
        Now we want to host our product in farm environment of sharepoint foundation 2010 where we are going to try 3 level architecture. 
    • SQL Server-In this sever we are going to install sql server 2008R2 standard edition. Which should serve the database service for all the web applications/sitecollections which we are going to create in Web front end server.
    • Application server- In this server we are going to install the sharepoint as farm and will install search server express for serving search functionality for our product
    • Web front end server- In this server we are going to add this server to Sharepoint farm which we have created in application server. Here we are going to create web applications and site collections for all the clients.
    In this scenario how to manage multiple versions of same wsp solution?
    Another major issue w.r.t the architecture of the product and new approach for client deployment as follow.We have CSS, jquery files for serving the functionality.These files have been mapped to 14 hive folder.If any changes we do one of the jquery file or
    css file which is meant for latest version and not for old version, then how to manage this new functionality for that particular css or jquery file in 14 hive folder, since there is only one 14 hive folder. What is the best practice to make this happen? Another
    thing is, how to manage dll files for individual client?

    It sounds like you have a farm scoped solution at work. In that case you can only have a single instance of it per farm, you'd have to branch each version so they appear to be seperate solutions entirely (thus ruining your clients upgrade process).
    Bluntly i don't think a single farm can manage all your user environments.

  • Unable to set network time and date

    My Applet TV2 is unable to set the network time and date making it so I cannot login to my itunes account so not Netflix or anything making it pointless. I have tried adjusting my router settings (although I've used the same router for over and year and this just started randomly) I have ensured Port's 123 are open, I've restored the ATV2 4 times and have reset my router. I've seen links showing how to use SSh to set the time but I'm unsure if that will work. Any help is appreciated as I'm at a loss at this point

    Welcome to the Apple Community.
    Of the things I've seen work for people in the community you seem to have done most of them, but did you try these.
    Restart Apple TV by removing ALL the cables for a moment or two.
    Ensure that the DNS address's used by the Apple TV and the router are the same and are the address recommended by your ISP.

  • Std Value Exclusion in Scheduling :Considering Longest Set Up time

    Greetings..
    1.) I have one prodcuiton order , having Three opeartion.
    each operation having setup time as
    Op.1 - 150 min.
    Op.2 - 50 min
    Op.3 - 70 min
    also having Machine time.
    During scheduling result...set up time included in sheduling  each time when respective opeartion schedule.
    Instaed can we suggest sytem to take longest set up time among all opeartion during scheduling ,
    So while scheduling second & third opearation , it include only mahcine time & excluding set up time.
    2.) Is it possible to do Scheduilng without considering one of std valu out of two mentined in routing ?? How?? ONly want set up time for costing purpose ???

    Dear,
    Ok then please try with remaning opertion's work center don't mainatian any formula for scheduling in work center and enter set-up value for all operation in routing so it will not include in the scheduling of operation.
    Regards,
    R.brahmankar

  • Create a new set of skin and style for OC4J

    hi, I have created a new set of skin and style
    for example,
    just duplicated folders s_oracle10 , sk_oracle10 and rename them as s_oracle10b , sk_oracle10b (in \OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res)
    however, I found that there is no new choice - oracle10b in the dropdownlist for selecting style.
    how to create a new set of skin and style ??

    I have read Oracle® Business Intelligence Suite Enterprise Edition Release Notes Version 10.1.3.4.1 E10404-25
    =====================================================================
    In Chapter 10, the section "About Skins and Styles" contains incomplete
    information. The following information should appear after the section's first
    paragraph:
    Respective Web servers require resource files like styles to be deployed
    appropriately for those applications. For example, when using OC4J as is common
    in Oracle BI deployments, skins, styles and images need to be duplicated in the
    following directories:
    – {OracleBI}\oc4j_bi\j2ee\home\applications\analytics\analytics\res
    – {OracleBI}\web\app\res
    As a rule, customer-specific files like custom styles should live in the
    {OracleBIData} folders so these are not lost during upgrades. In this case, the
    custom style would then be deployed to OC4J as described above and to the
    following directory: {OracleBIData}\web\res
    ===================================================================== copied from the pdf
    we need to copy the new set to two directories.
    however, I found that resources of the new set are from {OracleBI}\oc4j_bi\j2ee\home\applications\analytics\analytics\res
    not from {OracleBI}\web\app\res
    if there is a upgrade or redeployment, will the new set be removed or replaced.
    why isn't load from {OracleBI}\web\app\res?
    how to configure to make it load from {OracleBI}\web\app\res?
    thanks

  • Not sure on how to return a new object

    hi i am not sure on how to return a new Set object, i am not asking how to code this, i just don't exactly know what to write after "return.." to return a new object ...that part of the code is towards the bottom where i put arrows.....this is the skeleton of the code:
    public class Set
         // define fields here
         public Set(int maxinteger)
              // complete this method
         public boolean add(int integer)
              return false; // replace this line with your code
         public boolean remove(int integer)
              return false; // replace this line with your code
         public boolean contains(int integer)
              return false; // replace this line with your code
         public int size()
              return 0; // replace this line with your code
         public String toString()
              return null; // replace this line with your code
         public void addAll(Set other)
              // complete this method
    --------->     public Set subset(int min, int max)
              return null; // replace this line with your code
    ----------->     public Set intersection(Set other)
              return null; // replace this line with your code
    ------------->     public Set difference(Set other)
              return null; // replace this line with your code
         }

    well, when you use return is when trying to make a method have a value that have to be returned from it.
    In your case you have a Set CLASS, with methods, some methods have to return Strings, ints, Objects, etc.
    just make sure that you are returning the same type of value than the method say.
    the method parts are:
    modifier returnType name (parameters) {
    . code
    modifiers are public, private, etc.
    the return type specifies what the method will return, for example:
    public String toString () {
    must return a String value.
    to return a new Object just do it like a simple value, Strings are objects.
    just define a Set object and then return it.

  • How does one manage these new render setting for previews?

    I placed 4 HD clips from a nested into a sequence 5800 x 768 to mimic 4 side by side monitors for a multi channel video.  Each clip cut from the sequence are at 1280x720 all sitting side by side. However when I rendered the previews, they came look all squished. However when I exported the frame it looks fine in Photoshop. (I changed the uploaded image to what it looks like in Premiere in Photoshop to demonstrate the appearance in Premiere.)
    I imagine that the distortion has to do with the sequence render setting which for some reason comes out to 1918 x 253...or the pixel aspect ratio? How does one manage these new render setting for previews so it looks normal in the monitor? 
      

    Either way, I thought that this format would be a great way to view on the monitor 4 channels at the same time. I may need to place them on a “normal” 1440 x 1080 sequence in a line, bringing them down to 25% scale to make it work in the end. I did just try that. I think it will work...but when I imported and nested the old file, the scratch disks changed from the original set up on a D drive back to the main hard drive so I had to change it agin. Otherwise it works fine...so I’ll go with this for now
    These are the instructions I was given.I attched a screen save of the AE file they asked me to use (They must be on vacation, because I have not been able to get hold of them). I don't know After Effects very well:
    “As you begin creating or adapting work for e4c, you may find an After Effects template developed for this system to be helpful. Attached you'll see a zipped file with two AE templates. There is some detailed information (below) from the artist that developed these for us. In addition, a few bits of information that might help you along are:
    ·        The "Watchout"  playback system can support WMV or a QuickTime files . We like .mov files with H.264 codec best!
    ·        The end resolution of the four screens is 5120 x 720 pixels (1280x720 each).
    ·        If works are four-channel, please provide a separate audio (aiff) file so it doesn't slow any one video down.”
    Thanks for your help!

  • Why was there over ten thousand file in my "All My Files" on my new MBP. I'm very new at using ICloud. I don't understand syncing vs time vs time vs syncing! I simply have not idea how to manage my file now.

    Why is there over ten thousand file in my "All My Files" on my new MBP. I'm very new at using ICloud. I don't understand syncing vs time vs time vs syncing! I simply have not idea how to manage my files now. I read short comments & how to's in the support sections, but nothing I've read so far explains"best practices" or turning iCloud off to get a grip on managing files. I have 250gb fast storage on the MBP itself, and 200gb in the ICloud, one would thing that's enough. The files seem too be multiplying like rabbits. IPhoto's Faces has created hundereds of "somethings" not sure what. I am sure I am very frustrated! Please comment with kindness.

    gf raines wrote:
    Yes,I am confused. To say its just another drive is a "buzz statement".
    OK, for example. If I download a document, song, or photo from ICloud, as I understand, it goes to Download in Finder. If I want to move it to a local folder of my choice on the solid state drive in my new MBP, does a copy always stay in ICloud? How do you housekeep? I have always  used to a physical drive. What is different about the mind set.  I used ICloud to store the contents of my old MBP. Once I download all the files I need, should I turn off ICloud and manage the file locally? I don't like the automatic movement of files when I don't understand the locations.
    Nope, you don't understand it.
    If you download a song from the iTunes cloud storage (which is not iCloud) it goes into the iTunes music folder (generally to a subfolder therein)
    If you download a document from the iCloud drive it will go wherever you chose to put it.
    If you download a photo from the iCloud Photo library it will also go wherever you choose to put it.*
    If you move something you have not copied it, if you want to keep a copy on the iCloud drive and in a local folder, you would copy, not move it.
    There is no 'automatic' movement, you decide what to store on the iCloud drive (exactly like any other drive) and what to remove.
    The iCloud drive appears as a folder in Finder, you use it just like any other, copy/paste, save, delete etc.
    You can turn the iCloud drive off whenever you like, download the content to a local drive first.
    * Because the iCloud drive appears as a folder in Finder there is in fact no need to ever download anything to your Mac, everything on the drive is already on your Mac.

  • How do I set up my new Laptop with Time Machine?

    I just purchase a new Laptop and I want to use the Time Machine drive from my imac to set it up two questions are
    Can this be done and how?
    and
    My new machine comes with Mac OS X 10.6 Snow Leopard the imac is running Mac OSX 10.5.8 Can I do this "migration" but install the newer OS?
    Thanks for your help
    Barry

    Oh, but wait - maybe you want to migrate the settings from one machine to the other?
    You could do it from the time machine drive, again, just plug the time machine from the old machine into the new one and open migration assistant.

  • How do i set the home button to refresh open tabs instead of opening new ones each time i click on it

    Everytime i click on the "home" button, FF 3.6 opens my three home pages as three new tabs. If i click twice, it opens three more. In IE, if i click the home button i have a choice to either refresh the three tabs starting with which ever one is open (for example, if my second tab page is where I am, that becomes home page #1 and so forth) OR i can select the specific home page i want to return to via a drop down.
    At a minimum, I'd like to set my home button to just open using currently open tabs and not appending. It must be possible b/c DH's FF browser does not do this. What am I missing?

    The best way to keep your home page in the tab is to open other links in a new tab with a middle-click.<br />
    Clicking the home page always open a new set, so you would have to close the current tabs first to prevent getting multiple home page sets.<br />
    I don't know if there is still an extension that can open the home pages and replace the current set.
    See also:
    *https://addons.mozilla.org/en-US/firefox/addon/multiple-tab-handler/

Maybe you are looking for

  • Can't find downloads folder since i updated

    Through Blackberry Desktop Software I updated my Curve and it changed everything.  I hate my phone now but my biggest problem is that no matter where I look I can't find my downloads folder.  I even went to options-->homescreen preferences-->download

  • Error: ORA-00932: inconsistent datatypes: expected - got

    getting error OPEN pio_cstdn_extract_cur FOR v_chr_sql; loop fetch pio_cstdn_extract_cur bulk collect into l_c1, l_c2, l_c3 limit l_limit; for i in 1 .. l_c1.count loop dbms_output.put_line( l_c1(i) || ',' || l_c2(i) || ',' || l_c3(i) ); end loop; ex

  • BlueJ Help [Mainly File Operations, I think]

    I've been working on my Computers project for ages and have been breaking my head over it. It's 5AM and I'm still awake. Could somebody please please please help me with this code:     public void Rates() throws IOException, IndexOutOfBoundsException

  • New to Dreamweaver - need new-image-on-refresh code

    Hi everyone, I hope this is the appropriate place to post this request, if not, please redirect me. Thanks. I have extremely limited knowledge using Dreamweaver and coding (ie: I know basic html), but I am attempting to build a page where the image I

  • Error in Goods Receipts

    Dear All, For one of my clients configuration unit testing for Goods Receipts, I am getting error message"Country key  has no ISO code". I  Have checked all probable configuration settings for Country Key. But could not fix it. Please guide me for pr