Access to the site from the Office on a mobile device

Users want access to my site with a mobile device while it is connected to an external monitor or TV.  To do this, they need a way to access the version of office site, but even the option of 'Request' site Office of the browser does not work for my web site.  Is there something I can do in RoboHelp HTML 11 (Win7 OS) to solve this problem?

Receptive HTML? (Skin Nivida? Send me an email.) In this case, media queries must be updated to account for the devices. For example, see: media CSS queries - the Web Developer's guide | DND

Tags: Adobe

Similar Questions

  • How to force the format landscape for mobile devices (phone & pad)?

    Hello, I am designing a new Web page in muse. It will be necessary for this layout, view the page in landscape format (mobile / ipad & iphone).  is there an opinion to force the format landscape for mobile devices? whereas even if the device is in portrait format, the site will be displayed in landscape format?  support told me that I will have to add the code. could you tell me the code and how do I insert this to my page? Thanks for your help

    This might help you:

    fixed vertical layout for mobile

  • You can inspect the element of a mobile device?

    You can inspect the element of a mobile device?

    You need connect your phone to the desktop Firefox, https://developer.mozilla.org/en-US/docs/Tools/Remote_Debugging/Debugging_Firefox_for_Android_with_WebIDE

  • I can't get the app to Windows Mobile Device to recognize my HP IPAQ to download reports

    Original title: Mobile device application

    I can't get the app to Windows Mobile Device to recognize my HP IPAQ to download the reports.  It worked fine on Windows 7, but will not work on Windows 8.  Should I upgrade to Windows 7, or to do damage on the new computer.

    Hello

    It seems that the application is not compatible with Windows 8. I suggest you to install the application in the Windows 7 compatibility mode to see if that helps.

    a. find the executable (.exe file) file for the driver installation program.

    b. right click on the file and then click Properties.

    (c) in the Name of the Package Properties dialog box, click the compatibility tab.

    d. Click to select the checkbox run this program in compatibility mode for , click on Windows 7 with which it is compatible with in run this program in compatibility mode for the list and then clickOK.

    e. double click on the executable file to start the Setup program.

    Hope this information helps.

  • What do you use to track the specific type of mobile devices open your emails?

    Mobile email is on the rise. What do you use to track the specific type of mobile devices open your emails?

    We started to use the Sunflower (Email Analytics - sunflower) this month and have been very happy with it. They not only do report on e-mail clients, you will tell people how committed are with your email address (for example did they spend time reading it or just delete it right now?). They also allow you to track individually, which means you can identify iPhone or Android users and send them a targeted campaign.

  • Stop the screen turn on mobile devices

    Hello guys,.

    I was wondering if you could help me. I am designing an app for tablets and I wish the app was only visible in the panoramic view.

    Is it possible to prevent the screen turn on mobile devices and perhaps view-panorama?

    Thank you!

    Bert

    I don't work on mobile applications or anything, but I guess you can try:

    in scene/orientationchange

    if(Window.orientation == 0) / / Portrait

    {

    Window.orientation == 1 / / landscape

    }

    and you can see #4 here:

    http://StackOverflow.com/questions/3501510/blocking-device-rotation-on-mobile-Web-pages

    or with css here:

    @media all and (orientation: landscape) { ... }

    Media - CSS queries using | DND

  • How to enable HTML access in the office pool by using PowerShell script?

    Hello

    I use to create pools of auto related clones using a script PowerShell/PowerCLI Office. The script provides all the parameters required for the Add-AutomaticLinkedClonePool cmdlet and there is a lot of it! Creating pools in this way allows me to save about 100 clicks per pool.

    Now I want to enable access HTML for each pool, but I can't seem to find the name of the parameter.

    I checked the properties of the object returned by Get-pool-pool_id w7mw620 and compared to other similar properties office pool where access HTML has been disabled. I coulnd't not see any differences in the property values, which seem to make a significant difference for the setting "enable access HTML '.

    There was a property named "calculatedValues", which was true for one and False for the other office pool. I don't know what is the meaning of this property. Help the cmdlet Add-AutomaticLinkedClonePool or AutomaticLinkedClone-set to list this property.

    So... How can I set the property to allow access HTML from a PowerCLI script?

    Hello, in response to my own question again...

    On the basis of the above VBScript example, I invented this PowerShell code snippet that does the work of activation / deactivation of HTML access to one or more funds pools, by adding or removing 'BLAST' to the allowed protocols. It's a beast of a code, and I think that this code can still be optimized/shortcut. It works for me. It allows the use of wildcards to select a number of pools of office to toggle HTML access to.

    To use it, just customize two variables constant to match your environment:

    $dn must maintain the name of the root of your ADAM database. I think that this name is the default, but I don't know about you.

    $domain must maintain the computer name or address IP and/or port number where the ADAM database is stored. You must also have sufficient permissions to connect if it is something else then "localhost".

    function Set-BCPoolHtmlAccess ([string]$Pool_id, [boolean]$HtmlAccess) {
    <#
        .SYNOPSIS
            enables or disables HTML Access to the given VMware View desktop pool
        .DESCRIPTION
            This function enable or disable HTML Access to a desktop pool, by modifying
            the "pae-ServerProtocolLevel" property of the associated object in the ADAM
            database via LDAP. This property is a multi-valued attribute contains a array
            of string, which designates
            by which protocol desktops can be accessed. It valid values are "PCOIP",
            "RDP" and "BLAST". Controlling the existance of the string "BLAST" determines
            if the pool is accessible through HTML Access. The parameter Pool_id determines
            which object is modified.
        .EXAMPLE
            Set-BCPoolHtmlAccess "W7ST620" $True
        .PARAMETER Pool_id
            the pool_id of the desktop pool of which to enable or disable HTML access. Wildcards are allowed!
        .PARAMETER HtmlAccess
            Boolean value to set the HTML Access to.
        .OUTPUT
            None
        .NOTES
            Written by Paul Wiegmans on 31-8-2014
            "pae-ServerProtocolLevel" is a multivalued attribute, which is a little difficult to
            write correctly to the object.
            http://www.selfadsi.org/write.htm
                    Google "powershell ldap multi value property"
            http://jdhitsolutions.com/blog/2011/12/updating-multi-valued-active-directory-properties-part-1/
    #>
        $dn = "DC=vdi,DC=vmware,DC=int"   # root OU of VMware View ADAM database (CUSTOMIZE ME)
        $domain = "LDAP://localhost:389/$dn"  # connect to the ADAM database (CUSTOMIZE ME) 
    
        $root = New-Object System.DirectoryServices.DirectoryEntry $domain
        $query = New-Object System.DirectoryServices.DirectorySearcher
        $query.searchroot = $root
        $query.filter = "(&(objectCategory=pae-DesktopApplication)(cn=$pool_id))"
        $pools = @($query.findall())
        $propname = "pae-ServerProtocolLevel"
    
        foreach ($pool in $pools) {    
    
            $poolobj = [ADSI]$pool.GetDirectoryEntry()
            $protocols = $poolobj.$propname
            $desiredprotocols = @()
            foreach ($protocol in $protocols) {
                if ($protocol -ne "BLAST") {
                    $desiredprotocols += $protocol  # save a list of all existing protocols
                }
            }  
    
            if ($HtmlAccess) {
                $desiredprotocols += "BLAST"
            }
            write-verbose ("Desktop pool " + $poolobj.name + " gets protocols: "+$desiredprotocols)
            $poolobj.$propname = $desiredprotocols
            #$poolobj.$propname = @("PCOIP","RDP","BLAST")  # to reset to normal values
            $poolobj.CommitChanges()
        }
    }
    
    $pool_id = "W7S*"                  # pool_id of pool to set protocols of
    Set-BCPoolHtmlAccess $pool_id $false
    Set-BCPoolHtmlAccess $pool_id $true
    

    Have fun

    Post edited by: Sikkepitje

  • "NMH410 do not have access via the Explorer: name of local device already in use.

    I can't connect with my NMH410 through Explorer. It worked fine, but I must have done something wrong. Device name Local message already in use keeps popping up, even after the removal of the former as links indicated elsewhere. I changed the name of the device backward (which may be where it started). Also devices that were not previously connected Gets the same response. I tried on XP and Vista. I have also a router Linksys (WRT610N) that had me install Home Network Defender. It was a pain to get rid of it and I would not be surprised if this is part of the problem.

    I'm running out of options. I would consider same formatting for all start over, but prefer not because I have to get all my MP3 somewhere somehow... Help, please.

    Bart

    Hi bartled,

    I suggest you try to do a hard reset on your NMH410. To do a reset, while the device in operation - press the reset for 10 seconds-, and then unplug the cable (keep pressing the reset button) - wait 10 seconds - reconnect the power cable (by pressing the reset button) - wait 10 seconds before you release the reset button. Once the lights are solid, check out the "friendly name" of your NMH410 via the LCD screen. It should be to the default name "Mediahub. Try to use 'Mediahub' on your browser and check if you can access the user interface of your device.

    See you soon!

  • How can I create a menu for a site to scroll a page for mobile devices?

    Hi, Im trying to create a menu for my version of phone of my a roll site page. I created a nice menu with the help of the Accordion widget, which when opened gives you links to different sections of the site that are defined by anchor points. The problem is when you select an element of the Accordion widget menu, it will automatically close after a click on the menu item. The site scrolls behind the menu, but you'll need to physcially close the menu by clicking on it again. It is of course a very bad user experience. I tried various menus third parties none of which work for sites of a page. Given the many Web sites is a scrolling page sites seems to be a major problem for users of Muse who have no menu option for this kind of design! Anyone know of any code that could be used to automatically close the Accordion widget when you select an item in the menu? Please help Ive spent a lot of time designing this site for the office but now having to PAP I can't produce the version phone, I really don't want to have to resort again to Wordpress.

    Thanks in advance!

    Hello! Active States help the user to see that they are on a separate page, and they can click the close button.

    Or you can see what I've done on the mobile page for one of my models that is very UI/UX friendly partially because of this reason (http://flowz.ljdezignz.com/phone/).

  • How can I get internet connection from my laptop through my mobile device (it's just a rhetorical question)

    Hi,)

    "This is only to have knowledge of some aspects on the internet).

    I have samsung mini S4 mobile with internet connection.

    Suppose I'm somewhere whitout your support and I want to internt with my laptop through my mobile.

    What steps I have to do so that the internet connection via my cell phone.

    Thank you

    Johan

    Hello Johan,.

    Thanks for posting your question on the forum of the Microsoft community.

    I would like to know some information about the problem so that we can help you better.

    What is the brand and model of your laptop?

    I suggest you try the following steps and check if it helps.

    a. connect your mobile device to the computer. If you use a USB (Universal Serial Bus) modem, simply plug it into a USB port on the computer. If you connect a mobile phone, connect the USB cable to your computer at one end and on the cell phone on the other.

    b. software start Internet sharing. If you use a cell phone, search for Internet sharing application from the 'Start' or 'Applications folder' menu on your phone. If you connect a USB modem, run the software supplied with the modem to start the connection.

    c. start the connection sharing. On the mobile phone, make sure that the Internet sharing application is set to share the mobile connection via USB. Once set, press the soft key 'Connect' on your cell phone or smart phone to share the connection with a computer. If you use a USB modem, click the 'Connect' button in the software of connection on your computer Desktop Manager of.

    d. check that the connection is active. After the Internet software to share bed 'Connected', open the network and sharing in Control Panel"and check that the connection is as a wired Internet connection. The control panel is located on the "Start" menu on your computer.

    e. connect to Internet. Launch a web browser or e-mail on your computer and check that the connection is active. Download and send to your connection speed will vary depending on force carrier and cell phone signal.

    f. put an end to the Internet via mobile by pressing the function key "Disconnect" on your mobile phone, or if you use a USB modem, click on the button "Logout" in the connection management software installed on the computer.

    Please also see this link:
    http://www.Samsung.com/us/support/SupportOwnersFAQPopup.do?faq_id=FAQ00024090&fm_seq=24258

    I hope this information helps.

    Please let us know if you need more help.

    Thank you

  • How can I disable the Photoshop CS4 on a computer without internet access?  The Office Update to a newer version.

    Hello

    We are to modernize one of our office with Photoshop CS4 installed systems.   This machine has no network connectivity.  How to disable the software and then move it to the new system?

    Thank you

    Contact Adobe technical support via chat and ask them to reset your activations.

    To the link below, click on the still need help? the option in the blue box below and choose the option to chat...

    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If it fails to connect, try to use another browser.

    Serial number and activation support (non - CC) chat

    https://helpx.Adobe.com/contact.html?step=PHSP-PHXS_downloading-installing-setting-up_lice nsing-activation_stillNeedHelp

  • Unable to access a Web site from a single computer.

    I can't access a website, I used regularly - www.chainreactioncycles.com--de this PC under XP SP3.  I get an error "Internet Explorer cannot display the website".  The problem is also in Chrome (Oops! Google Chrome could not connect to www.chainreactioncycles.com) and Firefox (the connection has expired).

    Other PC and Android devices on the same home network work fine, so it seems not to be a Web site problem or the DNS server.  I tried a few reboots and cleared out the local DNS cache with "ipconfig/flushdns" but the problem remains.

    Any suggestions?

    I can't access a website, I used regularly - www.chainreactioncycles.com--de this PC under XP SP3.  I get an error "Internet Explorer cannot display the website".  The problem is also in Chrome (Oops! Google Chrome could not connect to www.chainreactioncycles.com) and Firefox (the connection has expired).

    Other PC and Android devices on the same home network work fine, so it seems not to be a Web site problem or the DNS server.  I tried a few reboots and cleared out the local DNS cache with "ipconfig/flushdns" but the problem remains.

    Any suggestions?

    It could be related to firewall. Try disabling the firewall to test.

    Otherwise, open a command prompt and type: netsh winsock reset and press ENTER.

    Then restart and then try again.

    See also: http://support.microsoft.com/kb/299357/en-gb

  • Problems with the display on a mobile device

    http://www.lamppakuuma.com/

    The drop down menu of the menu on my site to work fine when you place the cursor over them from a desktop computer.  However, when you browse Mobile (iphone, ipad are the two I checked) hovering does not display the bottom of drop under each heading.  Any help on how to fix this would be appreciated.

    Thank you

    Yes.

    Do not use this technology.

    You use a Spry version prior to 2.0 for your menu drop down. This does not work on mobile.

    I recommend empty you Spry altogether but superior to 2.0 versions will work successfully.

    There are pure CSS ways make drop down menus and they will work on Firefox and Chrome.

    http://Line25.com/tutorials/how-to-create-a-pure-CSS-dropdown-menu

    http://csswizardry.com/2011/02/creating-a-pure-CSS-dropdown-menu/

    http://purecssmenu.com/

    http://leev18.com/2013/05/free-basic-CSS-drop-down-menu/#.UnUhCJQ9w7U

    -Mark

  • If I have already an account for PS and LR do I pay for the service of my mobile device?

    moblie lr is free when you already have a ps and lr account?

    Hi [email protected],

    The $9.99 plan will cover the following things:

    Desktop applications:

    • Adobe Photoshop
    • Adobe Lightroom

    Mobile services and applications:

    • Adobe Photoshop Fix
    • Adobe Lightroom for Mobile
    • Adobe Photoshop Mix
    • Voice of Adobe
    • Adobe slate
    • Adobe Premiere Clip
    • Adobe portfolio
  • How to play a video in the AIR on a mobile device

    Someone at - it a walkthrough they can share about how to play a video in an AIR app? It would be a video that has bundled with the application of air.

    Thank you!

    Because the video is delivered, I recommend you make use of the GPU accelerated class StageVideo:

    StageVideo - Adobe ActionScript® 3 (AS3) QAnywhere

    On this page you will find several links tutorial and code (in description) on how to use it, for example:

    Adobe Flash Platform * using the StageVideo API

    Getting started with video scene | Adobe Developer Connection

    In this regard is if you already have a video player using NetStream and NetConnection instance then you already know how to use it. After that the event triggered indicating whether StageVideo is available, you can use or to determine if you need a help (ordinary video with software rendering).

    Unlike simply by using the FLVPlayback component, you must create and attach your own video controls. Yet once if you ever did a player customized with NC/NS classes above then chances are you've done custom controls. Just any buttons you want for your features (search, play/pause, volume, etc.).

    It is worth repeating, I only recommend this because I chose this method with the videos grouped. If you need to broadcast, NetStream won't give you the information you need for the memory buffer/search layout. In this scenario, I use using StageWebView on iOS which incorporates a native HTML5 MP4 playback control. I actually start to receive the stream to get the metadata (video size) and generate an HTML page with a

Maybe you are looking for

  • IPhone 7 crashed

    Hello. You own an iPhone new 7 hours at least three. Connected to the computer. Ask for the IOS update 10. And after the update crashes immediately. Took 15 minutes to retrieve data on its own Has begun... Crashed again. Very bad release. Please addr

  • How do I set the date and time for those?

    Windows Vista; all the time that the I shoot my computer automatically go back to the year 2001; so whenever the I put on the computer I need to set up the date and time;  With the help of Windows, after the< is="" an="" error="">, but did not mentio

  • EA6500 downgrade from 1.1.27

    Can anyone provide me with the most recent (or the) release of 1.1.27 firmware for the EA6500. I am deeply disappointed with the updated firmware and because of security and sudden lack of some, or all say, feature in bridge mode, I need to downgrade

  • sceen cracked

    Hello

  • 7020 Small Form Factor OptiPlex

    Have a given model to nine on order and am awaiting delivery... A few questions for the community if you let it. The specification says w/HD Graphics 46OO. This configuration will support two monitors? If so, what are the results. If this isn't the c