Welcome to TalkGraphics.com
Page 1 of 4 123 ... LastLast
Results 1 to 10 of 34
  1. #1
    Join Date
    Feb 2019
    Posts
    14

    Default Xara Designer Pro X / Text Entry Field?

    Hello!

    I need a text box as input field.

    Then I have to evaluate the field ...

    Example:
    Text: 112 -> open link to a specific page
    Text: 234 -> open another page
    and so on ...

    Is that possible ?

    Does anyone have an example for me?

    Best Greetings

    Bernd

  2. #2
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,503

    Default Re: Xara Designer Pro X / Text Entry Field?

    Welcome to TalkGraphics

    Does this question relate to web design? And if yes, I will move this to the web design chat forum.

  3. #3
    Join Date
    Feb 2019
    Posts
    14

    Default Re: Xara Designer Pro X / Text Entry Field?

    Click image for larger version. 

Name:	WebSide.jpg 
Views:	135 
Size:	41.7 KB 
ID:	123399

  4. #4
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,503

    Default Re: Xara Designer Pro X / Text Entry Field?

    OK. If I enter the words, Chickens, then I will go to a new page called Chickens?

  5. #5
    Join Date
    Feb 2019
    Posts
    14

    Default Re: Xara Designer Pro X / Text Entry Field?

    Nearly :-)

    Enter 123 = MyPageXYZ
    Enter 223 = Page223
    Enter 339 = NewInfo339

  6. #6
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,503

    Default Re: Xara Designer Pro X / Text Entry Field?

    Got it. Just link the text to the page.

    Visitor clicks 123. Link takes visitor to MyPageXYZ.

    You can also have a sub-menu for a Navigation Bar. The sub-menu can have a list of all the pages in that category.
    Last edited by gwpriester; 16 February 2019 at 08:47 PM.

  7. #7
    Join Date
    Dec 2018
    Location
    Australia
    Posts
    1,776

    Default Re: Xara Designer Pro X / Text Entry Field?

    I think BerndR want a single cell that visitors type in, not a drop down box. As in 'go to page:'

  8. #8
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,503

    Default Re: Xara Designer Pro X / Text Entry Field?

    I think BerndR want a single cell that visitors type in, not a drop down box. As in 'go to page:'
    Maybe a SEARCH box? https://www.talkgraphics.com/showthr...460#post512460

  9. #9
    Join Date
    Feb 2019
    Posts
    14

    Default Re: Xara Designer Pro X / Text Entry Field?

    I Need a TextBox where someone type in a number...
    Not a DropDown List or something else...
    Only a TextBox as Input Field and then go forward with the Number to a Fix Link...
    See the first note....

  10. #10
    Join Date
    Aug 2010
    Posts
    533

    Default Re: Xara Designer Pro X / Text Entry Field?

    I haven't tested but this is a PHP solution(you will need to add the .php extension to your page name) going by your last example paste this code in the head section(placeholder > html(head)) of your page.

    PHP Code:
    <php?
    if(isset(
    $_GET['page']) {
    $page $_GET['page'];

    if(
    $page == '123') {
    $page 'MyPageXYZ';
    }
    if(
    $page == '223') {
    $page 'Page' $page;
    }
    if(
    $page == '339') {
    $page 'NewInfo' $page;
    }

    header('Location: {$page}.htm');
    }
    ?> 
    Create a rectangle where you want the input to show and go to placeholder > html(body) and paste the following
    HTML Code:
    <form method="get">
    <input type='text' name='page'>
    </form>
    If PHP doesn't suit there is likely a JS option but I don't know it off hand, I'd have to look it up.
    Last edited by jamesd; 16 February 2019 at 10:43 PM.

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •