How to set global variables for use by all THE #subform [0] items of form1. ?

Hi all

I don't know how to code javascript but am new to Adobe LiveCycle.  When I open the script editor, I have the following code (the code is in United Nations in bold):

-form1. #subform [0]: initialize :-(FormCalc, client).

//////////////////////////////
TO START: SET GLOBAL PRICES.
//////////////////////////////

var Cityscope_Sydney_CostUser1 = 60,39;
var Cityscope_Sydney_CostUsers2to5 = 3.02;
var Cityscope_Sydney_CostUsers6to20 = 1.21;
var Cityscope_Sydney_CostHardCopyWithOnline = 14.59;
var Cityscope_Sydney_CostHardCopyWithoutOnline = 54,67;
var Cityscope_Sydney_CostHardCopyAdditional = 14.59;

var Cityscope_NorthSydney_CostUser1 = 48,40;
var Cityscope_NorthSydney_CostUsers2to5 = 2.42;
var Cityscope_NorthSydney_CostUsers6to20 = 0.97;
var Cityscope_NorthSydney_CostHardCopyWithOnline = 14.59;
var Cityscope_NorthSydney_CostHardCopyWithoutOnline = 43,54;
var Cityscope_NorthSydney_CostHardCopyAdditional = 14.59;


////////////////////////////
END: SET GLOBAL PRICES.
////////////////////////////

-form1. #subform [0]: enter :-(FormCalc, client).

-form1. #subform [0]: output :-(FormCalc, client).

-form1. #subform [0]: calculate :-(FormCalc, client).

-form1. #subform [0]: validate :-(FormCalc, client).

-form1. #subform [0]: preSave - (FormCalc, client).

< < = etc etc etc = > >

-form1. #subform [0]. Item1Cost::initialize :-(JavaScript, client).

-form1. #subform [0]. Item1Cost::enter :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::exit :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

Store the values of the form of friendly names.
var AreaSelected = Item1Area.rawValue;
var NumberOfUsersSelected = Item1Users.rawValue;

Declare other variables.
var Users1Calculation;
var Users2to5Calculation;
var Users6to20Calculation;


Calculate the cost to the "components" user will depend on the number of users selected for the region.
Switch (true)
{
If (NumberOfUsersSelected < 2):
Users1Calculation = NumberOfUsersSelected * Cityscope_Sydney_CostUser1;
Users2to5Calculation = 0.00;
Users6to20Calculation = 0.00;
break;
If (NumberOfUsersSelected > 1 & & NumberOfUsersSelected < 6):
Users1Calculation = Cityscope_Sydney_CostUser1;
Users2to5Calculation = (NumberOfUsersSelected - 1) * Cityscope_Sydney_CostUsers2to5;
Users6to20Calculation = 0.00;
break;
If (NumberOfUsersSelected > 5):
Users1Calculation = Cityscope_Sydney_CostUser1;
Users2to5Calculation = 4 * Cityscope_Sydney_CostUsers2to5;
Users6to20Calculation = (NumberOfUsersSelected - 5) * Cityscope_Sydney_CostUsers6to20;
break;
by default:
Alert ("BROKEN: calculate the individual components of cost of use will depend on the number of users selected for the region.");

}

apply the total cost for this article
Item1Cost.RawValue = Users1Calculation + Users2to5Calculation + Users6to20Calculation;

-form1. #subform [0]. Item1Cost::validate :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::MouseEnter :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::mouseExit :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::change :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::full :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::MouseUp :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::MouseDown :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::click :-(FormCalc, client).

-form1. #subform [0]. Item1Cost::preSave - (FormCalc, client).

-form1. #subform [0]. Item1Cost::postSave - (FormCalc, client).

-form1. #subform [0]. Item1Cost::prePrint - (FormCalc, client).

-form1. #subform [0]. Item1Cost::postPrint - (FormCalc, client).

-form1. #subform [0]. Item1Cost::preSubmit:form - (FormCalc, client)-

-form1. #subform [0]. Item1Cost::docReady - (FormCalc, client).

-form1. #subform [0]. Item1Cost::docClose - (FormCalc, client).

-form1. #subform [0]. Item1Cost::ready:form - (FormCalc, client)-

-form1. #subform [0]. Item1Cost::ready:layout - (FormCalc, client)-

-form1. #subform [0]. Item1Users::initialize :-(FormCalc, client).

-form1. #subform [0]. Item1Users::enter :-(FormCalc, client).

-form1. #subform [0]. Item1Users::exit :-(FormCalc, client).

-form1. #subform [0]. Item1Users::calculate :-(FormCalc, client).

-form1. #subform [0]. Item1Users::validate :-(FormCalc, client).

-form1. #subform [0]. Item1Users::MouseEnter :-(FormCalc, client).

-form1. #subform [0]. Item1Users::mouseExit :-(FormCalc, client).

-form1. #subform [0]. Item1Users::change :-(FormCalc, client).

-form1. #subform [0]. Item1Users::full :-(FormCalc, client).

-form1. #subform [0]. Item1Users::MouseUp :-(FormCalc, client).

-form1. #subform [0]. Item1Users::MouseDown :-(FormCalc, client).

-form1. #subform [0]. Item1Users::click :-(FormCalc, client).

-form1. #subform [0]. Item1Users::preSave - (FormCalc, client).

-form1. #subform [0]. Item1Users::postSave - (FormCalc, client).

-form1. #subform [0]. Item1Users::prePrint - (FormCalc, client).

-form1. #subform [0]. Item1Users::postPrint - (FormCalc, client).

-form1. #subform [0]. Item1Users::preSubmit:form - (FormCalc, client)-

-form1. #subform [0]. Item1Users::docReady - (FormCalc, client).

-form1. #subform [0]. Item1Users::docClose - (FormCalc, client).

-form1. #subform [0]. Item1Users::ready:form - (FormCalc, client)-

-form1. #subform [0]. Item1Users::ready:layout - (FormCalc, client)-

.. and so on and so forth...

In short, I want the code in:

-form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

.. .to be able to access the variables I created in:

-form1. #subform [0]: initialize :-(FormCalc, client).


(I guess that's where I store global variables)

At this point, global variables are not accessible with the above configuration.  Was the only one I can get this working is to cut and paste the Globals in each item of form1. #subform [0], which of course defeats the purpose of global variables!  I intend to have a lot more items so wouldn't duplicate global variables for each of them!

Can someone show me how to do this?

Any help is very appreciated!

Thank you

Stanbridge

Post edited by: stanbridgej - colors and fonts or not will not save.  Are bolded my question make (non-fat) code easier to read (I hope).

I haven't used Formccalc, but I thought it would be the same regardless. Insert a script object to the top of the hierarchy and call it, for example "sco." Paste the Globals. Then refer to variables of the extent that sco. Cityscope_Sydney_CostUser1, etc. Make one

App.Alert (sco. Cityscope_Sydney_CostUser1);

one of the fields. If the debugger is activated, it will tell you if it cannot resolve the reference as "sco. In this case, you may need to use the som expression to reference the script object, for example

var scoScript = xfa.resolveNode ("topOfHierarchy.sco");

scoScript.Cityscope_Sydney_CostUser1

But if as close as possible to the top of the hierarchy above should work.

Tags: Adobe LiveCycle

Similar Questions

  • How to set a framework for model A as the backdrop of model B, when A is shorter than B?

    I have a composition of 3 seconds, within another composition of a few minutes. It ends with a frame without movement. I can't extend its length after the last image, what I want to do, I can use it as a backdrop for the composition more than time. The only solution I can find is to extend the duration of the scale model of the opening, and that seems redundant.

    COMP A completed, it disappears, I can't extend its length in scenario B COMP beyond the total length of COMP.

    I could also export the alembic and re - import, but I don't want to do that.

    The average time-remapping or duplication CompA (washing at the end framework) > right click > time > Freeze Frame - and the cup double to adapt to the necessary remaining length

  • How to create unique variables for... in loop? (AS2)

    Hello

    I have a function onEnterFrame controlling all the movie clips in a table. The movement of each of these clips is controlled by a few variables - speed, acceleration, etc - that are changed on every enterFrame. I can't understand how to create unique variables for each element of the array. Now my variables are the same for all elements, and therefore the proposals of each video clip are the same.

    I used this code to add my video clips in the table:

    for (i = 0; i < starNumber; i ++) {}
    duplicateMovieClip (star, "star" + I, i);
    starArray.push (this ["star" + String (i)]);
    }

    I do a similar thing to create unique variables for each? Or is there something I need to do my loop (myClip in myArray) which is contained in my onEnterFrame function?

    I can post my code if that would help (65 lines).

    Creating unique variables is easy way out. Here's the modified code using unique variables that should solve your problem:

    var i: Number;

    var starArray:Array = [];

    var starArray_X:Array = [];

    var starArray_Y:Array = [];

    var mc:String;

    var scale: number;

    var speedXMod:Number;

    var speedYMod:Number;

    var starNumber:Number = 10;

    var minSize:Number = 15;

    var maxSize:Number = 80;

    var speed: number = 0.2;

    var minSpeed:Number = 0;

    var maxSpeed:Number = 1;

    for (i = 0; i< starnumber;="">

    duplicateMovieClip (star, "star" + I, i);

    starArray.push (this ["star" + String (i)]);

    }

    (MC starArray) {}

    starArray [mc] ._x = (Math.Random () * Stage.width);

    starArray [mc] ._y = (Math.Random () * Stage.height);

    scale = (minSize + (Math.Random () * (maxSize - minSize)));

    ._xscale starArray [mc] = scale;

    starArray [mc] ._yscale = scale;

    var startSpeedX:Number = ((Math.pow (-1, (Math.round (Math.random ())) * (minSpeed + (Math.Random () * (maxSpeed - minSpeed)));)))

    var startSpeedY:Number = ((Math.pow (-1, (Math.round (Math.random ())) * (minSpeed + (Math.Random () * (maxSpeed - minSpeed)));)))

    [mc] starArray_X = startSpeedX;

    [mc] starArray_Y = startSpeedY;

    onEnterFrame = function() {}

    (MC starArray) {}

    speedXMod = ((Math.random () * acceleration)-(0,5 * accélération));

    speedYMod = ((Math.random () * acceleration)-(0,5 * accélération));

    If (((Math.abs (starArray_X [mc] + speedXMod)) < maxspeed)="" &&="" ((math.abs(stararray_x[mc]="" +="" speedxmod))=""> minSpeed)) {}

    [mc] starArray_X += speedXMod;

    } else {}

    [mc] starArray_X = speedXMod;

    }

    If (((Math.abs (starArray_Y [mc] + speedYMod)) < maxspeed)="" &&="" ((math.abs(stararray_y[mc]+="" speedymod))=""> minSpeed)) {}

    [mc] starArray_Y += speedYMod;

    } else {}

    [mc] starArray_Y = speedYMod;

    }

    If (((starArray [mc]._x + starArray_X[mc]) > 0) & ((starArray [mc]._x + starArray_X[mc])))<>

    starArray [mc] ._x += starArray_X [mc];

    } else {}

    starArray_X [mc] * = - 1;

    starArray [mc] ._x += starArray_X [mc];

    }

    If (((starArray [mc]._y + starArray_Y[mc]) > 0) & ((starArray [mc]._y + starArray_Y[mc])))<>

    starArray [mc] ._y += starArray_Y [mc];

    } else {}

    starArray_Y [mc] * = - 1;

    starArray [mc] ._y += starArray_Y [mc];

    }

    }

    }

    }

  • global variables for the XML plugin problem

    Hello world

    recently I started working on a dialog box SOUTH, where the user can load the *.xml files in DIAdem.So much my code for the button looks like this:

    ....

    Call the FileNameGet ('ALL', 'FileRead","*.xml")
    Call DataFileLoad (FileDlgName, "XML_Plugin", "Load")

    ....

    And I must say that it works very well! I am able to load all listed in the devices file. BUT when I tried a number of loading devices, I used a global variable, that I defined in the vbscript file that I load the SOUTH since, I've noticed that global variables, I've defined with GlobalDim are not defined in the vbs.:mansurprised of XML_Pluging:

    Then I started to experiment and so far without success, no matter where I define global variables, in my plugin *.xml all not defined! The native commands even and DIAdem functrions does not work. If I run the script in tiara, it shows no errors, but when I use the plugin to open a file, then it gives an error. For example, MsgBox is not allowed.

    I used the plugin example for *.xml, which was published on the Web site of NOR, and I made a few changes. But overall I have it has not corrupted and I kept the same structure:

    Void ReadStore (File)

    Dim XmlFile: xmlFile = File.Info.FullPath
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    'open the file '.
    OpenXMLFile xmlFile

    End Sub

    Void OpenXMLFile (xmlFile)
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    ' Open MS - Xml Parser
    'Create the ActiveX object for the Microsoft XML parser.
    Dim XDoc: set xDoc = CreateObject ("MSXML2. DOMDocument.3.0")

    "Try to load the XML document
    If xDoc.Load (xmlFile) = False Then
    "Failed to load the document XML.
    RaiseError ' unable to load XML document!
    End If

    protected originalLocale: originalLocale = Getlocalte
    "SetLocale" en - us ".

    "The XML document loaded successfully!
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

    '----------------------------------------------
    "Read the header information.
    '----------------------------------------------

    Here, I have read some values of the header and then I loop on all devices present in the file!

    So basically I have two subroutines and that's all.

    SetLocale originalLocale

    End Sub

    So what I am doing wrong? Why global variables and other functions do not work. Is it because there is xml code in the script this way or it's a version problem?

    I use DIAdem 10.2. If I use global variables in other vbscripts, I use to draw curves for example I have no problem. Now I'm no *.xml code and no subroutines.

    I'd appreciate any solution that will make my *.xml plugin to work.

    Hi fscommand.

    It is expected all behavior.  Use XML, as all VBScript DataPlugins, runs in a separate VBScript host of the DIAdem VBScript host.  DIAdem VBScript host adds all global variables green and Red controls global to host Microsoft VBScript standard.  Use VBScript host has its own special abilities (file object, root object), but there is NO access to Globals green or red blanket orders in the reception of DIAdem VBScript.  Your SUDialog runs in a third host VBScript, which is separated from the other two and the other two are not capabilities (command SUDialog callback functions), but the SUDialog VBScript host and VBScript tiara share all global variables green and Red orders overall.

    Normally all blue VBScript commands are allowed in all 3 VBScripts hosts, but in the case of the DataPlugins MsgBox and InputBox functions were especially restrained because the dialogues could cause a lot of trouble with the DataFinder.  In fact, they have been allowed to 9.1 tiara which was the latest version of tiara for the DataFinder appear.

    So, why do you want to pass information between the XML use and tiara?  If you want to use to share information with DIAdem, then you should just expose every piece of information as a new property in the data portal, which can read and use the code VBScript DIAdem.  The path of the XML file is already available inside the use of XML.  What other information in the call VBScript DIAdem do you need to share with the use?

    Brad Turpin

    Tiara Product Support Engineer
    National Instruments

  • How to set up a connection using a Toshiba Satellite C655D-S5508 mobile access point?

    How to set up a connection using a Toshiba Satellite C655D-S5508 mobile access point? I am trying to connect a Samsung Galaxy stellar and receive an error page indicating that the DNS search failed. I do not know how to set up my computer, I have the wireless power and know how to connect to the hotspot from the phone. The phone is able to recognize the computer and its IP address, and the computer recognizes the phone and tries to connect but then displays the error message "DNS search failed.

    Any help would be great!
    Raquel

    Hi Raquel,.

    Do you have any security program installed on the computer?

    I suggest to go through the steps from the link provided and check if it helps.

    Add a Bluetooth device or other wireless or network device: frequently asked questions

    http://Windows.Microsoft.com/is-is/Windows7/add-a-Bluetooth-or-other-wireless-or-network-device-frequently-asked-questions

    You can also consult the manual of the computer for the same and check.

    If the problem persists, you can also contact manufacturing for known problems:

    Support.Toshiba.com

    http://www.CSD.Toshiba.com/cgi-bin/TAIS/support/JSP/home.jsp

    Hope this helps and let us know if you need more assistance.

  • How to set up checkboxes for SelectManyCheckbox programmatically?

    Hello experts!

    Please help me with my question.

    I work with Jdeveloper 12.2.1.0.0

    I have SelectManyCheckboxaf:selectManyCheckbox

    <af:selectManyCheckbox id="my_selectManyCheckbox"
                      valueChangeListener="#{TasksFilterBean.onTasksFilterPriorityChanged}"
                      autoSubmit="true"
                      required="false">
                          <af:selectItem label="High" value="1" id="si4"/>
                          <af:selectItem label="Middle" value="2" id="si5"/>
                          <af:selectItem label="Low" value="3" id="si6"/>
    </af:selectManyCheckbox>
    
    

    And I need to configure programmatically check boxes.

    I found this item the bean.

    ***
    RichSelectManyCheckbox my_selectManyCheckbox = (RichSelectManyCheckbox)task_page.findComponent("my_selectManyCheckbox");
    
    
    _logger.info("my_selectManyCheckbox: " + my_selectManyCheckbox);
    
    

    And question.

    How to set up checkboxes for SelectManyCheckbox programmatically?

    For example.

    I want to configure environment checkbox to activate.

    How to do this?

    PS. I'm tempted to find the solution, before you create new discussion.

    I added the SelectManyCheckbox property:

    value="#{TasksFilterBean.selectedCheckboxes}"
    

    And I added some methods in the bean:

        private List selectedCheckboxes;
    
        public void setSelectedCheckboxes(List selectedCheckboxes) {
            this.selectedCheckboxes = selectedCheckboxes;
        }
    
        public List getSelectedCheckboxes() {
    
            List selectedCheckboxes = new ArrayList();
            selectedCheckboxes.add("2");
    
            return selectedCheckboxes;
        }
    

    And now everything works.

    =================================

    Now I CAT change bean like this:

        private List selectedCheckboxes;
    
        public void setSelectedCheckboxes(List selectedCheckboxes) {
            this.selectedCheckboxes = selectedCheckboxes;
        }
    
        public List getSelectedCheckboxes() {
    //        List selectedCheckboxes = new ArrayList();
    //        selectedCheckboxes.add("2");
            return selectedCheckboxes;
        }
    

    And now I can then use:

            RichSelectManyCheckbox my_selectManyCheckbox= (RichSelectManyCheckbox)task_filter_page_template.findComponent("my_selectManyCheckbox");
    
            my_selectManyCheckbox.setValue("1");
    

    That all.

    Thank you all.

    Especially at Jiri.Machotka - Oracle

    ===========

    UPD. I'm sorry. It looks like I can configure values to 1 item on SelectManyCheckbox without bean methods.

    And with the above example, I had problems when I unckeked all the check boxes.

  • Set a Variable for a timer with a cursor

    ... In a previous post, I got a big hint of kglad.

    I had thought to be closer to the final solution, but I need a little more distance (certainly the last) of my script.

    It covers how to have a variable for a timer.

    I need to get the variable from a cursor.

    I tried the script below, look to MyVar (line 5, 9, 16), but it does not work,

    The timer is always 1000.

    1 import fl.controls.Slider;

    2 import fl.events.SliderEvent;

    3 import fl.controls.Label;

    var MyVar = 1000 4;

    5 aSlider.addEventListener (SliderEvent.CHANGE, changeHandler);

    ___SLIDER

    function 6 changeHandler(event: SliderEvent): void {}

    7 MyText.text = event.value;

    8 track (event.value);

    9 MyVar = (event.value);

    10}

    11 //__________________________________________

    12 var myNum: number;

    13 var mySound: Sound = new Click1();

    14 var mySound2: Sound = new Click2();

    15

    16 var fl_TimerInstance: Timer = new Timer (MyVar, 8);

    17 fl_TimerInstance.addEventListener (TimerEvent.TIMER, fl_TimerHandler);

    18

    Button.addEventListener (MouseEvent.CLICK, ButtonCount) 19.

    20 ButtonCount(event: MouseEvent) function: void {}

    21 fl_TimerInstance.reset ();

    22 fl_TimerInstance.start ();

    23

    24 //trace ("trascorsi secondi:" + fl_SecondsElapsed);

    25 //fl_SecondsElapsed++;

    26}

    27 fl_TimerHandler(event: TimerEvent) function: void {}

    28 if (event.currentTarget.currentCount % 2 == 1) {}

    29 myNum = Math.ceil (Math.random () * 8);

    30 record (myNum);

    31 / / mySound.play ();

    32} else {}

    33 / / mySound2.play ();

    34 trace (myNum);

    35}

    36}

    use:

    1 import fl.controls.Slider;

    2 import fl.events.SliderEvent;

    3 import fl.controls.Label;

    var MyVar = 1000 4;

    5 aSlider.addEventListener (SliderEvent.CHANGE, changeHandler);

    ___SLIDER

    function 6 changeHandler(event: SliderEvent): void {}

    7 MyText.text = event.value;

    8 track (event.value);

    9 MyVar = (event.value);

    fl_TimerInstance.delay = MyVar;

    10}

    11 //__________________________________________

    12 var myNum: number;

    13 var mySound: Sound = new Click1();

    14 var mySound2: Sound = new Click2();

    15

    16 var fl_TimerInstance: Timer = new Timer (myVar, 8);

    17 fl_TimerInstance.addEventListener (TimerEvent.TIMER, fl_TimerHandler);

    18

    Button.addEventListener (MouseEvent.CLICK, ButtonCount) 19.

    20 ButtonCount(event: MouseEvent) function: void {}

    21 fl_TimerInstance.reset ();

    22 fl_TimerInstance.start ();

    23

    24 //trace ("trascorsi secondi:" + fl_SecondsElapsed);

    25 //fl_SecondsElapsed++;

    26}

    27 fl_TimerHandler(event: TimerEvent) function: void {}

    28 if (event.currentTarget.currentCount % 2 == 1) {}

    29 myNum = Math.ceil (Math.random () * 8);

    30 record (myNum);

    31 / / mySound.play ();

    32} else {}

    33 / / mySound2.play ();

    34 trace (myNum);

    35}

    36}

  • How can I turn OFF any possibility of use of private browsing OR - how to set a password to use the private browsing?

    How can I turn OFF any possibility of use of private browsing OR - how to set a password to use the private browsing?
    My children are free to use the internet - but I don't want them to be able to hide their internet activity to me.
    Thank you.

    Try this new extension - turn off private browsing:

    https://addons.Mozilla.org/en-us/Firefox/addon/disable-private-browsing/

    Ignore the review I did there on the 22nd, as both versions again, improving have been released during the 6 days and most of the articles I've written about have been fixed.

    Richie just needs to get to the function disable compensation no browsing history, who works at.

  • How to set a password for the networks?

    Original title: related networks

    Hi, my request is how to set a password for networks

    Hello Manu,

    I suggest to follow the steps below and check the steps in the section to change the homegroup password , if it helps.

    Homegroup from start to finish

    http://Windows.Microsoft.com/en-us/Windows/HomeGroup-help#HomeGroup-start-to-finish=Windows-81&V1H=win81tab7&V2H=win7tab1

    Let us know the status.

  • How to set up email for provider VDC alerts

    Hi any advise how to set up alerts for vdc provider as low on storage etc. on VCD?

    Thanks for any info

    Emails are sent when a data store changes from green to yellow, yellow to red.

    To change WHEN these data storages are at these levels, you can get the properties on a data store.  These are set by the GB left on the data store.

    System-> monitor-> data warehouses and handle-> RightClick:Properties

    * Yellow disk space threshold:

    * Red disk space threshold:

    I hope this helps.

  • How to write a script for date get to the Clipboard

    Hi experts,

    How to write a script for date get to the Clipboard.

    the date format will be like this:

    05 - may

    respect of

    John

    Thanks guys, thanks Sanon

    I finally use the .bat doc

    like this:

    @@echo off
    for /f "delims =" % in (' wmic OS Get localdatetime ^ | find ".") "") Set "dt = %% a"
    the value "YYYY = % dt: ~ 0, 4%.
    the value "MM = % dt: ~ 4, 2%.

    If MM % is 01 set MM = January
    If % MM == 02 set MM = February
    If MM % is MM value = March 03
    If MM % is 04 MM value = April
    If MM % is 05 MM value = may
    If MM % is 06 MM value = June
    If MM % == 07 set MM = July
    If MM % is MM value = August 08
    If MM % is MM value = September 09
    If MM % is 10 MM value = October
    If MM % is 11A set MM = November
    If MM % is game MM 12 = December

    the value "DD = % dt: ~ 6, 2%.
    the value "HH = % dt: ~ 8, 2%.
    the value "Min = % dt: ~ 10, 2%.
    Set "s = % dt: ~ 12, 2%.

    Echo DD - MM HH % %% % Min | Clip

    It works

    respect of

    John

  • I created signatures and look OK in preferences, but I can't use them.  It worked once, but I don't know how or why.  I don't get all the dialog boxes.

    I created signatures and look OK in preferences, but I can't use them.  It worked once, but I don't know how or why.  I don't get all the dialog boxes.

    Thank you.  I read the article you quoted, as well as others, several

    times.  Creation has been problem free.

    My problem is that AID has never said, that I could find, HELP or

    TIP to search for a tool called certificates.  I searched,

    Signatures, Signatures Digital and many others but they lead no where.

    I think that HELP need HELP.

  • How long it takes to start using Photoshop, once the order is placed. I need to make it work...

    How long it takes to start using Photoshop, once the order is placed. I need to make it work...

    Well, it's one and the same software, you need to worry about this.

    It takes usually 24 to 48 hours for confirmation of payment.

    And there is no difference between the use of the product of the tools and features, you still get the full software with all the features even in evaluation mode.

    Concerning

    Jitendra

  • my keyboard has sometimes unresponsive, despite verified the above. Then it works again after I have shut down and restart my mac. is this normal? If this isn't the case, that due to an application? for example, I installed photoshop and use it all the ti

    Jin

    Sometimes, my keyboard stops responding, despite the checkist troubleshooting.

    Then it works again after I have shut down and restart my mac!

    is this normal? If this isn't the case, that due to an application? for example, I installed photoshop and use it all the time... also openoffice document prog...

    What else could be?

    I just replace the keyboard with a new one, but the problem persists.

    my mac has also been in mac repair and they found nothing wrong.

    Thank you!

    Please run and view a report of EtreCheck http://etrecheck.com/

  • I bought an iphone6s from Lithuania, EU. At the back of the box, it is printed "Aproved for use in all countries of the EU". Does this mean that I can't use it in Asia?

    I bought an iphone6s from Lithuania, EU. At the back of the box, it is printed "Aproved for use in all countries of the EU". Does this mean that I can't use it in Asia?

    It does not mean that you cannot use it in Asia. It cannot be repaired in the European Union, however, and may not work with LTE networks in other parts of the world.

Maybe you are looking for