반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- math
- array
- Mac
- Excel
- google apps script
- c#
- 파이썬
- GIT
- gas
- Github
- Java
- Google Spreadsheet
- matplotlib
- Apache
- numpy
- hive
- Python
- PySpark
- django
- list
- Kotlin
- Google Excel
- dataframe
- PANDAS
- PostgreSQL
- Tkinter
- SQL
- Redshift
- string
Archives
- Today
- Total
달나라 노트
Google Apps Script : Browser.msgBox() (메세지 박스 띄우기. 알림창 띄우기.) 본문
Google Apps Script
Google Apps Script : Browser.msgBox() (메세지 박스 띄우기. 알림창 띄우기.)
CosmosProject 2022. 11. 16. 01:57728x90
반응형
Browser.msgBox() 는 메세지 박스를 띄워줍니다.
function myFunction() {
Browser.msgBox('Hello');
}
위처럼 코드를 작성한 후 실행을 눌러봅시다.
그러면 아래처럼 코드는 실행되지만 큰 변화가 일어나지 않는 것 같습니다.
하지만 원본 스프레드시트로 옮겨가보면 Hello라고 쓰여진 메세지 박스가 띄워진 것을 볼 수 있습니다.
728x90
반응형
'Google Apps Script' 카테고리의 다른 글
Google Apps Script : 디버그 (Debug) (0) | 2022.11.16 |
---|---|
Google Apps Script : 프로젝트의 종류 (Standalone script, Container bound script) (0) | 2022.11.16 |
Google Apps Script : Logger.log, console.log (print, console print) (0) | 2022.06.04 |
Google Apps Script : getRange, getValues (셀 선택하기, 셀의 값 얻어오기) (5) | 2022.06.04 |
Google Apps Script : setDataValidation (Google Spreadsheet에 체크박스 만들기) (0) | 2021.08.06 |
Comments