Action, select the whole width, regardless of the width?

Hi everyone, this is probably not possible! But it is there anyway to tell photoshop to select an area that is the width of the image regardless of what the width of the image is?

I perform an action on a batch of images that puts a bar of color at the bottom and then adds text to the subject. As I do this, I make a selection, fill it in, add text and Center it in the selection. Then flatten it all, save it and close it. I downloaded an example. (this photo is on the internet not actually one of mine!)

The problem is, it only works if the images are the same width, but sometimes, annoyingly, I have images of different widths, that I want to execute the same action/text on. In this case, I currently do a separate action for each width of the image. It's embarrassing! What happens if you could tell Photoshop to select 50 pixels down quite down regardless of the width. That could save me a lot of time!Lobster_800.jpg

copy the code below and save it as a text file with the .jsx extension. Save in subfolder of Photoshop: Presets\Scripts. Restart PS. run this script in your action for the establishment of the selection.

#target photoshop

var prefOld = app.preferences.rulerUnits;
app.preferences.rulerUnits = Units.PIXELS;
var doc = activeDocument;
var selectArea = [[0,0],[doc.width,0],[doc.width,doc.height-50],[0,doc.height-50]];
doc.selection.select(selectArea);
app.preferences.rulerUnits = prefOld;

Tags: Photoshop

Similar Questions

  • Select the layer function in action

    I have three layers with text in different languages. I want to record in three different PNG files.

    I tried to do action, select the layer, hide it and save it. Select another layer, then do the same thing. But the selection of layers is not saved to the action.

    Is there a solution?

    big thank you

    No, I don't think. The selections are what they mean - interactive decisions which provide a context for a tool or a command. What you would require a script, and even in this case, you have to take care to name the layers properly in the first place...

    Mylenium

  • Dynamic action on the points of the apex

    Hello

    I have a requirement like after the entry of date of birth in the element. then the age value must be defined dynamically.

    How can I set the value?

    Hi Tulasi,

    Follow the steps below

    Click on create button dynamic action
    Select the advanced type
    Give a name

    event - on the evolution of the
    selection type - point
    Article (s) element of your page (used to select date of birth)
    condition: no strings attached
    action - code PL/SQL Execute
    Fire on the loading of the page - white

    PL/SQL - code

    declare
    v_age varchar2(100);
    v_dob date;
    v_sysdate date;
    begin
    
    select sysdate into v_sysdate from dual;
    v_dob := :P1_DOB;    //here P1_dob is a page item from where i am selecting date of birth.
    
    select trunc(to_char((v_sysdate - v_dob)/365)) into v_age from dual;
    :P1_AGE := v_age;     // i have created one item named P1_AGE to display the calculated age.
    end;
    

    Page elements to send = P1_DOB / / replace with your agenda of the datepicker page

    Elements of the page return = P1_AGE / / replace with your article.

    Hope this will give you an idea.

    Thank you and best regards,
    Jitendra

  • Left mouse click selects the button but does not execute the action of the button (for example close)

    HI - this seems to be a problem with Windows rather than the mouse, so any help would be greatly appreciated!

    First of all - I have a trackball M570. Works fine connected to another Windows 7 machine.

    But on a single machine including windows 7... I can use the left click for most, but in some applications, when I click a button it not actually click the button. Yes, he selects the button but it does not perform the button action. I also see the issue in the boxes, I can't put a tick in the boxes. Or at least I just figured someway by combining fast random space bar presses and presses mouse, but it is obviously not right. Couldn't find anything useful in google, so I thought I would try here in hope!

    Thank you for the pointers !

    Cheers, Jim.

    HI - Finally - I found a solution.

    First of all - the following solution worked for me, but there are possible solutions mentioned on the thread I linked in my previous email.

    The mouse is a Logitech wireless, with the SetPoint software installed. I also had a Microsoft wired keyboard and just in case that was the problem, I replaced it and - YES! All good new - in fact explains some other issues, I was less concerned. The problem with the keyboard was somehow screwing of the mouse.

    Since then I have been reduced to a media volume on the keyboard button, no idea how to solve this problem, and the replacement keyboard was free, so just get rid of the old. Note: I could use the old keyboard when I downloaded the Microsoft Mouse and keyboard Center, installed and disabled the offending button.

    Thank you, maybe my solution might help some people out there.

    Jim.

  • dynamic action on the selected value shuttle

    Hello

    Can anyone help me in this.

    I guess a requirement

    There is a shuttle Apex and multiple selection is allowed

    and there are values such as:-others, first, second

    but when we choose other no other value should be able to select

    in what other is selected in the shuttle a textbox is displayed by dynamic action

    example on https://apex.oracle.com/pls/apex/f?p=76604:3:4326822625865:

    workspace:-REEMATEST

    username:-test

    password:-test

    76604 application

    page 3

    ReemaPuri wrote:

    can you give me a link for the dynamic creation of checkbox

    FOR EXAMPLE BASED ON CREATED LOV SHARE COMPONENT

    Select the column name as the name of column d, r

    the name of the table

    Boxes are just another way to make a LOV. For a dynamic set of checkboxes, the standard pair of value/label LOV SQL projection is required in the definition:

    select initcap(dname) l, to_char(deptno, 'tm9') v from dept
    order by v asc
    

    If additional values are required, they can be included in the query using unions:

    select initcap(dname) l, to_char(deptno, 'tm9') v from dept
    union all
    select 'Other', 'OTHER' from dual
    order by 2 asc
    

    Checkbox events can be handled by dynamic actions as indicated on page 586 of your test App. Note that I prefer to enable and disable the controls on form rather than hiding and showing them that there is less confusion for the user. It is simple to change the disable/Enable dynamic actions to hide and show if necessary.

  • Can not set a value by the executed dynamic action on the page element "selection list."

    I created an agenda of the page 'list of selection' and I want to when I change a value in another element of the page set only 'screen '.

    I created a dynamic action on the page element "selection list" for this.

    These are the dynamic action attribute:

    When:

    ======

    Event: change

    Selection type: point

    Article: P29_PURCHASE_ORDER

    Condition: No strings attached

    Advanced:

    ========

    Scope of the event: static

    Identification:

    ==========

    Action: Set

    The ' Action Page when the changed value "attribute of the element of 'list of selection' = 'None', and when I run form the dynamic action run and set the value for once and do not update the value according to the change in the article"list of selection. "

    Note: when I change the previous attribute of 'Redirect and set', dynamic action run and properly value, but the value was hidden soon

    I want to value when the value of change of select list according to this change successfully.

    Please, advice me,

    Best regards

    Mustafa Ezzat

    Hello

    you set the value of the 'Page elements to submit' to P29_PURCHASE_ORDER?

    Then, the SQL statement would use the current selected value.

    This is the help text says: "specify a list separated by commas of the elements of the page that will be submitted to the server and therefore available for use in your"SQL statement"," PL/SQL Expression"or"Body of the PL/SQL function".»

    Kind regards

    Erik-jan

  • Advanced Action help - the user must select all before moving on to the next slide

    I need a tip action that will require the user to select a number of option buttons containing information until the next button appears. I don't know how to write it. I want the user to be able to select each button in any order that they choose. Can someone give me a step by step process? Your help is greatly appreciated!

    What version do you use? Why radio buttons? The behavior expected normal of radio buttons is that only one can be selected, you seem to ignore what is generally accepted. As having a next button appears only after several items have been selected, this has been explained many times in this forum and have many examples in my blog. They are free, maybe not considered worth nothing...

    You need a variable associated with each item. Click on an item to trigger a conditional action advanced or shared with two decisions. First decision is simulated standard action, rotate the variable from 0 to 1, then is a real condition that will make the next visible button if all variables have the value 1.

  • Is it possible to scan multiple machines at the same time, only not by selecting a whole folder?

    Lets say I have a folder named "Windows" and there I have 100 virtual machines.  I don't want to scan (and so install the scanning agent) on all these machines, but rather I want to scan 20 machines.  I have not found a way to select the 20 machines (for example, by using the CTRL key to highlight) and scan them at the same time or create a scheduled task for this either.  Select 'CTRL' seems to work, but then when start you the scan, it only works on the first selected virtual machine and other virtual machines that have been selected are ignored.

    It seems that I can scan only the level of the entire folder or individual machines (one at a time).  Is this correct, or am I missing something to allow me to do?

    Thank you

    SB

    The files are simply an artificial grouping of vm.  From a functional point of view, there is no difference between leading vm in a temporary folder and selecting vm with something like ctrl + enter to target action.  Create your folder, drag the virtual machine, that you want to scan in the scanner, then drag regularize them and delete the folder.  The politicians in office will be never the wiser

    GE

  • Help with dynamic action and the selection list item

    G ' Day Apex gurus.

    I have problems trying to achieve to trigger the Help window from an element automatically select. A Help window is triggered when it is clicked on the label of an item, but my customer wants to be triguered automatically as soon as the user clicks to view the options in the select list.

    I think I should be able to do with dynamic actions but I can't function.

    I know when someone clicks on the label of the item selection list trigger this JavaScript

    JavaScript:popupFieldHelp('277938589795252851','1545903379570909')

    So I want to trigger the javascript also when the user click on the item selection list and pull down the options and for that I think that the dynamic action is the way to go, but I can't do things.

    That's what I have to do:

    I created a dynamic option as follows:

    Name: test
    Sequence: 30
    Even: click
    Selection type: product (s)
    Article (s): P1_RATING <-a selection list item
    Condtion: - no requirement.

    Real Actions
    Sequence: 10
    Action: Run the JavaScript Code
    Fires when the result of the event is: true
    Fire on loading the page: checked
    Code: javascript:popupFieldHelp('277938589795252851','1545903379570909')

    Thank you anyone who can tell me what I'm doing wrong here or bring a solution to my problem to trigger the Help window from an element automatically select.

    Kind regards
    Carlos

    Hi Carlos,

    I've set up a test case of exactly in the same way and it worked fine for me. I've created a page element called P1_DA_DEMO and added some values of the static selection list, then added a help text. I used the settings are lower, I suggest you try again, but also make sure that you have no other Javascript errors on the page. Use a tool like firebug to check.

    Name: Action Dynamics demo
    Sequence: 10
    Even: click
    Selection type: product (s)
    Product (s): P1_DA_DEMO<- a="" selection="" list="">
    Condtion: - no requirement.

    Real Actions
    Sequence: 10
    Action: Run the JavaScript Code
    Fires when the result of the event is: true
    Fire on loading the page: unchecked
    Code: javascript:popupFieldHelp('277938589795252851','1545903379570909')

    Scope of the event set a Bind s.

    Thank you

    Paul

  • Cannot select the frame in the Actions Panel

    Hello people,

    For some reason, I can't select the current image in my control panel actions. Therefore, all actionscript ends in image 1.

    Someone already had this problem before? And, if so, how to solve?

    Thank you

    Ehrenfest

    You might have accidentally pinned the Action tab of the script of the previous frame Panel.

    (1) open the Script Panel

    (2) look under the script box, you should see 2 tablets and between them an icon of pine (pine active script / close pin script)

  • How to select the width of the list

    Hello

    Can we set the width of the Select list. If yes how caln.
    Actully I 7 select list but some are large and some have less size.
    So I want to set the same width, select the list after same width they set fair.


    How can I do that.


    Thank you

    Hello

    in the attributes of HTML form elements
                                       
    For example

    style=width:185px;
    

    with the style of double quotes =""

  • I accidentally selected the wrong language during the whole upward.  How can I change so I can complete the installation?

    My finger slipped and I can't understand how to start go back to choose English or complete the entire upward, so I can change it later.  Is there a way to start over?

    If you have not configured the Apple TV, you need to jump or enter anything for the implementation of the measures initially and back to these settings once you can read the menus in your native language.

    Press the "Home Screen" on the remote control to return to the home screen menu and locate and select settings (with the gear icon), select the option at the top of the page in the menu, then scroll down and select the second to the last option on the next screen, that shows a list of languages, select yours. Apple TV needs to restart to change the language and ask you to confirm this, when it's this select the option at the top of the page.

  • Selection problem.  I imported a piece of vector art: a guy in a t-shirt and jeans.  I want to change the color of the t-shirt but when I "select", the whole picture gets selected including the head, arms and jeans.  How to isolate the t-shirt?

    I imported a piece of vector art that shows a man wearing a t-shirt and blue jeans.  I want to change the color of the t-shirt, but, when I 'select', not only the GET selected shirt made from the head, arms and blue jeans guy.  How do I isolate the image so I am just by selecting the t-shirt?

    Gabriel,

    What happens if you click the fill with the direct Selection tool, and then try?

    Or try to locate T shirt in the layer in the layers palette and select there, then try? You may need to click one or more arrows to look in under/groups/cutting masks / whatever.

  • The ADF button select the entry field

    Hello

    I use JDeveloper 12 c. I have a problem with something, that can be very easy to fix. I have a page with table jsff and form layout Panel to display table data. Also, I have a button, after clicking, shows popup with another form of Panel and table. I want to make that change in this popup works as - I selected the line, and after I click on disabled edit text input is enabled.

    Anyone has confirmed how to solve my problem?

    Integer popup code:

    < childCreation = "deferred" autoCancel af:popup = "disabled" id = "p2" >

    < af:dialog id = "d2" type 'none' = >

    < af:panelSplitter id = 'ps2' splitterPosition = '502' dimensionsFrom = 'auto' >

    < f: facet = 'first' name >

    < af:panelStretchLayout id = "PSL2' dimensionsFrom = 'parent' >

    < f: facet name = "center" >

    < af:panelCollection id = "pc2" styleClass = "AFStretchWidth" >

    < f: facet = 'menus' name / >

    < name f: facet = "toolbar" / >

    < af:table value = "#{bindings." DeesrdatView2.collectionModel}.

    var = "row".

    lines = ' #{bindings. " DeesrdatView2.rangeSize}.

    emptyText = "#{bindings." DeesrdatView2.viewable? "{'No data to display.': 'Access Denied.'}".

    rowBandingInterval = '0 '.

    selectedRowKeys = ' #{bindings. " DeesrdatView2.collectionModel.selectedRow}.

    selectionListener = "#{bindings." DeesrdatView2.collectionModel.makeCurrent}.

    rowSelection = 'single '.

    fetchSize = "#{bindings." DeesrdatView2.rangeSize}.

    filterModel = "#{bindings." DeesrdatView2Query.queryDescriptor}.

    queryListener = ' #{bindings. " DeesrdatView2Query.processQuery}.

    filterVisible = 'true' varStatus 'vs' id = 't5' = >

    < af:column sortProperty = "#{bindings." DeesrdatView2.hints.DataKwaterowania.name}.

    filterable = "true" sortable = "true".

    headerText = "#{bindings." DeesrdatView2.hints.DataKwaterowania.label}.

    ID = "c7" >

    < f: facet = name 'filter' >

    < af:inputDate value = "#{bindings." DeesrdatView2Query.queryDescriptor.filterConjunctionCriterion.criterionMap.DataKwaterowania.value}.

    ID = "id3" >

    < af:convertDateTime pattern = "#{bindings." DeesrdatView2.hints.DataKwaterowania.format}"/ >

    < / af:inputDate >

    < / f: facet >

    < af:outputText value = "#{rank." DataKwaterowania}.

    shortDesc = "#{bindings." DeesrdatView2.hints.DataKwaterowania.tooltip}.

    ID = "ot7" >

    < af:convertDateTime pattern = "#{bindings." DeesrdatView2.hints.DataKwaterowania.format}"/ >

    < / af:outputText >

    < / af:column >

    < / af:table >

    < name f: facet = 'bar of Θtat' / >

    < f: facet name = "secondaryToolbar" >

    < af:toolbar id = "t6" >

    < kalasoftCompLib:standardButtons id = "sb2.

    DodajOutcome = "create1.

    EdytujDisabled = 'true '.

    dialogListener = "#{deleteBean.deleteDialogListener} '"

    UsunRole = "deesrdat-d".

    UsunBinding = "Delete1".

    UsunDisabled = ' #{not securityContext.userInRole ['deesrdat-d']}. "

    EdytujVisible = "false" >

    < name f: facet = "beforeButtons" / >

    < name f: facet = "afterButtons" / >

    < name f: facet = "deletePopupCenter" / >

    < / kalasoftCompLib:standardButtons >

    < / af:toolbar >

    < / f: facet >

    < / af:panelCollection >

    < / f: facet >

    < / af:panelStretchLayout >

    < / f: facet >

    < f: facet 'second' = name >

    < af:panelTabbed id = "pt3" >

    < af:showDetailItem text = "#{viewcontrollerBundle.Daneslownikowe} '"

    ID = "sdi3" stretchChildren = "first" >

    < af:panelSplitter id = "ps3" orientation = 'vertical '.

    splitterPosition = "75" >

    < f: facet = 'first' name >

    < af:panelFormLayout id = "pfl3" >

    < af:inputText value = "#{bindings." DataKwaterowania.inputValue}.

    label = "#{bindings." DataKwaterowania.hints.label}.

    required = "#{bindings." DataKwaterowania.hints.mandatory}.

    columns = "#{bindings." DataKwaterowania.hints.displayWidth}.

    maximumLength = "#{bindings." DataKwaterowania.hints.precision}.

    shortDesc = "#{bindings." DataKwaterowania.hints.tooltip}.

    ID = "it15" disabled = "true" >

    < f: validator binding = "#{bindings." DataKwaterowania.validator} "/ >"

    < af:convertDateTime pattern = "#{bindings." DataKwaterowania.format} "/ >"

    < / af:inputText >

    < af:inputDate value = "#{bindings." Kwaterowanie1.inputValue}.

    label = "#{bindings." Kwaterowanie1.hints.label}.

    required = "#{bindings." Kwaterowanie1.hints.mandatory}.

    columns = "#{bindings." Kwaterowanie1.hints.DisplayWidth}.

    shortDesc = "#{bindings." Kwaterowanie1.hints.ToolTip}.

    ID = "id4" disabled = "true" >

    < f: validator binding = "#{bindings." Kwaterowanie1.validator} "/ >"

    < af:convertDateTime pattern = "#{bindings." Kwaterowanie1.format} "/ >"

    < / af:inputDate >

    < af:selectBooleanCheckbox value = "#{bindings." Blokada.inputValue}.

    label = "#{bindings." BLOKADA.label}.

    shortDesc = "#{bindings." BLOKADA.hints.ToolTip}.

    ID = "sbc1.

    disabled = "true" / >

    < / af:panelFormLayout >

    < / f: facet >

    < f: facet 'second' = name >

    < af:panelStretchLayout id = "psl3.

    dimensionsFrom = 'parent' >

    < f: facet name = "center" >

    < af:panelCollection id = "pc3" >

    < f: facet = 'menus' name / >

    < name f: facet = "toolbar" / >

    < af:table value = "#{bindings." DeessiatView2.collectionModel}.

    var = "row".

    lines = ' #{bindings. " DeessiatView2.rangeSize}.

    emptyText = "#{viewcontrollerBundle.BRAK_DANYCH_DO_WY_U015BWIETLEN} '"

    rowBandingInterval = '1 '.

    selectedRowKeys = ' #{bindings. " DeessiatView2.collectionModel.selectedRow}.

    selectionListener = "#{bindings." DeessiatView2.collectionModel.makeCurrent}.

    rowSelection = 'single '.

    fetchSize = "#{bindings." DeessiatView2.rangeSize}.

    filterModel = "#{bindings." DeessiatView2Query.queryDescriptor}.

    queryListener = ' #{bindings. " DeessiatView2Query.processQuery}.

    filterVisible = 'true '.

    varStatus = 'vs' id = "t7".

    columnStretching "multiple" = >

    < af:column sortProperty = "#{bindings." DeessiatView2.hints.Kwaterowanie.name}.

    filterable = 'true '.

    sortable = "true".

    headerText = "#{bindings." DeessiatView2.hints.Kwaterowanie.label}.

    ID = "c8" width = "50%" >

    < f: facet = name 'filter' >

    < af:inputDate value = "#{bindings." DeessiatView2Query.queryDescriptor.filterConjunctionCriterion.criterionMap.Kwaterowanie.value}.

    ID = "id5" >

    < af:convertDateTime pattern = "#{bindings." DeessiatView2.hints.Kwaterowanie.format}"/ >

    < / af:inputDate >

    < / f: facet >

    < af:outputText value = "#{rank." Kwaterowanie}.

    shortDesc = "#{bindings." DeessiatView2.hints.Kwaterowanie.tooltip}.

    ID = 'ot8' >

    < af:convertDateTime pattern = "#{bindings." DeessiatView2.hints.Kwaterowanie.format}"/ >

    < / af:outputText >

    < / af:column >

    < af:column sortProperty = "#{bindings." DeessiatView2.hints.BlokadaFiltr.name}.

    filterable = 'true '.

    sortable = "true".

    headerText = "#{bindings." DeessiatView2.hints.BlokadaFiltr.label}.

    ID = "c9" align = "center".

    Width = "50%" >

    < af:selectBooleanCheckbox value = "#{row.bindings.BlokadaFiltr.inputValue} '"

    label = "#{row." Bindings.BlokadaFiltr.label}.

    shortDesc = "#{bindings." DeessiatView2.hints.BlokadaFiltr.tooltip}.

    ID = "sbc2".

    disabled = "true" / >

    < / af:column >

    < / af:table >

    < name f: facet = 'bar of Θtat' / >

    < f: facet name = "secondaryToolbar" >

    < af:toolbar id = "t8" >

    < kalasoftCompLib:standardButtons id = "sb3.

    UsunBinding = 'deleteRow' >

    < name f: facet = "beforeButtons" / >

    < name f: facet = "afterButtons" / >

    < name f: facet = "deletePopupCenter" / >

    < / kalasoftCompLib:standardButtons >

    < / af:toolbar >

    < / f: facet >

    < / af:panelCollection >

    < / f: facet >

    < / af:panelStretchLayout >

    < / f: facet >

    < / af:panelSplitter >

    < / af:showDetailItem >

    < / af:panelTabbed >

    < / f: facet >

    < / af:panelSplitter >

    < f: facet = 'buttonBar' name / >

    < / af:dialog >

    < / af:popup >

    Kind regards

    WK

    Hello

    Why are you calling mode through the OperationBinding because it is not part of the pageDef

    you haven't set this variable in managed bean itself so no need to call the bindings, I asked that check your edit action receive the call where not

    Just use

    public void modee() {}

    System.out.printLn ("Called")

    this.setMode ("E");

    }

    did you read my previous comment?

    Thank you

  • Select the value of the xml string property where certain conditions

    Hi, I'm on 11.2.0.2 and just started with XPath. "got the string xml like this: [code]"

    "[code] should output jdbc.schema password - User1, User2 user101 user201 tried: select x.schema_name, obpmdir.test x.password t, xmltable ("for $i in property/configuration/set return {$i/@name}' from xmltype (t.fuego_strvalue) schema_name varchar2 columns (1234) PATH 'value', password varchar2 (1234) PATH 'value') x; " has received the error: ORA-19276: XPST0005 - XPath step specifies an invalid element/attribute name: 19276 (value). 00000 - "XP0005 - XPath step specifies an invalid element/attribute name: (%s) ' * Cause: step the XPath specified is not a valid element or the attribute name that does not match all nodes according to the entry or the structure XML schema. * Action: Correct the name of element or attribute name may be misspelled. Regards Greg

    See my first example here in response to your previous question: update the values of string xml.

    BTW, to format your code, go to the so-called 'Advanced Editor ' and choose the formatting that you want in the menu behind the > icon.

    Note that, as of now, none of the available options are really satisfactory to shape the code because he doesn't use fixed-width fonts.

    Personally, I manually change the font "Courier New" and apply the effect 'Quote' for formatting my code snippets, that mimicks a little previous rendering allows us to get through the {code} tags (before the migration of the forum).

Maybe you are looking for

  • I am receiving/sending emails OK but cannot forward emails with pictures

    Thunderbird does not work well, but aren't emails that contain images/cartoons / pictures etc I want to pass on to someone else. Obviously one of the parameters is incorrect, but which?

  • Plugin de Adobe Acrobat obsolete

    HelloSince today, before opening a pdf document, I get a dark page where I have to click to activate the Adobe Acrobat plugin. I have Adobe PDF plugin for Firefox and Netscape 10.1.5 and I knew it was out of date because I check regularly the page 'c

  • How to unsubscribe to hbonow

    I pay for HBO now to my Apple account. I wish only and cannot find their way to terminate a subscription. I'm not even where I subscribe. Any suggestions will be greatly appreciated.

  • HP PAVILION 1305sx G6. LOST BIOS

    Hi, my HP PAVILION G6 portable 1305sx lost its BIOS. My operating system is Windows 7 Ultimate. When I start the system, it is said that "press ESC to enter startup. When I press on it gives me the possibility to choose Windows 7 to initiate or repai

  • LJ LJ MFP M225rdn Pro: Pro MFP M225rdn - reset to factory settings?

    I've been setting up a new MFP M225rdn. Once I changed the vacuum to HQ4cji0ZzzMs9DR5e2 administrator password - I can not connect anymore. What are the limitations of password, and how it reset to the factory settings?