373 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
46
views
I have an URL link in my excel vba that should directly open a nodered flow. But after login in nodered the default starting node opens
I have a macro enabled excel 365 file. When clicked on a shape I have defined an url that should open in browser a specific flow in nodered. But when not logged in Nodered, first a login page appears ...
1
vote
2
answers
1k
views
Unable to Open Main App from Action Extension in iOS 18 - Previously Working Methods Now Fail
I'm developing an iOS app with an Action Extension, and I'm facing a critical issue in iOS 18. The functionality to open the main app from the extension, which was working in iOS 17 and earlier, is no ...
3
votes
1
answer
1k
views
Invalid App Store link when opening in Safari on iOS Simulator using Swift
I am currently working on a Swift project, and I have a button that, when pressed, should open a specific link. I've encountered an issue where using an App Store app link (let's say : https://apps....
2
votes
1
answer
292
views
Force openURL to use safari SwiftUI for a Safari Extension
No doubt this has been asked before. However my search on SO has not returned any results so hence my having to ask.
I building a Safari Extension in my iOS App. This works in Safari obviously but ...
1
vote
1
answer
2k
views
Opening website in browser on button press
I am fairly new to react-native (started working with it two days ago) and therefore I am not able to make any of the solutions I found online work for me. I have a screen with a few buttons and I ...
5
votes
2
answers
5k
views
Listen to link click in SwiftUI TextView
I have this code below
import SwiftUI
struct MyView: View {
let text = "If you want to know more, ***[Click Here](http://example.com)*** to continue"
@Environment(\.openURL) ...
1
vote
1
answer
549
views
Unable to open an `itms-service` URL using `url_launcher` with a AWS link
Hope someone has gone thru the same issue and can help me here:
I’m trying open a URL with the scheme itms-service using a AWS link with manifest.plist link using url_launcher library but I’m getting ...
1
vote
1
answer
1k
views
How To Deep Link to a Specific Location In Apple Health
I'm trying to deep link to the new Vision Prescription page in Apple health. I didn't see any documentation on how Apple health deep linking works, and was able to guess my way into the browse page by ...
0
votes
1
answer
103
views
send alt-g to chrome window to open a goto dialogue in tradingview
I am trying to open a tradingview url and then invoking a goto date. alt-g. i found this thread which i thought might work. Handle the KeyDown Event when ALT+KEY is Pressed. this has the following ...
3
votes
1
answer
3k
views
Open PDF In SwiftUI
I am making PDF using TPPDF library. This makes the PDF fine and returns a URL which is like this:
pdfURL = file:///Users/taimoorarif/Library/Developer/CoreSimulator/Devices/8A2723A7-DD69-4551-A297-...
0
votes
0
answers
1k
views
How to send email with attachments in iOS for outlook
I want to open MS Outlook app instead of native mail app in iOS. I am able to achieve this using recipient using : "ms-outlook://compose?to=(to)&subject=(subjectEncoded)"). How to attach ...
2
votes
1
answer
2k
views
Swift: application(_: open url: options:) not being called at all
I'm trying to open a secondary view controller (not initial) in one app from a different app I built. So I'm trying to deep link to a view controller that's not the initial one, but the function is ...
2
votes
1
answer
375
views
Open non-URL string in Safari (e.g. Search)
It's quite easy to open a URL in SwiftUI, e.g. as I've mentioned in this answer, however, I'm interested in opening the following strings in the web browser (e.g. Safari) with the default search ...
2
votes
0
answers
468
views
SwiftUI .onOpenURL does not call on physical device
I have implemented Universal link on my app using SwiftUI. The below is the snippet code for implementation.
WindowGroup {
ContentView()
.onOpenURL { url in
viewModel.urlFromOnOpenUrl = ...
0
votes
1
answer
213
views
Open random URL from a range
I would need to open a random selected link from a cell to a website in my list. My internet links are put in column B, but I cannot get it to open the hyperlink after it has selected a cell from my ...