Questions tagged [dashcode]

Dashcode is a graphical IDE bundled in Apple Developer Tools and aimed at the development of Dashboard widgets and Safari Web applications (for both Mobile Safari and standard Safari browser).

Dashcode to create two types of projects:

  • Dashboard widgets—simple, lightweight applications that perform a single task in the Mac OS X Dashboard environment. Widgets are actually packaged webpages powered by standard web technologies such as Hypertext Markup Language (HTML), Cascading Style Sheets (CSS), and JavaScript.
  • Web applications—webpages that provide discrete functionality to users. Web applications also make use of web technologies such as HTML, CSS, and JavaScript. Dashcode helps you create mobile Safari web applications, which are also known as iPhone web applications (that is, web applications optimized to run in Safari on iPhone), and Safari web applications (that is, web applications optimized to run in Safari).

Dashcode’s integrated environment allows you to lay out, code, and even test widgets and web applications without opening any other applications. Its layout tools, composers, and editors simplify the process of creating all the resources these projects need. Dashcode also includes handy coding and debugging tools that help you manage and test the code you write.

166 questions
2
votes
3 answers

Can I make my iphone app created in xcode into a web application?

I made an application for the iphone in Xcode, but as a result of recent developments, I now need to make it into a web application. I know that Dashcode creates web applications suitable for the iphone. Can I somehow import my Xcode project into…
Evelyn
  • 2,588
  • 3
  • 22
  • 47
1
vote
1 answer

Any way to pass user data from iBooks Author?

Is it possible to associated some specific user id with someone who views an iBook generated from iBooks Author? A simple example may clarify the question. Imagine you build an HTML5 Widget that provides a true false question, and you have something…
leoshmu
  • 131
  • 3
1
vote
1 answer

"Undefined is not a function" playing sound in Dashcode

I'm trying to play a sound in a Dashcode widget. I just droped the file over the widget and now I a video item. This is the code I'm using: // Values you provide var qtElement = document.getElementById("video"); // replace with the ID of a QuickTime…
Jorge
  • 2,156
  • 2
  • 22
  • 29
1
vote
1 answer

How to get row values from a Rounded Rectangle List in Dashcode?

I am new to dashcode and trying to build a simple web app for iphone using it. My primary aim is to have a Rectangular List (I have used the "Rounded rectangle list"). It is a static list and has three rows. What I want is a website to open when…
Anjan Biswas
  • 7,746
  • 5
  • 47
  • 77
1
vote
1 answer

How to show a Webview in a Mac Dashboard Widget?

I am making a simple Mac Dashboard widget which would show a webpage in a webview, from a user selectable URL. To be honest, I assumed there would simply be a 'webview' type part in the Library which I could just drop on. I've tried fiddling with…
samiles
  • 3,768
  • 12
  • 44
  • 71
1
vote
1 answer

How to change xml binding at runtime in Dashcode (iPhone)

I am working on Dashcode (iphone). I get xml data from a url and need to change or refresh xml binding to a list at runtime. In apple website, there is a way shown to bind xml/Json data only at design time. Any one knows how to do it ? Thanks
Rohit Arora
  • 51
  • 1
  • 3
1
vote
2 answers

How to port an Apple Dashboard widget to Windows?

I made visual aid type of widget (user needs to see through it) with Dashcode, now I want to port it to Windows XP & 7. I heard that StarDock DesktopX Pro can export standalone widgets as .exe but I don't know if those are native Windows…
WaterBearer
  • 229
  • 1
  • 5
  • 13
1
vote
2 answers

Jquery cross domain request? I just need a single digit returned, but I can't get it to work

I am making a dashcode webapp and all I want is a single digit, a 1 or 0 returned from an external server so if there is an easier way to do this please let me know. I am using the plug in found at…
davis
  • 1,911
  • 6
  • 26
  • 50
1
vote
1 answer

Why is my button not an object? Is it because it is in the header?

When I run this code var button=document.getElementById("button") if (navigator.userAgent.indexOf('iPhone') != -1) { button.style.left = 250; } The error is result of expression is not an object. The object "button" is in the css file and it is…
davis
  • 1,911
  • 6
  • 26
  • 50
1
vote
1 answer

How can I toggle the display of an element remotely? I will not have server access

Can anyone recommend the easiest way to toggle the display of an element remotely? I won't have access to the server so I was wondering if there is a way to remotely toggle the display of an element, in this case from solid to faded? I'm using…
davis
  • 1,911
  • 6
  • 26
  • 50
1
vote
2 answers

Dashcode web clip icon, I have tried everything and it won't show up

I can't get my dashcode web clip icon to show up, it just shows the safari generated icon. I have tried using dashcode to design it, then I used the code I also tried adding a file named…
Davis Gossage
  • 39
  • 1
  • 4
1
vote
0 answers

Is it possible to have both links and subviews in a list in dashcode? My attempts have failed

So I want to have a web app list that has some items go to external links when clicked and some items go to subviews when clicked. What is the best way to achieve this? I know I am close with this code, but I get a server error when I click the…
1
vote
1 answer

Cross Domain Policy with JSON feeds and Dashcode. Is there a way to use JSONP and implement it with the datasource feature in dashcode UI?

I'm just trying to get data from a json feed from an external server into my webapp. I don't know enough about javascript to custom build my webapp so I was relying on the dashcode UI (specifically the datasources, dragging fields, etc.) Is there a…
1
vote
3 answers

Jsonp callback function not working? Am I doing this wrong?

So I'm totally new to this, but jsonp seemed so simple, I'm just trying to make a web app using dashcode. I need to put twitter json data on a page of my web app. This is what I tried. I put this code in index.html
Davis Gossage
  • 39
  • 1
  • 4
1
vote
1 answer

Alternative To Apple Dashcode

I've been using Apple Dashcode for some months while I was building iOS WebApps, but when I tried to use the same code on Android and it won't work. So I'm looking for an alternative that has the same power and simplicity of Dashcode, but it's…
Nathan Campos
  • 28,769
  • 59
  • 194
  • 300
1 2
3
11 12