Is Adobe Edge Inspect compatible with Safari?

Currently, I am only able to get Chrome working through the Google Chrome Extension. If it is compatible with Safari, how would I configure it to work? Thank you.

Hi Alistair,
I'm not entirely sure if you're referring to Safari on your computer or Safari on your iPad, so I'll answer for both:
If you meant Safari on your computer, the answer is no. But since we just released the Edge Inspect API (http://blogs.adobe.com/edgeinspect/2013/06/18/introducing-the-edge-inspect-javascript-api/) that's something you can do yourself if you'd prefer to test from Safari. As far as that being a better test bed, the browser you're testing from really doesn't make a difference for how the pages will appear on your devices. We simply send the URL from the browser to the devices, rather than sending the page contents, so all rendering is controlled by the device.
If you meant Safari on your iPad, well, the answer is also no, but for a different reason. We're making use of the UIWebView component because by embedding that component in our application we have much greater control over it and can implement customizations like screenshots, remote inspect, cache clearing, and things like that to make Edge Inspect more fully featured. UIWebView and Safari are both based on WebKit, and we've configured the UIWebView component to behave as much like Safari as possible. At this point in time we know of no rendering differences between the two, the only differences we're aware of are performance-related... Safari is faster than the UIWebView component. Since we'd essentially need to cripple/remove a number of features to make Edge Inspect work with Safari, there are no plans to make that happen.
Hope this helps,
Mark

Similar Messages

  • Localhost issue with Adobe Edge Inspect on iPhone

    I'm synching up multiple devices to use Adobe Edge Inspect.
    I downloaded and installed:
    Chrome extension.
    Adobe Edge Inspect on Android (on a Samsung Galaxy Tablet)
    Adobe Edge Inspect on iPhone 4
    I am using a Windows 64bit OS.
    When I inspect online websites, both the tablet and iPhone synch.
    I have a local instance of Tomcat.
    I have a very simple index.html (Hello World in it).
    When I use in my chrome browser localhost:8080 my Android tablet is synched
    The iPhone does not synch, and I get a request timeout.
    I also attempted using the IP Address instead of localhost with the same result.
    The iPhone is synching with sites that I access that are hosted on the web.
    How can I get it to synch using Tomcat so that I can use my localhost instance?
    Thanks

    This is pretty strange. I think you should try making sure Windows Firewall and any other firewall or virus protection software is off and try again to see if you get a different result with your local apache server.
    Let us know if that helps. If not we'll see if we can come up with any other ideas.
    Mark

  • ADE 1.7.2 not compatible with Safari 5.0.3 on Leopard (10.5.8)?

    I cannot download a URLLink.acsm file with Safari 5.0.3, even after creating a com.apple.DownloadAssessment.plist file and adding "acsm" under "LSRiskCategoryExtensions" as suggested in the release notes for ADE 1.7.2 (Dated February 2010)
    http://kb2.adobe.com/cps/806/cpsid_80635.html
    as well as the comment to the following blog post cited therein and restarting the computer:
    http://mymacinations.com/2008/02/06/changing-the-systems-default-settings-for-html-files-s afe/
    I have to locate the file in "Download" folder download with FireFox while online and double-click it to open it with ADE 1.7.2.
    In contrast, FireFox 3.6.13 installed on the same Mac (MacBook early 2009, MacOS 10.5.8) can download the a URLLink.acsm file without any trouble and prompts me to open it with ADE.
    The system requirements for ADE 1.7.2 states that it supports the following browsers and Adobe Flash Versions on Mac:
    Apple Safari 4, Mozilla Firefox 3
    Adobe Flash® Player 9 or 10
    Does my trouble mean that ADE 1.7.2 released February 2010 is not compatible with Safari 5 released in June 2010?
    When will ADE be compatible with the latest version of Safari?

    ios 6 requires itunes 10.6.3 or higher which requires Mac OS 10.6.8 or higher

  • How To: Use Visual Studio, IIS Express, and Adobe Edge Inspect to view local projects

    You CAN view a Visual Studio project with Adobe Inspect. The work around takes a little bit of time.
    This involves using IIS Express to run your Visual Studio project, which is mainly a setting in Visual Studio, a Firewall change, a few command line and IIS Express config change.  It isn't actually all that bad, but will make your life A LOT easier.
    Here are the steps. (Note these are steps I used for Visual Studio 2012 and your project is part of a solution project.  Windows 7 or Windows 8)
    1. If IIS in not turned on, turn it on.How to: Enable Internet Information Services (IIS) - this should install IIS Express as well.
    2. In Visual Studio, find the port that Visual Studio will be using for your project by Running your web project (Debug), and note/write down/save the port number that shows up in the browser when the project launches. (ex.  http://localhost:12345)
    3. Add a NetShare Reservation (process for this will be different for Windows XP)
    Go to your Command Line (CMD) in Windows and in c:\Windows\system32> type in
    netsh http add urlacl url=http://yourIPaddress:yourPortNumber user=everyone
    (ex. netsh add urlacl url=http://12.34.56.78:12345 user=everyone)
    Hit Enter key. You should be a successful add reservation message
    3. Go to your Windows Explorer (File system) and go to c:/Users/YourName/MyDocuments (or Documents)/IISExpress/config/ and open 'applicationhost.config'
    In the 'applicationhost.config' file find your site in the <sites> section.
    Example:
    <sites>
    <site name="WebSite1" id="1" serverAutoStart="true">
                    <application path="/">
                        <virtualDirectory path="/" physicalPath="C:\MyProjects\TestSite" />
                    </application>
                    <bindings>
                        <binding protocol="http" bindingInformation=":12345:localhost" />
                    </bindings>
                </site>
    </sites>
    In this section ADD 2 new lines to the <bindings> section. Note add your own IP address and your own Computer Name
    <binding protocol="http" bindingInformation="*:12345:12.34.56.78" />
    <binding protocol="http" bindingInformation=":12345:MyComputerName" />
    Save the config file.
    4. Open up your Windows Firewall and go to 'Advanced Settings'. Here you want to create an Inbound Rule.
    Right click on Inbound Rule and select New Rule
    - Rule Type select 'Custom'
    - Program leave this
    - Protocol and Ports > Protocol Type select 'TCP' then Local Port select 'Specific Port' and fill in the port number you got from VS.  Leave Remote Port alone.
    - Scope
    There are a few ways of doing this. Typically you would go the the Remote IP address and select 'These IP addresses: and select ADD > select 'Predefined set of computers' and choose Local Subnet.  IF this does not work leave Remote IP addresses > Any IP address option selected instead.
    - Action leave this
    - Profile select Domain and Private
    - Name put IISExpressWeb for the name
    Select 'Finish'
    5. Go to Visual Studio. (Note if you have multiple projects in your solution, choose your start up project. Right click on your project in Solution Explorer in VS and select 'Set as Start Up Project' )
    Right click on your start up project again and you should see an option to 'Use IISExpress'
    In the DEBUG dropdown (from the main menu bar at the top) select 'YourProjectName Properties'. Mine was the last one in the list with a wrench icon next to it.
    This should open an new tab in your project, You should see a left hand list of option and a right hand column of options.
    In the left column select 'Web' and in this tab select Use Local IIS Web server and select 'Use IIS Express' and type in your IP Address and port number (same as before) in the Project Url text box.
    Save.
    NOW, you should be able to run your project in Visual Studio and use Adobe Edge Inspect on your device and view new results in Chrome. You can develop from there.
    If you still can not see it working, please be sure your device is on the same SubNet or Wireless network as your computer.  If you are in a large network but the domains can still see each other, the Firewall Setting detailed above to allow Any IP Address in your Scope section.

    Hi CMosqueda,
    Thank you for taking time to share this information with other users.
    Thanks,
    Preran

  • How to download Adobe Edge Inspect?

    It maybe weekend woes, but I find it impossible to download Adobe Edge Inspect. For starters, I would like to test the free version.
    This is what I'm doing
    1 )install the Edge Inspect Extension on Chrome
    2) sign up for Adobe Create Cloud
    3) go to apps
    x) edge tools & services does not include an icon for Edge Inspect
    Following this blog post:
    http://blogs.adobe.com/edgeinspect/2012/10/23/how-to-purchase-edge-inspect/
    5) Go to plans page to select "getting started"
    x) the button is disabled
    Trying on the main edge inspect website
    http://html.adobe.com/edge/inspect/
    6) click on edge inspect
    7) click on getting started
    x) I'm back in the cloud apps section, without the edge inspect icon
    I then downloaded the Adobe Application Manager
    x) When running there is also no option to download edge inspector
    Can anyone tell me if I'm doing something wrong?

    The Learn More link for Adobe Edge Inspect directs you to different pages depending on if you are signed in or not with your Adobe ID.
    If you are not signed in you will go to here http://www.adobe.com/go/edgeinspect which redirects you to here http://html.adobe.com/edge/inspect/. This is information on Inspect.
    If you are signed in you will go here https://creative.adobe.com/inspect and be able to download Inspect. If you are not signed in and try to go to https://creative.adobe.com/inspect you will be redirected to https://creative.adobe.com from where you can sign in or create a new Adobe ID.

  • License Question - Adobe Edge Inspect

    Ok, here is the problem. We have 3 Creative Suite Cloud licenses for 3 members of our team to use at work. Awesome.
    We have now built a mobile testing station which is one computer connected to numerous mobile devices for testing purposes. We want to Use Adobe Edge Inspect on this computer in order to do this. But when I install Creative Cloud and try and set Edge Inspect up it tells me I need a paid version in order to connect multiple devices. Do I need to buy a whole new Creative Suite License for this computer in order to use this one 'lite' application? Or can I use one of our existing licenses so that I can run this application on the testing station?
    Thanks
    Mike

    If the installation would be getting used at the same time that the other license owners would be using their CC installations then you likely need to have a separate license for the test station.  The CC licensing allows for installation on two machines with the exception that the subscription is only in use for one machine at any given time.

  • Adobe Edge Inspect won't open

    Hi,
    I'm trying to launch Adobe Edge Inspect but it won't do it.
    I have another user in this same computer and it works flawlessly. The strangest thing is that I installed the software from this user (where the app won't launch).
    Console gives me this report:
    Process:         EdgeInspect [4507]
    Path:            /Applications/Adobe Edge Inspect CC.app/Contents/MacOS/EdgeInspect
    Identifier:      com.adobe.EdgeInspect.application
    Version:         1.0.407 (1.0.407.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [176]
    Responsible:     EdgeInspect [4507]
    User ID:         502
    Date/Time:       2014-02-06 11:38:19.101 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  BE07DE49-C882-75EA-4EBF-AD729FE8C0C4
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminating with uncaught exception of type dvacore::filesupport::dir_create_exception: $$$/dvacore/filesupport/DirCreate=The directory '@0' could not be created. Please check the parent directory protection or permission rights.
    abort() called
    Thanks :-)

    Okay, I solved it by deleting the Folder under /user/library
    Thanks to...
    adliecxkamnadnra, 27-mar-2013 14:09   in reply to Mark Rausch Report
    No dice.
    I sent the folder:
    Users/[username]/Library/Preferences/Adobe/Edge Inspect
    into the trash. Relaunched the app and same thing. Edge Inspect appears to launch, makes a new pref folder, then crashes in a matter of 3 seconds.

  • Adobe Edge Inspect says I'm offline. I'm not offline.

    I have Adobe Shadow installed. It works. 
    I just installed Adobe Edge Inspect, but it says I'm "offline". The problem is that I am not actually offline. Any help for this dead-end?

    When does this error pop up for you?
    Are you getting this after you sign in with your e-mail address?
    Or does it appear as soon as you open the app, or when?
    Also, what version of Mac OS are you running?
    Are you running any security software, like firewalls or proxies?

  • Adobe Edge Inspect - Bootstrap.min.css (bootstrap 3)

    Hello,
    When trying to use Adobe Edge inspect on my website. For some reason I can not view the css in the remote inspection for the iPad. So I started removing style sheets to see which ones were creating the problem. It turns out to be Bootstrap 3 css file called bootstrap.min.css. Once I removed that I was able to inspect and see my other CSS styles. Thinking it was maybe just my site, I also tried to remote inspect for Bootstraps actual site (www.getbootstrap.com) and their CSS was not loading in the inspector for me also. Is there a work around for this? I could have sworn I didn't have any issues before but just now seems to be happening. Any help would be greatly appreciated. I could be doing something wrong.

    I agree seems like Adobe is behind the poor curve with support for Bootstrap and Foundation frameworks both of these are very popular for development platforms for mock ups I have been looking for a really good WYSIWYG editor for either of these frameworks Dreamweaver has some plugins but the developer is asking crazy amount of money which from what I can tell just points to the namespace or css, js files.  If Adobe could create a application like Edge Reflow using these powerful frame works they would open themselves up to a huge market as people could create functional cross platforms applications I  and believe this is a growing market as more and more people are taking to social media and creating more content for social interactions.  An application like Edge Reflow that provided Responsive web development support for Bootstrap and Foundation would be a huge success I could imagine tools Edge Flow really taking center stage for beginners and intermediate developers.

  • Is adobe photoshop CS5 compatible with Mountian Lion on the 2013 iMac?

    Is adobe photoshop CS5 compatible with Mountian Lion and Maverick on the 2013 iMac?

    Hello, I run it at home without problem. In fact, even the next version of OS X works ok: http://helpx.adobe.com/x-productkb/global/mac-os-mavericks-compatability.html

  • Is adobe photoshop 7 compatible with microsoft xp pack 3

    Is adobe photoshop 7 compatible with microsoft xp service pack 3?

    compatibile with:
    Microsoft Windows Millennium Edition,
    Microsoft Windows XP,
    Microsoft Windows 98 Second Edition,
    Microsoft Windows 2000 SP2,
    Microsoft Windows NT 4.0 SP6a,
    Microsoft Windows 98

  • Is Adobe Element 11 compatible with Windows 8.1?

    Is Adobe Element 11 compatible with Windows 8.1?

    The creative cloud has nothing to do with photoshop elements 11, so that won't help.
    Make sure you insert the dvd labeled Windows
    Once you insert the dvd, click on the Folder icon (File Explorer) in the Taskbar on the Desktop
    Then you should see the pse 11 dvd listed under Devices and drives
    Right click on the pse 11 dvd icon, click Open and then double click on the AutoPlay.exe

  • Is there a update for adobe after effects compatible with the mac os x 10.9.5 ?

    is there a update for adobe after effects compatible with the mac os x 10.9.5 ?

    If you are using After Effects CS6 (11) or After Effects CC (12), then install the updates:
    http://adobe.ly/AE_CC_1201_Mavericks

  • Web site say it's not compatible with safari

    I am trying to complete a registration within a web site . I cannot sign in because it says it is not compatible with Safari. Is there anything I can do?
    Tks
    E

    The one for Mac.
    Firefox Version 17.0.1 for Mac OS X English (US)
    or
    Click the link I posted in my reply.
    Double click to open it
    Click the Finder icon in the Dock. Open Application folder.
    Drag it to the Application folder.

  • Is Adobe Form Central compatible with WIX?

    Is Adobe Form Central compatible with WIX.com?

    Hi kbeam-bci,
    While I'm not very familiar with WIX.com, Adobe FormsCentral does have an Embed Form option, which allows you to embed your form on a website. There are also several Embed options, such as including (or not) the page background colors and header, among others.
    Please let me know if this answers your question.
    Best,
    Sara

Maybe you are looking for

  • Record button not working on Online Sky Guide

    Not working for this page for example: http://tv.sky.com/tv-guide#/programme/detail/1813/922

  • 2007.08 Don't Panic Isos released, installation feedback

    Hi Arch community, 5th August, 23:00 CEST (Central European Summer Time) Arch Linux Don't-Panic 2007.08 ISO release Get Archlinux ISOs in /iso/2007.08/{i686,x86_64} on your favorite mirror. http://wiki.archlinux.org/index.php/Mirrors or http://www.ar

  • How do you make an iMovie HD movie full screen in Keynote presentation?

    Hey everybody, and Happy Holidays! I have a presentation tomorrow morning where I will be using a VGA connector to a video projector to present my Keynote presentation. I have tried just about every way I know how to make my imported iMovie HD film f

  • Did Anybody Use The Graphics Map?

    Hi, I want to use the graphics map but the page test_gis_with_event.htm in GRAPH_BSP_TEST standard demo bsp application doesn't show anything. You can see the screen shots following URL. [http://img228.imageshack.us/i/graphicsmapbsp.jpg/|http://img22

  • Updating - Never but always Publishing?!

    Hi, Can someone please tell me if it is actually a fault in iWeb, that the 'update' feature as such, just doesn't work? In the help it says that when you 'publish', it will update only the files you have changed since your last publish. I find that a